* Problem with re-loading hci_uart.ko on RPi3
@ 2018-02-17 21:09 Marcel Holtmann
2018-02-18 13:54 ` Stefan Wahren
0 siblings, 1 reply; 20+ messages in thread
From: Marcel Holtmann @ 2018-02-17 21:09 UTC (permalink / raw)
To: Bluez mailing list; +Cc: mzoran, Stefan Wahren, Eric Anholt
Hi,
so with a 4.15 kernel, the Bluetooth chip on the RPi3 is fully supported via DT and serdev. The only problem still present is that when you rmmod hci_uart and then modprobe hci_uart again it will be stuck.
= New Index: 00:00:00:00:00:00 (Primary,UART,hci0)
= Open Index: 00:00:00:00:00:00
= Index Info: 00:00:00:00:00:00 (Broadcom Corporation)
< HCI Command: Broadcom Update UART Baud Rate (0x3f|0x0018) plen 6
Encoded baud rate: Not used (0x0000)
Explicit baud rate: 2000000 Mbps
< HCI Command: Reset (0x03|0x0003) plen 0
= Close Index: 00:00:00:00:00:00
= Delete Index: 00:00:00:00:00:00
Seems like something with the initial baud rate is wrong. When booting the hardware it is suppose to be set to 115200 Mbps, but it seems to be never reset after unloading the module. It stays at 2000000 Mbps. So when sending the Update UART Baud Rate initial command, it gets send at 115200 Mbps, but in reality the Bluetooth chip is still at 2000000 Mbps. So do we have to pull some reset GPIO to get this back into the original setting? Maybe this is just because the GPIOs are not yet exposed on the RPi3 as of now.
Is there any update to get the GPIO expander work upstream?
One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs.
Regards
Marcel
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-17 21:09 Problem with re-loading hci_uart.ko on RPi3 Marcel Holtmann @ 2018-02-18 13:54 ` Stefan Wahren 2018-02-18 17:55 ` Stefan Wahren 2018-02-18 19:07 ` Marcel Holtmann 0 siblings, 2 replies; 20+ messages in thread From: Stefan Wahren @ 2018-02-18 13:54 UTC (permalink / raw) To: Marcel Holtmann, Bluez mailing list; +Cc: Eric Anholt, mzoran Hi Marcel, > Marcel Holtmann <marcel@holtmann.org> hat am 17. Februar 2018 um 22:09 geschrieben: > > > Hi, > > so with a 4.15 kernel, the Bluetooth chip on the RPi3 is fully supported via DT and serdev. The only problem still present is that when you rmmod hci_uart and then modprobe hci_uart again it will be stuck. > > = New Index: 00:00:00:00:00:00 (Primary,UART,hci0) > = Open Index: 00:00:00:00:00:00 > = Index Info: 00:00:00:00:00:00 (Broadcom Corporation) > < HCI Command: Broadcom Update UART Baud Rate (0x3f|0x0018) plen 6 > Encoded baud rate: Not used (0x0000) > Explicit baud rate: 2000000 Mbps > < HCI Command: Reset (0x03|0x0003) plen 0 > = Close Index: 00:00:00:00:00:00 > = Delete Index: 00:00:00:00:00:00 > > Seems like something with the initial baud rate is wrong. When booting the hardware it is suppose to be set to 115200 Mbps, but it seems to be never reset after unloading the module. It stays at 2000000 Mbps. So when sending the Update UART Baud Rate initial command, it gets send at 115200 Mbps, but in reality the Bluetooth chip is still at 2000000 Mbps. So do we have to pull some reset GPIO to get this back into the original setting? Maybe this is just because the GPIOs are not yet exposed on the RPi3 as of now. The datasheet says the default baudrate is at 115.200 Kbaud, but it also support automatic baudrate detection. So a reset via GPIO should enforce this baudrate. > > Is there any update to get the GPIO expander work upstream? The latest version of the GPIO expander patch series is here [1]. Unfortunately not merged yet. I plan to provide bluetooth support for RPi Zero W. Is there anything missing from driver side? Stefan [1] - http://lists.infradead.org/pipermail/linux-rpi-kernel/2018-January/007397.html > > One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. > > Regards > > Marcel > ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-18 13:54 ` Stefan Wahren @ 2018-02-18 17:55 ` Stefan Wahren 2018-02-18 19:07 ` Marcel Holtmann 1 sibling, 0 replies; 20+ messages in thread From: Stefan Wahren @ 2018-02-18 17:55 UTC (permalink / raw) To: Marcel Holtmann, Bluez mailing list; +Cc: Eric Anholt, mzoran > Stefan Wahren <stefan.wahren@i2se.com> hat am 18. Februar 2018 um 14:54 geschrieben: > > > Hi Marcel, > > > Marcel Holtmann <marcel@holtmann.org> hat am 17. Februar 2018 um 22:09 geschrieben: > > > > > Is there any update to get the GPIO expander work upstream? > > The latest version of the GPIO expander patch series is here [1]. Unfortunately not merged yet. > > I plan to provide bluetooth support for RPi Zero W. Is there anything missing from driver side? > > Stefan > > [1] - http://lists.infradead.org/pipermail/linux-rpi-kernel/2018-January/007397.html > Sorry, this was a wrong link. https://marc.info/?l=linux-arm-kernel&m=151802865717414&w=2 ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-18 13:54 ` Stefan Wahren 2018-02-18 17:55 ` Stefan Wahren @ 2018-02-18 19:07 ` Marcel Holtmann 2018-02-19 10:10 ` Frédéric Danis 1 sibling, 1 reply; 20+ messages in thread From: Marcel Holtmann @ 2018-02-18 19:07 UTC (permalink / raw) To: Stefan Wahren; +Cc: Bluez mailing list, Eric Anholt, mzoran Hi Stefan, >> so with a 4.15 kernel, the Bluetooth chip on the RPi3 is fully supported via DT and serdev. The only problem still present is that when you rmmod hci_uart and then modprobe hci_uart again it will be stuck. >> >> = New Index: 00:00:00:00:00:00 (Primary,UART,hci0) >> = Open Index: 00:00:00:00:00:00 >> = Index Info: 00:00:00:00:00:00 (Broadcom Corporation) >> < HCI Command: Broadcom Update UART Baud Rate (0x3f|0x0018) plen 6 >> Encoded baud rate: Not used (0x0000) >> Explicit baud rate: 2000000 Mbps >> < HCI Command: Reset (0x03|0x0003) plen 0 >> = Close Index: 00:00:00:00:00:00 >> = Delete Index: 00:00:00:00:00:00 >> >> Seems like something with the initial baud rate is wrong. When booting the hardware it is suppose to be set to 115200 Mbps, but it seems to be never reset after unloading the module. It stays at 2000000 Mbps. So when sending the Update UART Baud Rate initial command, it gets send at 115200 Mbps, but in reality the Bluetooth chip is still at 2000000 Mbps. So do we have to pull some reset GPIO to get this back into the original setting? Maybe this is just because the GPIOs are not yet exposed on the RPi3 as of now. > > The datasheet says the default baudrate is at 115.200 Kbaud, but it also support automatic baudrate detection. So a reset via GPIO should enforce this baudrate. the only thing I wonder is if the BT_ON GPIO will full hard reset the device so that it needs the firmware again or just soft reset it. But unless we have that GPIO exposed, it is hard to tell. >> Is there any update to get the GPIO expander work upstream? > > The latest version of the GPIO expander patch series is here [1]. Unfortunately not merged yet. Is there any feedback on it. Looks super straight forward to me. > I plan to provide bluetooth support for RPi Zero W. Is there anything missing from driver side? I think just the DT part fo the RPi Zero W should be missing. However it seems when adding Apple support, we broke the RPi support. I have a patch for it that will make it work again. Not having the “shutdown” and “device-wakeup” GPIOs makes it fail the resource setup. So when you test the DT changes, test them with a 4.15 kernel and not 4.16-rc1. >> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. Regards Marcel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-18 19:07 ` Marcel Holtmann @ 2018-02-19 10:10 ` Frédéric Danis 2018-02-19 12:25 ` Stefan Wahren 2018-02-19 13:12 ` Marcel Holtmann 0 siblings, 2 replies; 20+ messages in thread From: Frédéric Danis @ 2018-02-19 10:10 UTC (permalink / raw) To: Marcel Holtmann, Stefan Wahren; +Cc: Bluez mailing list, Eric Anholt, mzoran Hi Marcel, Le 18/02/2018 à 20:07, Marcel Holtmann a écrit : > >>> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. > So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. We may also reset to initialization speed on module unload. This will allow multiple tests on the hardware, even if it does not have GPIOs exposed. Regards, Fred -- Frédéric Danis Embedded Linux Consultant frederic.danis.oss@gmail.com ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-19 10:10 ` Frédéric Danis @ 2018-02-19 12:25 ` Stefan Wahren 2018-02-19 13:16 ` Marcel Holtmann 2018-02-19 13:12 ` Marcel Holtmann 1 sibling, 1 reply; 20+ messages in thread From: Stefan Wahren @ 2018-02-19 12:25 UTC (permalink / raw) To: Frédéric Danis, Marcel Holtmann; +Cc: Bluez mailing list, Eric Anholt Am 19.02.2018 um 11:10 schrieb Frédéric Danis: > Hi Marcel, > > Le 18/02/2018 à 20:07, Marcel Holtmann a écrit : >> >>>> One option is of course to keep the max-speed in the DT at 115200 >>>> Mbps. It would work, but seriously slow down the transport. Maybe >>>> this should be done until we get access to the GPIOs. >> So I am convinced when we run on hardware that has no GPIO resources >> exposed (as it is with RPi right now), we should limit the >> operational speed to the initialization speed. And then my problem >> actually goes away. It also forces people to get the GPIOs exposed or >> they have to stick with a slower HCI transport. > > We may also reset to initialization speed on module unload. > This will allow multiple tests on the hardware, even if it does not > have GPIOs exposed. I prefer this solution instead of coding workarounds within the devicetree. Thanks Stefan > > Regards, > > Fred > ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-19 12:25 ` Stefan Wahren @ 2018-02-19 13:16 ` Marcel Holtmann 2018-02-19 18:28 ` Stefan Wahren 0 siblings, 1 reply; 20+ messages in thread From: Marcel Holtmann @ 2018-02-19 13:16 UTC (permalink / raw) To: Stefan Wahren; +Cc: Frédéric Danis, Bluez mailing list, Eric Anholt Hi Stefan, >>>>> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. >>> So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. >> >> We may also reset to initialization speed on module unload. >> This will allow multiple tests on the hardware, even if it does not have GPIOs exposed. > > I prefer this solution instead of coding workarounds within the devicetree. DT is actually for encoding workarounds for the hardware. If the GPIOs are not exposed, we are actually limited. However I am going to do that in the hci_bcm.c driver itself since it is a more wider problem. If the GPIO resources are not available, the device will actually not function. This is actually a valid assumption for all hardwired Bluetooth chips. They all have some GPIO or power control option. The only reason to not have GPIOs would be external development boards. So the RPi with the not exposed GPIOs is kinda broken hardware right now. That we got this far supporting Bluetooth on it has to be considered pure luck :) Regards Marcel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-19 13:16 ` Marcel Holtmann @ 2018-02-19 18:28 ` Stefan Wahren 2018-02-19 18:38 ` Marcel Holtmann 0 siblings, 1 reply; 20+ messages in thread From: Stefan Wahren @ 2018-02-19 18:28 UTC (permalink / raw) To: Marcel Holtmann; +Cc: Eric Anholt, Frédéric Danis, Bluez mailing list Hi Marcel, > Marcel Holtmann <marcel@holtmann.org> hat am 19. Februar 2018 um 14:16 geschrieben: > > > Hi Stefan, > > >>>>> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. > >>> So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. > >> > >> We may also reset to initialization speed on module unload. > >> This will allow multiple tests on the hardware, even if it does not have GPIOs exposed. > > > > I prefer this solution instead of coding workarounds within the devicetree. > > DT is actually for encoding workarounds for the hardware. If the GPIOs are not exposed, we are actually limited. However I am going to do that in the hci_bcm.c driver itself since it is a more wider problem. If the GPIO resources are not available, the device will actually not function. This is actually a valid assumption for all hardwired Bluetooth chips. They all have some GPIO or power control option. The only reason to not have GPIOs would be external development boards. So the RPi with the not exposed GPIOs is kinda broken hardware right now. That we got this far supporting Bluetooth on it has to be considered pure luck :) only to make sure that we talking about the same, please take a look at my attempt for the RPi Zero W [1]. Using the BT_ON signal as shutdown-gpio is not enough? I'm sorry i didn't test the reload case yet. So after the implementation of the RPI firmware expander driver, we still need this baudrate limitiation? Btw Baruch said that he will send a new version of his patch series soon. [1] - https://github.com/lategoodbye/rpi-zero/commit/e3085c093e56364a69f2e32d35827635b95cf966 > > Regards > > Marcel > ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-19 18:28 ` Stefan Wahren @ 2018-02-19 18:38 ` Marcel Holtmann 2018-02-19 18:53 ` Stefan Wahren 0 siblings, 1 reply; 20+ messages in thread From: Marcel Holtmann @ 2018-02-19 18:38 UTC (permalink / raw) To: Stefan Wahren; +Cc: Eric Anholt, Frédéric Danis, Bluez mailing list Hi Stefan, >>>>>>> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. >>>>> So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. >>>> >>>> We may also reset to initialization speed on module unload. >>>> This will allow multiple tests on the hardware, even if it does not have GPIOs exposed. >>> >>> I prefer this solution instead of coding workarounds within the devicetree. >> >> DT is actually for encoding workarounds for the hardware. If the GPIOs are not exposed, we are actually limited. However I am going to do that in the hci_bcm.c driver itself since it is a more wider problem. If the GPIO resources are not available, the device will actually not function. This is actually a valid assumption for all hardwired Bluetooth chips. They all have some GPIO or power control option. The only reason to not have GPIOs would be external development boards. So the RPi with the not exposed GPIOs is kinda broken hardware right now. That we got this far supporting Bluetooth on it has to be considered pure luck :) > > only to make sure that we talking about the same, please take a look at my attempt for the RPi Zero W [1]. > > Using the BT_ON signal as shutdown-gpio is not enough? I'm sorry i didn't test the reload case yet. > > So after the implementation of the RPI firmware expander driver, we still need this baudrate limitiation? > > Btw Baruch said that he will send a new version of his patch series soon. > > [1] - https://github.com/lategoodbye/rpi-zero/commit/e3085c093e56364a69f2e32d35827635b95cf966 before you include "shutdown-gpios = <&gpio 45 GPIO_ACTIVE_HIGH>;” we might need to figure out on how the BT_ON GPIO is working and what it is suppose to be doing. But otherwise the patch fro the Zero W looks right to me. Also keep in mind that the current 4.16-rc2 kernel will require the shutdown-gpios and device-wakeup-gpios both to be available. We have not yet tested this when only shutdown-gpios is available. You might need to modify bcm_get_resources and bcm_gpio_set_power to test this out. Regards Marcel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-19 18:38 ` Marcel Holtmann @ 2018-02-19 18:53 ` Stefan Wahren 2018-02-19 18:58 ` Marcel Holtmann 0 siblings, 1 reply; 20+ messages in thread From: Stefan Wahren @ 2018-02-19 18:53 UTC (permalink / raw) To: Marcel Holtmann; +Cc: Eric Anholt, Frédéric Danis, Bluez mailing list Hi Marcel, > Marcel Holtmann <marcel@holtmann.org> hat am 19. Februar 2018 um 19:38 ge= schrieben: >=20 >=20 > Hi Stefan, >=20 > >>>>>>> One option is of course to keep the max-speed in the DT at 115200= Mbps. It would work, but seriously slow down the transport. Maybe this sho= uld be done until we get access to the GPIOs. > >>>>> So I am convinced when we run on hardware that has no GPIO resource= s exposed (as it is with RPi right now), we should limit the operational sp= eed to the initialization speed. And then my problem actually goes away. It= also forces people to get the GPIOs exposed or they have to stick with a s= lower HCI transport. > >>>>=20 > >>>> We may also reset to initialization speed on module unload. > >>>> This will allow multiple tests on the hardware, even if it does not = have GPIOs exposed. > >>>=20 > >>> I prefer this solution instead of coding workarounds within the devic= etree. > >>=20 > >> DT is actually for encoding workarounds for the hardware. If the GPIOs= are not exposed, we are actually limited. However I am going to do that in= the hci_bcm.c driver itself since it is a more wider problem. If the GPIO = resources are not available, the device will actually not function. This is= actually a valid assumption for all hardwired Bluetooth chips. They all ha= ve some GPIO or power control option. The only reason to not have GPIOs wou= ld be external development boards. So the RPi with the not exposed GPIOs is= kinda broken hardware right now. That we got this far supporting Bluetooth= on it has to be considered pure luck :) > >=20 > > only to make sure that we talking about the same, please take a look at= my attempt for the RPi Zero W [1]. > >=20 > > Using the BT_ON signal as shutdown-gpio is not enough? I'm sorry i didn= 't test the reload case yet. > >=20 > > So after the implementation of the RPI firmware expander driver, we sti= ll need this baudrate limitiation? > >=20 > > Btw Baruch said that he will send a new version of his patch series soo= n. > >=20 > > [1] - https://github.com/lategoodbye/rpi-zero/commit/e3085c093e56364a69= f2e32d35827635b95cf966 >=20 > before you include "shutdown-gpios =3D <&gpio 45 GPIO_ACTIVE_HIGH>;=E2=80= =9D we might need to figure out on how the BT_ON GPIO is working and what i= t is suppose to be doing. But otherwise the patch fro the Zero W looks righ= t to me. >=20 > Also keep in mind that the current 4.16-rc2 kernel will require the shutd= own-gpios and device-wakeup-gpios both to be available. We have not yet tes= ted this when only shutdown-gpios is available. You might need to modify bc= m_get_resources and bcm_gpio_set_power to test this out. i think this contradicts to the binding documentation, which defines both a= s optional. Stefan >=20 > Regards >=20 > Marcel > ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-19 18:53 ` Stefan Wahren @ 2018-02-19 18:58 ` Marcel Holtmann 2018-02-22 14:26 ` Stefan Wahren 0 siblings, 1 reply; 20+ messages in thread From: Marcel Holtmann @ 2018-02-19 18:58 UTC (permalink / raw) To: Stefan Wahren; +Cc: Eric Anholt, Frédéric Danis, Bluez mailing list Hi Stefan, >>>>>>>>> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. >>>>>>> So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. >>>>>> >>>>>> We may also reset to initialization speed on module unload. >>>>>> This will allow multiple tests on the hardware, even if it does not have GPIOs exposed. >>>>> >>>>> I prefer this solution instead of coding workarounds within the devicetree. >>>> >>>> DT is actually for encoding workarounds for the hardware. If the GPIOs are not exposed, we are actually limited. However I am going to do that in the hci_bcm.c driver itself since it is a more wider problem. If the GPIO resources are not available, the device will actually not function. This is actually a valid assumption for all hardwired Bluetooth chips. They all have some GPIO or power control option. The only reason to not have GPIOs would be external development boards. So the RPi with the not exposed GPIOs is kinda broken hardware right now. That we got this far supporting Bluetooth on it has to be considered pure luck :) >>> >>> only to make sure that we talking about the same, please take a look at my attempt for the RPi Zero W [1]. >>> >>> Using the BT_ON signal as shutdown-gpio is not enough? I'm sorry i didn't test the reload case yet. >>> >>> So after the implementation of the RPI firmware expander driver, we still need this baudrate limitiation? >>> >>> Btw Baruch said that he will send a new version of his patch series soon. >>> >>> [1] - https://github.com/lategoodbye/rpi-zero/commit/e3085c093e56364a69f2e32d35827635b95cf966 >> >> before you include "shutdown-gpios = <&gpio 45 GPIO_ACTIVE_HIGH>;” we might need to figure out on how the BT_ON GPIO is working and what it is suppose to be doing. But otherwise the patch fro the Zero W looks right to me. >> >> Also keep in mind that the current 4.16-rc2 kernel will require the shutdown-gpios and device-wakeup-gpios both to be available. We have not yet tested this when only shutdown-gpios is available. You might need to modify bcm_get_resources and bcm_gpio_set_power to test this out. > > i think this contradicts to the binding documentation, which defines both as optional. the 4.15 kernel might be fine actually while the support for Apple hardware with Broadcom UART devices might have accidentally required this now. Maybe you just want to hack your kernel and see how it goes when just having the shutdown-gpios available. I am super curious if the firmware resets and falls back to the ROM state or if something is actually kept. Regards Marcel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-19 18:58 ` Marcel Holtmann @ 2018-02-22 14:26 ` Stefan Wahren 2018-02-22 15:43 ` Marcel Holtmann 0 siblings, 1 reply; 20+ messages in thread From: Stefan Wahren @ 2018-02-22 14:26 UTC (permalink / raw) To: Marcel Holtmann; +Cc: Eric Anholt, Frédéric Danis, Bluez mailing list Hi Marcel, > Marcel Holtmann <marcel@holtmann.org> hat am 19. Februar 2018 um 19:58 ge= schrieben: >=20 >=20 > Hi Stefan, >=20 > >>>>>>>>> One option is of course to keep the max-speed in the DT at 1152= 00 Mbps. It would work, but seriously slow down the transport. Maybe this s= hould be done until we get access to the GPIOs. > >>>>>>> So I am convinced when we run on hardware that has no GPIO resour= ces exposed (as it is with RPi right now), we should limit the operational = speed to the initialization speed. And then my problem actually goes away. = It also forces people to get the GPIOs exposed or they have to stick with a= slower HCI transport. > >>>>>>=20 > >>>>>> We may also reset to initialization speed on module unload. > >>>>>> This will allow multiple tests on the hardware, even if it does no= t have GPIOs exposed. > >>>>>=20 > >>>>> I prefer this solution instead of coding workarounds within the dev= icetree. > >>>>=20 > >>>> DT is actually for encoding workarounds for the hardware. If the GPI= Os are not exposed, we are actually limited. However I am going to do that = in the hci_bcm.c driver itself since it is a more wider problem. If the GPI= O resources are not available, the device will actually not function. This = is actually a valid assumption for all hardwired Bluetooth chips. They all = have some GPIO or power control option. The only reason to not have GPIOs w= ould be external development boards. So the RPi with the not exposed GPIOs = is kinda broken hardware right now. That we got this far supporting Bluetoo= th on it has to be considered pure luck :) > >>>=20 > >>> only to make sure that we talking about the same, please take a look = at my attempt for the RPi Zero W [1]. > >>>=20 > >>> Using the BT_ON signal as shutdown-gpio is not enough? I'm sorry i di= dn't test the reload case yet. > >>>=20 > >>> So after the implementation of the RPI firmware expander driver, we s= till need this baudrate limitiation? > >>>=20 > >>> Btw Baruch said that he will send a new version of his patch series s= oon. > >>>=20 > >>> [1] - https://github.com/lategoodbye/rpi-zero/commit/e3085c093e56364a= 69f2e32d35827635b95cf966 > >>=20 > >> before you include "shutdown-gpios =3D <&gpio 45 GPIO_ACTIVE_HIGH>;=E2= =80=9D we might need to figure out on how the BT_ON GPIO is working and wha= t it is suppose to be doing. But otherwise the patch fro the Zero W looks r= ight to me. > >>=20 > >> Also keep in mind that the current 4.16-rc2 kernel will require the sh= utdown-gpios and device-wakeup-gpios both to be available. We have not yet = tested this when only shutdown-gpios is available. You might need to modify= bcm_get_resources and bcm_gpio_set_power to test this out. > >=20 > > i think this contradicts to the binding documentation, which defines bo= th as optional. >=20 > the 4.15 kernel might be fine actually while the support for Apple hardwa= re with Broadcom UART devices might have accidentally required this now. Ma= ybe you just want to hack your kernel and see how it goes when just having = the shutdown-gpios available. >=20 > I am super curious if the firmware resets and falls back to the ROM state= or if something is actually kept. since i don't have any schematics about the BT part, i simply retested my p= atches against 4.15 on RPi Zero W. modprobe -r hci_uart modprobe hci_uart works without any issues: [ 233.486208] Bluetooth: HCI UART driver ver 2.3 [ 233.486258] Bluetooth: HCI UART protocol H4 registered [ 233.487189] hci_uart_bcm serial0-0: BCM irq: -22 [ 233.488382] Bluetooth: HCI UART protocol Broadcom registered [ 233.641217] Bluetooth: hci0: BCM: chip id 94 [ 233.642081] Bluetooth: hci0: BCM: features 0x2e [ 233.644283] Bluetooth: hci0: BCM43430A1 [ 233.644321] Bluetooth: hci0: BCM43430A1 (001.002.009) build 0000 [ 234.360569] Bluetooth: hci0: BCM (001.002.009) build 0325 After enabling bluetooth scanning i will see these error messages periodica= lly: [ 815.939839] Bluetooth: hci0: last event is not cmd complete (0x0f) [ 831.302476] Bluetooth: hci0: last event is not cmd complete (0x0f) [ 847.303953] Bluetooth: hci0: last event is not cmd complete (0x0f) [ 863.305284] Bluetooth: hci0: last event is not cmd complete (0x0f) [ 879.306838] Bluetooth: hci0: last event is not cmd complete (0x0f) Btw: Linus Wallej applied the GPIO expander driver Stefan >=20 > Regards >=20 > Marcel > ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-22 14:26 ` Stefan Wahren @ 2018-02-22 15:43 ` Marcel Holtmann 2018-02-22 18:05 ` Stefan Wahren 0 siblings, 1 reply; 20+ messages in thread From: Marcel Holtmann @ 2018-02-22 15:43 UTC (permalink / raw) To: Stefan Wahren; +Cc: Eric Anholt, Frédéric Danis, Bluez mailing list Hi Stefan, >>>>>>>>>>> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. >>>>>>>>> So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. >>>>>>>> >>>>>>>> We may also reset to initialization speed on module unload. >>>>>>>> This will allow multiple tests on the hardware, even if it does not have GPIOs exposed. >>>>>>> >>>>>>> I prefer this solution instead of coding workarounds within the devicetree. >>>>>> >>>>>> DT is actually for encoding workarounds for the hardware. If the GPIOs are not exposed, we are actually limited. However I am going to do that in the hci_bcm.c driver itself since it is a more wider problem. If the GPIO resources are not available, the device will actually not function. This is actually a valid assumption for all hardwired Bluetooth chips. They all have some GPIO or power control option. The only reason to not have GPIOs would be external development boards. So the RPi with the not exposed GPIOs is kinda broken hardware right now. That we got this far supporting Bluetooth on it has to be considered pure luck :) >>>>> >>>>> only to make sure that we talking about the same, please take a look at my attempt for the RPi Zero W [1]. >>>>> >>>>> Using the BT_ON signal as shutdown-gpio is not enough? I'm sorry i didn't test the reload case yet. >>>>> >>>>> So after the implementation of the RPI firmware expander driver, we still need this baudrate limitiation? >>>>> >>>>> Btw Baruch said that he will send a new version of his patch series soon. >>>>> >>>>> [1] - https://github.com/lategoodbye/rpi-zero/commit/e3085c093e56364a69f2e32d35827635b95cf966 >>>> >>>> before you include "shutdown-gpios = <&gpio 45 GPIO_ACTIVE_HIGH>;” we might need to figure out on how the BT_ON GPIO is working and what it is suppose to be doing. But otherwise the patch fro the Zero W looks right to me. >>>> >>>> Also keep in mind that the current 4.16-rc2 kernel will require the shutdown-gpios and device-wakeup-gpios both to be available. We have not yet tested this when only shutdown-gpios is available. You might need to modify bcm_get_resources and bcm_gpio_set_power to test this out. >>> >>> i think this contradicts to the binding documentation, which defines both as optional. >> >> the 4.15 kernel might be fine actually while the support for Apple hardware with Broadcom UART devices might have accidentally required this now. Maybe you just want to hack your kernel and see how it goes when just having the shutdown-gpios available. >> >> I am super curious if the firmware resets and falls back to the ROM state or if something is actually kept. > > since i don't have any schematics about the BT part, i simply retested my patches against 4.15 on RPi Zero W. > > modprobe -r hci_uart > modprobe hci_uart > > works without any issues: > > [ 233.486208] Bluetooth: HCI UART driver ver 2.3 > [ 233.486258] Bluetooth: HCI UART protocol H4 registered > [ 233.487189] hci_uart_bcm serial0-0: BCM irq: -22 > [ 233.488382] Bluetooth: HCI UART protocol Broadcom registered > [ 233.641217] Bluetooth: hci0: BCM: chip id 94 > [ 233.642081] Bluetooth: hci0: BCM: features 0x2e > [ 233.644283] Bluetooth: hci0: BCM43430A1 > [ 233.644321] Bluetooth: hci0: BCM43430A1 (001.002.009) build 0000 > [ 234.360569] Bluetooth: hci0: BCM (001.002.009) build 0325 > > After enabling bluetooth scanning i will see these error messages periodically: > > [ 815.939839] Bluetooth: hci0: last event is not cmd complete (0x0f) > [ 831.302476] Bluetooth: hci0: last event is not cmd complete (0x0f) > [ 847.303953] Bluetooth: hci0: last event is not cmd complete (0x0f) > [ 863.305284] Bluetooth: hci0: last event is not cmd complete (0x0f) > [ 879.306838] Bluetooth: hci0: last event is not cmd complete (0x0f) I really need to hook up the error messages into the btmon output since then we can trace where these are coming from. Anyway, can you btmon -w trace.log from before loading the module and this error showing up. > Btw: Linus Wallej applied the GPIO expander driver That is awesome. Do you see any difference now if you hook up the GPIO in DT. Mind you to change the resources part to allow using only the shutdown GPIO and not having the device-wakeup GPIO. Also let me guess, 4.15 is fine, but 4.16-rc1 or later fails because of the Apple changes. Regards Marcel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-22 15:43 ` Marcel Holtmann @ 2018-02-22 18:05 ` Stefan Wahren 2018-02-22 18:50 ` Marcel Holtmann 0 siblings, 1 reply; 20+ messages in thread From: Stefan Wahren @ 2018-02-22 18:05 UTC (permalink / raw) To: Marcel Holtmann; +Cc: Eric Anholt, Frédéric Danis, Bluez mailing list [-- Attachment #1: Type: text/plain, Size: 5328 bytes --] Hi Marcel, > Marcel Holtmann <marcel@holtmann.org> hat am 22. Februar 2018 um 16:43 geschrieben: > > > Hi Stefan, > > >>>>>>>>>>> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. > >>>>>>>>> So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. > >>>>>>>> > >>>>>>>> We may also reset to initialization speed on module unload. > >>>>>>>> This will allow multiple tests on the hardware, even if it does not have GPIOs exposed. > >>>>>>> > >>>>>>> I prefer this solution instead of coding workarounds within the devicetree. > >>>>>> > >>>>>> DT is actually for encoding workarounds for the hardware. If the GPIOs are not exposed, we are actually limited. However I am going to do that in the hci_bcm.c driver itself since it is a more wider problem. If the GPIO resources are not available, the device will actually not function. This is actually a valid assumption for all hardwired Bluetooth chips. They all have some GPIO or power control option. The only reason to not have GPIOs would be external development boards. So the RPi with the not exposed GPIOs is kinda broken hardware right now. That we got this far supporting Bluetooth on it has to be considered pure luck :) > >>>>> > >>>>> only to make sure that we talking about the same, please take a look at my attempt for the RPi Zero W [1]. > >>>>> > >>>>> Using the BT_ON signal as shutdown-gpio is not enough? I'm sorry i didn't test the reload case yet. > >>>>> > >>>>> So after the implementation of the RPI firmware expander driver, we still need this baudrate limitiation? > >>>>> > >>>>> Btw Baruch said that he will send a new version of his patch series soon. > >>>>> > >>>>> [1] - https://github.com/lategoodbye/rpi-zero/commit/e3085c093e56364a69f2e32d35827635b95cf966 > >>>> > >>>> before you include "shutdown-gpios = <&gpio 45 GPIO_ACTIVE_HIGH>;” we might need to figure out on how the BT_ON GPIO is working and what it is suppose to be doing. But otherwise the patch fro the Zero W looks right to me. > >>>> > >>>> Also keep in mind that the current 4.16-rc2 kernel will require the shutdown-gpios and device-wakeup-gpios both to be available. We have not yet tested this when only shutdown-gpios is available. You might need to modify bcm_get_resources and bcm_gpio_set_power to test this out. > >>> > >>> i think this contradicts to the binding documentation, which defines both as optional. > >> > >> the 4.15 kernel might be fine actually while the support for Apple hardware with Broadcom UART devices might have accidentally required this now. Maybe you just want to hack your kernel and see how it goes when just having the shutdown-gpios available. > >> > >> I am super curious if the firmware resets and falls back to the ROM state or if something is actually kept. > > > > since i don't have any schematics about the BT part, i simply retested my patches against 4.15 on RPi Zero W. > > > > modprobe -r hci_uart > > modprobe hci_uart > > > > works without any issues: > > > > [ 233.486208] Bluetooth: HCI UART driver ver 2.3 > > [ 233.486258] Bluetooth: HCI UART protocol H4 registered > > [ 233.487189] hci_uart_bcm serial0-0: BCM irq: -22 > > [ 233.488382] Bluetooth: HCI UART protocol Broadcom registered > > [ 233.641217] Bluetooth: hci0: BCM: chip id 94 > > [ 233.642081] Bluetooth: hci0: BCM: features 0x2e > > [ 233.644283] Bluetooth: hci0: BCM43430A1 > > [ 233.644321] Bluetooth: hci0: BCM43430A1 (001.002.009) build 0000 > > [ 234.360569] Bluetooth: hci0: BCM (001.002.009) build 0325 > > > > After enabling bluetooth scanning i will see these error messages periodically: > > > > [ 815.939839] Bluetooth: hci0: last event is not cmd complete (0x0f) > > [ 831.302476] Bluetooth: hci0: last event is not cmd complete (0x0f) > > [ 847.303953] Bluetooth: hci0: last event is not cmd complete (0x0f) > > [ 863.305284] Bluetooth: hci0: last event is not cmd complete (0x0f) > > [ 879.306838] Bluetooth: hci0: last event is not cmd complete (0x0f) > > I really need to hook up the error messages into the btmon output since then we can trace where these are coming from. Anyway, can you btmon -w trace.log from before loading the module and this error showing up. I attached the log. According to dmesg this error happend only once during the trace. > > > Btw: Linus Wallej applied the GPIO expander driver > > That is awesome. Do you see any difference now if you hook up the GPIO in DT. Mind you to change the resources part to allow using only the shutdown GPIO and not having the device-wakeup GPIO. The RPi Zero W doesn't have a GPIO expander and the RPi 3 also uses the BT_ON line (via GPIO expander). So i don't expect any difference between them. > > Also let me guess, 4.15 is fine, but 4.16-rc1 or later fails because of the Apple changes. Didn't tried it yet. Regards Stefan > > Regards > > Marcel > [-- Attachment #2: trace.log --] [-- Type: text/x-log, Size: 53779 bytes --] btsnoop\0\0\0\0\x01\0\0\aÑ\0\0\0\x1f\0\0\0\x1fÿÿ\0\f\0\0\0\0\0â=ªLuÛ7Linux version 4.15.0+ (armv6l)\0\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0â=ªLuÛOBluetooth subsystem version 2.22\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0â=ªLuÛl\x01\0\0\0\x02\0\x01\x0e\0\x01\0\0\0\x10bluetoothd\0\0\0\0\0\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0â=ªLuÜ\x19\x02\0\0\0\x02\0\x01\x0e\0\x01\0\0\0\x10btmon\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\0\0\0\0\0\0â=ªM¢à\0\x03\0\0\0\0\0\0hci0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\0\0â=ªM¢îf\0\0\0\b\0\0\0\b\0\0\0 \0\0\0\0\0â=ªM¢îÅ\0\0\0\0\0\0\x0f\0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0â=ªM¢õD\x18ü\x06\0\0\x1e\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM£\à\x0e\x04\x01\x18ü\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM£aþ\x03\f\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM£kS\x0e\x04\x01\x03\f\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0â=ªM¤¼@\x03\0\0\0\0\0\x02\x16\0\x01\0\0\0\x10hciconfig\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM¥#¶\x01\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªM¥(½\x0e\f\x01\x01\x10\0\a\0\0\a\x0f\0 "\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM¥*\x15yü\0\0\0\0\f\0\0\0\f\0\0\0\x03\0\0\0\0\0â=ªM¥0\x7f\x0e \x01yü\0^þÿÿ\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM¥1nü\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªM¥3\x0e\f\x01nü\0.\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM¥4ü\x14\f\0\0\0\0þ\0\0\0þ\0\0\0\x03\0\0\0\0\0â=ªM¥<\x1a\x0eü\x01\x14\f\0BCM43430A1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM¥@û.ü\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¥Cb\x0e\x04\x01.ü\0\0\0\0I\0\0\0I\0\0\0\x02\0\0\0\0\0â=ªM¦4ALüF\x10\x18!\0BRCMcfgS\0\0\0\02\0\0\0\x01\x01\x04\x18\0\0\0\x03\x06¬\x1f\x12¡CC\0\x01\x1cR\x18!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0þ\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦7\x18\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦8;LüÿR\x18!\0BRCMcfgD\0\0\0\0N\0\0\x03\x03'BCM43438A1 37.4MHz Raspberry Pi 3-0062\0\x16\x03\x02E\x01\x02\x01\x04\b\x012\0\x01\0\0\0\x01\0\0\0\0\02\0ÿ\x0f\0\0b\b\0\0p\0d\0\0\0\0\0\0\0¬\02\0ÿÿÿ\x01\0\0/\0\02\0\0ðÿ\x0f\0\x10\x11\x01x\02\0ÿÿÿÿ¹¸¸¸`, \0ÿ\0\0\0\0\0\0\0\x10\x012\0\0\0ÿÿ\0\0\x18\x18l\x01`\0ÿÿÿÿ\b\0\0\0p\x01`\0ÿÿÿÿ\f\0\0\0t\x01`\0ÿÿÿÿ\x18\0\0\0x\x01`\0ÿÿÿÿ\x1c\0\0\0|\x01`\0ÿÿ\0\0!\0\0\0\x01`\0ÿÿÿÿ&\0\0\0`\x06A\0ÿÿ\0\03\x03\0\0d\x06A\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦>Ô\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦?ôLüÿM\x19!\0ÿÿ\0\0):\0\0d\x06A\0ÿÿ\0\0):\0\0h\x06A\0ÿÿ\0\0h\x05\0\0l\x06A\0ÿÿ\0\0¨0\0\0p\x06A\0ÿÿ\0\0è>\0\0t\x06A\0ÿÿ\0\0\x1c2\0\0x\x06A\0ÿÿ\0\0»3\0\0|\x06A\0ÿÿ\0\00 \0\0P\x03A\0ÿÿ\0\0\x10\x05\0\0T\x03A\0ÿÿ\0\0 \0\0\\x03A\0ÿÿ\0\0 \b\0\0`\x03A\0ÿÿ\0\0\x0f\a\0\0d\x03A\0ÿÿ\0\0\x05\b\0\0l\x03A\0ÿÿ\0\0\x0e \0\0t\x03A\0ÿÿ\0\0\x05 \0\0x\x03A\0ÿÿ\0\0\x10 \0\0@\x01A\0ÿÿ\0\0\x10\x05\0\0D\x01A\0ÿÿ\0\0 \0\0L\x01A\0ÿÿ\0\0 \b\0\0P\x01A\0ÿÿ\0\0\x0f\a\0\0T\x01A\0ÿÿ\0\0\x05\b\0\0\\x01A\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦F\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦G¶LüÿH\x1a!\0\0ÿÿ\0\0\x0e \0\0`\x01A\0ÿÿ\0\0\x05 \0\0d\x01A\0ÿÿ\0\0\x10 \0\0à\x06A\0ÿÿ\0\0q \0\0\x01`\0ÿ\0\0\0\x06\0\0\0d\x01`\0ÿÿÿÿ\x06\0\0\0H, \0ÿ\0\0\0\x01\0\0\0\b@ \0l\b\0\0\0\0\0\0ô0 \0ÿ\0\0\0\x01\0\0\0\x17\x03\x04\x12\0\x04\x01 \x01\x04\x02\x11\0\0"\x03\x02\0\0ð\x01\x10\x04\0\0\0(\x152\0\0\0\x7fþ4\x10 \x02ð\x01\x10\x01\0\0\0(\x152\0\0\0\x7fþ4\x10 \x02ð\x01\x10\x02\0\0\0(\x152\0\0\0\x7fþ4\x10 \x02ð\x01 \x01\x03\0\0\0\x10\x152\0\0\0\0\0ððð\0\x14\x152\0\0\0\0\0ððð\0\x18\x152\0\0\0\0\0ððð\0\x1c\x152\0\0\0\0\0LL\0\0 \x152\0ÿÿúÿ\x05\x01\x06\x06$\x15\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦N[\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦O\x7fLüÿC^[!\02\0\0\0\0\0\0\0\0\0(\x152\0\0\0\x7fþ4\x10 \x024\x152\0\0\0\0\0ð\0\0\08\x152\0\0\0\0\0\0\0\0\0P\x152\0\0\0\0\0Ê\x06\0\0, d\0\x0e\0\0\0\x0e\0\0\0ø\0d\0Q\0\0\0\x10\0\0\0x\bd\0\x02\0\0\0\0\0\0\0\x01\aµ\x03\x04\x06 #<Zn}\x058\x04\x04\x04\x04Ø\x04t\x04Ä\x04Ø\x04Ä\x04\x14\x05°\x04\0\x05\x14\x05\0\x05P\x05ö\x04F\x05Z\x05F\x05\x05<\x05\x05 \x05\x05Ü\x05\x05Ò\x05æ\x05Ò\x05"\x06\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ¨\x02¨\x02¨\x02¨\x02¨\x02ä\x02ä\x02ä\x02ä\x02ä\x02 \x03 \x03 \x03 \x03 \x03f\x03f\x03f\x03f\x03f\x03¬\x03¬\x03¬\x03¬\x03¬\x03ò\x03ò\x03ò\x03ò\x03ò\x03\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦V@\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦WbLüÿ>\x1c!\0\x06\0\0\0`\0\x05\x02ÿ \x02ÿ¤\x02ÿ¨\x02ÿ¬\x02ÿ\0\0`\0\x05È\x02ÿÌ\x02ÿÐ\x02ÿÔ\x02ÿØ\x02ÿ\0\0`\0\x05\x03ÿ\x03ÿ\x03ÿ\x03ÿ\x03ÿ\0\0`\0\x05\x03ÿ \x03ÿ¤\x03ÿ¨\x03ÿ¬\x03ÿ\0\0`\0\x05\x03ÿ\x03ÿ \x06ÿ´\x02ÿ8\aÿ\0\0`\0\x03¤\x06ÿ\\x06ÿ\x06ÿLLLLLAAAAA ¦¥¥¥¥¤ô\x18\x03úe\x03Ì_____MMMMM¥¤¤¤¤¤ô\x1a\x03úf\x03ÌlllllXXXXX¥¤¤¤¤¤ô\x1f\x03úf\x03Ì iiiii¥¤¤¤¤¤ô\x1f\x03úf\x03Ìttttt¥¤¤¤¤¤ô\x1f\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦^6\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦_sLüÿ9\x1d!\0\x03úg\x03̳³³³³¥¤¤¤¤¤ô\x1f\x03úg#ÿ\x01\aµ\x03\0\x06 #<Zn}\x05\\x03>\x03H\x03\\x03H\x03\x03z\x03\x03\x03\x03 \x03 \x03p\x03p\x03R\x03*\x03>\x03z\x03z\x03z\x03R\x03f\x03\x03\x03\x03H\x03\\x03\x03\x03\x03\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿD\x020\x02&\x02\x12\x02\x1c\x02\x02l\x02b\x02N\x02X\x02¼\x02¨\x02¼\x02¼\x02¼\x02\x02\x03î\x02ä\x02Ð\x02Ú\x02H\x034\x03*\x03\x16\x03 \x03\x03z\x03p\x03\\x03f\x03\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x06\0\0\0`\0\x05\x02ÿ \x02ÿ¤\x02ÿ¨\x02ÿ¬\x02ÿ\0\0`\0\x05È\x02ÿÌ\x02ÿÐ\x02ÿÔ\x02ÿØ\x02ÿ\0\0`\0\x05\x03ÿ\x03ÿ\x03ÿ\x03ÿ\x03\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦f \x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦gDLüÿ4\x1e!\0ÿ\0\0`\0\x05\x03ÿ \x03ÿ¤\x03ÿ¨\x03ÿ¬\x03ÿ\0\0`\0\x05\x03ÿ\x03ÿ \x06ÿ´\x02ÿ8\aÿ\0\0`\0\x03¤\x06ÿ\\x06ÿ\x06ÿC977885565 ¨¦¦¦¤¤ô\x18\x03úe\x03ÌLEABC@<;;< ¨¦¦¦¤¤ô\x1a\x03úf\x03Ì\RRRRKGGGG ¨¦¦¦¤¤ô\x1f\x03úf\x03Ìjc__dWSRRS ¨¦¦¦¤¤ô\x1f\x03úf\x03Ì|qnnqa]\\] ¨¦¦¦¤¤ô\x1f\x03úg\x03Ì\x7f\x7fohggh ¨¦¦¦¤¤ô\x1f\x03úg#ÿ\x02\a\x7f\x04\x06\x058\x04\x04\x04\x04Ø\x04t\x04Ä\x04Ø\x04Ä\x04\x14\x05°\x04\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦mÍ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦nïLüÿ/\x1f!\0\0\x05\x14\x05\0\x05P\x05ö\x04F\x05Z\x05F\x05\x05<\x05\x05 \x05\x05Ü\x05\x05Ò\x05æ\x05Ò\x05"\x06\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x01\0\0\0`\0\x05\x02ÿ \x02ÿ¤\x02ÿ¨\x02ÿ¬\x02ÿLLLLL_____lllll ³³³³³\x02\a\x7f\0\x06\x05\\x03>\x03H\x03\\x03H\x03\x03z\x03\x03\x03\x03Ô\x03¶\x03À\x03Ô\x03À\x03\x1a\x04ü\x03\x06\x04\x1a\x04\x06\x04`\x04B\x04L\x04`\x04L\x04¦\x04\x04\x04¦\x04\x04\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x01\0\0\0`\0\x05\x02ÿ \x02ÿ¤\x02ÿ¨\x02ÿ¬\x02ÿC9778LEABC\SRRRjc__d|qnnq\x7f\x7f\0\a\x04?\0\0\0\x03\x01Ä\x01\b \0\b\b\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦u³\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦v¸Lüÿ* !\0\x04\x04\0\0\x10\x10\0\0\b\b\0\0\x18\x18\0\0((\0\0 \0\0,,\0\0((\0\000\0\0AA\0\044\0\0II\0\0 \x01\x01PP\0\0$$\x01\x01XX\0\0@@\x01\x01\0\0``\x01\x01\0\0dd\x01\x01\0\0``\x02\x02\0\0dd\x02\x02\0\0hh\x02\x02\0\0ll\x02\x02\0\0pp\x02\x02¥¥\0\0PP\x03\x03¦¦\0\0TT\x03\x03ÝÝ\0\0tt\x03\x03åå\0\0xx\x03\x03íí\0\0\x03\x03îî\0\0üü\x03\x03ïï\0\0¼¼\x03\x03ïï\0\0¼¼\x03\x03\x03\x01dÈ \0@\0\0\x01@\0\0\x01@\0\0\x01@\0\0\x01@\0\0\x01A\0\x04\x01I\0$\x01P\0@\x01X\0`\x01R\0H\x01S\0L\x01T\0P\x01U\0T\x01V\0X\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦}\x17\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦~OLüÿ%!!\0W\0\\x01f\0\x01n\0¸\x01v\0Ø\x01~\0ø\x01\x7f\0ü\x01\x7f\0ü\x01\x7f\0ü\x01\x7f\0ü\x01\x7f\0ü\x01\x03\x01:(\v \0\x01\0\0\x01\0\0\x05\0\0\r\0\0\x1d\0\0\x0e\0\0\x1e\0\0>\0\0\x0f\0\0\x1f\0\0?\0\0\x7f\0\0ÿ\0\0ÿ\0\0ÿ\0\0ÿ\0\0ÿ\0\0ÿ\0\0\x03\x01\x05\b\b \0\v\x03\x01\x05\f\b \0\v\x03\x01\x05\x10\b \0\x0f\x03\x01\x05\x14\b \0\x0f\x04\a\x01\x042\x1f\0\0\x1d\0\0\x1c\x01\0\x1a\x02\0\x17\x02\0\x15\x12\0\x13U\0\x11d\0\x0f\x11\0\x0e\x03\0\r\x14\0\vP\0 d\0 #\0\b#\0\a\x03\0\a\x16\0\x06\x15\0\x05\x13\0\x05\x16\0\x04\x13\0\x04&\0\x04\x19\0\x03\x05\0\x03\b\0\x03*\0\x02\x03\0\x02\x16\0\x02 \0\x02+\0\x02=\0\x02?\0\x01\x02\0\x01\x15\0\x01\x18\0\x01:\0\x01\x1d\0\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦ \x13\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦;Lüÿ "!\0\x1f\0\x01\0\x01ï\0\x01?\x01\x01\x01\x01Ï\x01\x01\x0f\x02\x01O\x02\x01\x7f\x02\x01¯\x02\x01Ï\x02\x01\0\0\x01\0\0\x04\a\x01\02\x1f\0\0\x1d\0\0\x1c\x01\0\x1a\x02\0\x17\x02\0\x15\x12\0\x13U\0\x11d\0\x0f\x11\0\x0e\x03\0\r\x14\0\vP\0 d\0 #\0\b#\0\a\x03\0\a\x16\0\x06\x15\0\x05\x13\0\x05\x16\0\x04\x13\0\x04&\0\x04\x19\0\x03\x05\0\x03\b\0\x03*\0\x02\x03\0\x02\x16\0\x02 \0\x02+\0\x02=\0\x02?\0\x01\x02\0\x01\x15\0\x01\x18\0\x01:\0\x01\x1d\0\x01\x1f\0\x01\0\x01ï\0\x01?\x01\x01\x01\x01Ï\x01\x01\x0f\x02\x01O\x02\x01\x7f\x02\x01¯\x02\x01Ï\x02\x01\0\0\x01\0\0\x03\a+\x01\0\0\0\x01\0\0\0\0\x14 \0\x04\0\0\0\0\0\0 \x02þ\väþ\x1c\x01äþ\x1c\x01 \x02þ\vñÿ\x0f\0ñÿ\x0f\0\x05\a$ÿ\x01\b\b\f\0\b\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦Ú\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦\x01Lüÿ^[#!\0\x04\x02\0\x03ü\x04ø\x05ô\x06ð\a\f\0\b\x01\x04\x02\0\x03ü\x04ø\x05ô\x06ð\a\x0f\x03(\x02x\x14\x7fZ\0\x14\x02\x14\x1e\0\x02\x03\0\x1eª3\x19\x05Ï\0 \0\0\0\0\a\0\0¢\0\0\0\0\0\0\0\0\x03\x01\x05\x18\x13!\0Ä\x03\x01\x05É" \0\0\x03\x01\fÜ\x1d \0\x01\x010\0\x02 \0\x03\x01\x05H, \0\x01\x03\x01\x05$3 \0\0\x03\x01\x05N\x05 \0\0\x03\x01\x06\b\x1e \0\0\0\x03\x01\b¸( \0\0\0\0\0\x03\x01\x05í% \0\0\x03\x01\x06Æ2 \0*\x0e\x03\x01\x06¬, \0ð\0\x03\x01\x06ì' \0\a\x03\x01\x054 \0\0\x04\x03\f \0 \0\x14\x14\x1af \x15\0\0\x05\x03 \0^[(Pÿÿ?\0\x05\x03\x1f\fÂ\x01PP®8º \x05\0ÿÿ\aã2\0¸¨Æÿ\x11\x03\x04@\0\0 \x03\x04Ô0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦¸\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦âLüÿ\x16$!\0\0\0\x03\x01\x14Äa\r\0<\x1c \04\x1c \0,\x1c \0\0 \x14\0\x03\x01È\x12Ôa\r\0\0\0\0\0[ \0¸Ø \0\x18× \0L× \0× \0´× \0è× \0\x1cØ \0PØ \0Ø \0\0\0\0\0w[\x03\0Gj\x03\0o\x0f\r\0\0\0\0\0)\x0f\r\0\0\0\0\0½_\x03\0 l\x03\0ëa\x03\0b\x03\0;V\x03\0]Ñ\a\0ß×\a\0«|\a\0\0\0\0\0\x13\r\0\0\0\0\0c\x13\r\0é~\a\0µ}\a\0©\x7f\a\0\x1dÎ\a\0]Ñ\a\0ß×\a\0çÍ\a\0\0\0\0\0û\x13\r\0\0\0\0\0½\x13\r\0¥Ñ\a\0«Ò\a\0g×\a\0\x1dÎ\a\0ÿ\0\0\08 !\0\0\00\x10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0;\x1e\r\0A\x1e\r\0Ý\x1e\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦~\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦Lüÿ\x11%!\0\r\0ÿ\x1f\r\0\0\f\0\0û\x06\07\r\0s8\r\0\x1f\x02\a\0Á\x03\a\0\0\0\0\0}\x06\a\0ç \a\0a8\r\0þ\x06\0a\x04\a\0\0\0\0\0Ûæ\x02\0¹8\r\0\ræ\x02\0ýæ\x02\0Ëì\x02\0\0\0\0\0ýè\x02\0\0\0\0\0é\x02\0gë\x02\0ùç\x02\0\x01\x02\x04\0\x01\x04\0\0\0\0\0\0\x01\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0d\0\0\0\0\0Â\v£\x12 \x17N^[f\x1e\x03!G#F%\x10'®((*+Å,ñ- /\x100 1ô1Ò2¦3p415ê5\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦¤~\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦¥ÁLüÿ\f&!\06F7ê78 9³9B:Ë:Q;Ó;Q<Ë<B=¶='>>\0?h?Ï?3@@ô@QA¬A\x06B^B´B\bC[C¬CüCJDDâD-EvE½E\x04FIFFÑF\x13GUGGÔG\x13HQHHÉH\x04I?IxI±IéI JWJJÂJ÷J+K^KKÃKõK&LVLL¶LåL\x13MAMoMMÈMôM NKNvN NÊNôN\x1dOFOnOO¾OåO\fP3PYP\x7fP¥PÊPïP\x13Q8Q\QQ£QÆQéQ\fR.RPRrRRµRÖR÷R\x17S7SWSwSS¶SÕSôS\x13T1TPTnTT©TÇTäT\x01U\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦¬¤\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦ÓLüÿ\a'!\0\x1eU:UWUsUU«UÇUãUþU\x19V4VOVjVVV¹VÓVíV\aW W:WSWlW WW·WÐWèW\x01X\x19X1XIXaXxXX§X¾XÖXíX\x04Y\x1aY1YHY^YtYY¡Y·YÍYâYøY\x0eZ#Z8ZNZcZxZZ¡Z¶ZËZßZôZ\b[\x1c[1[E[Y[l[[[¨[»[Î[â[õ[\b\^[\.\A\T\g\z\\\±\Ã\Ö\è\ú\\f]\x1e]0]B]T]e]w]]]«]½]Î]ß]ð]\x01^\0\0\0\0\0\0\0\0\0\0p\x01e\0\x01\0\0\0\x01\0\0\0\0\0\0\0`\x01e\0\x01\0\0\0\x01\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦´v\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦µLüÿ\x02(!\0\0À\x04A\0\0\0\0\0ÿÿ\0\0\0\0\0\0!O\r\0¼¼¼¼CCCC\0\0\0\0¼\x01`\0\x01\0\0\0\x01\0\0\0\0\0\0\0!¶\x02\0¼¼¼¼CCCC\0\0\0\0 \0`\0\0\0\0\0ÿ\0\0\0\0\0\0\0\x1c\0`\0@\0\0\0ÿ\0\0\0\0\0\0\0\x18\0`\0\0\0\0\0ÿ\0\0\0\0\0\0\0\x14\0`\0ð\0\0\0ÿ\0\0\0\0\0\0\0À\x04A\0\x01\0\0\0ÿÿ\0\0\0\0\0\0,\0`\00\0\0\0ÿ\0\0\0\0\0\0\0$\0`\0ÿ\0\0\0ÿ\0\0\0\0\0\0\0O\r\0¼¼¼¼CCCC\0\0\0\0è\x02`\0@\0\0\0ð\0\0\0\0\0\0\0d\x04A\0º@\0\0ÿÿ\0\0\0\0\0\0`\x04A\0ÀP\0\0ÿÿ\0\0\0\0\0\0µN\r\0¼¼¼¼CC\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦¼~\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦½ºLüÿý(!\0CC\0\0\0\04\x06A\0\x18\0\0ÿÿ\0\0\0\0\0\0`\x01`\0U\0\0\0ÿ\0\0\0\0\0\0\00\x04A\0é\x02\0\0ÿÿ\0\0\0\0\0\0Ü\x06A\0ñ\0\0ÿÿ\0\0\0\0\0\0À\x04A\0!\0\0\0ÿÿ\0\0\0\0\0\0\x04A\0\0\0\0\0ÿÿ\0\0\0\0\0\0'P\r\0¼¼¼¼CCCC\0\0\0\0SP\r\0¼¼¼¼CCCC\0\0\0\0ÅO\r\0¼¼¼¼CCCC\0\0\0\0\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0 \x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0¤\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0¨\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0¬\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0È\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0Ì\x02`\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦Ä\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦ÅÉLüÿø)!\0\0\0\0ÿ\0\0\0\0\0\0\0Ð\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0Ô\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0Ø\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0ÝN\r\0¼¼¼¼CCCC\0\0\0\0·\x02\0¼¼¼¼CCCC\0\0\0\0ð\0d\0\x01\0\0\0ÿ\0\0\0\0\0\0\0ä\0d\0\f\0\0\0ÿ\0\0\0\0\0\0\0à\0d\00\0\0\0ÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ü\x02`\0\x01\0\0\0ÿ\0\0\0\0\0\0\0¼\x01`\0\x01\0\0\0ÿ\0\0\0\0\0\0\0!O\r\0¼¼¼¼CCCC\0\0\0\0\f\x01`\0\0\0\0\0ÿ\0\0\0\0\0\0\0\x7fP\r\0¼¼¼¼CCCC\0\0\0\0`\x01e\0\x01\0\0\0ÿÿ\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦Ì\\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦ÍLüÿó*!\0p\x01e\0\x01\0\0\0ÿÿ\0\0\0\0\0\0ø\0d\0ß\0\0\0ÿÿ\0\0\0\0\0\0È\0d\0\x18\0\0\0ÿÿ\0\0\0\0\0\0 \0`\0¾\0\0\0ÿ\0\0\0\0\0\0\0\x1c\0`\0ÿ\0\0\0ÿ\0\0\0\0\0\0\0\x18\0`\0\x0f\0\0\0ÿ\0\0\0\0\0\0\0\x14\0`\0ÿ\0\0\0ÿ\0\0\0\0\0\0\0$\0`\0ÿ\0\0\0ÿ\0\0\0\0\0\0\0,\0`\00\0\0\0ÿ\0\0\0\0\0\0\0Ü\x04`\0\b\0\0\0ÿ\0\0\0\0\0\0\0è\x04A\0\x02Â\0\0ÿ\0\0\0\0\0\0\0d\x04A\0º@\0\0ÿÿ\0\0\0\0\0\04\x06A\0\0H\0\0ÿÿ\0\0\0\0\0\0è\x02`\0E\0\0\0ÿÿ\0\0\0\0\0\0'P\r\0¼¼¼¼CCCC\0\0\0\0SP\r\0¼¼¼¼CCC\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦Ô`\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦ÕÛLüÿî+!\0C\0\0\0\0µN\r\0¼¼¼¼CCCC\0\0\0\0ÝN\r\0¼¼¼¼CCCC\0\0\0\0Q\r\0¼¼¼¼CCCC\0\0\0\0P\r\0¼¼¼¼CCCC\0\0\0\0À\x04A\0!\0\0\0ÿÿ\0\0\0\0\0\03Q\r\0¼¼¼¼CCCC\0\0\0\0åO\r\0¼¼¼¼CCCC\0\0\0\0ð\0d\0\x01\0\0\0ÿ\0\0\0\0\0\0\0ä\0d\0\f\0\0\0ÿ\0\0\0\0\0\0\0à\0d\00\0\0\0ÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v \x02\0N\r\09 \x02\0W \x02\0Ó \x02\0{¡\x02\0µ¡\x02\0Å¢\x02\0\0\0\0\0\x11(\r\0\x03\0\0\0Í/\r\0\x06\0 \0c0\r\0\x04\0\b\0c1\r\0\x04\0\x06\0u1\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦Ü¯\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦ÝíLüÿé,!\0\r\0\x03\0\a\0\x05)\r\0\0\0\x0e\0UD\r\0 \0\x06\0\x15)\r\0#\0\0\0U\r\0\x04\0\x06\0(\r\0\r\0\x06\0ï.\r\0\0\0\0\0/\r\0\x03\0\x0e\0¾\x01\0\0\0\x06\0O)\r\0\0\0\x06\0w)\r\0 \0\x06\0 1\r\0\f\0\x06\0\x15+\r\0 \0\0\0{+\r\0\a\0\0\0)\r\0\x1c\0\0\0Í*\r\0\x03\0\0\0\0\0\0\0%\0\0\04\r\0\x10\0\0\0\0\0\0\0\x03\x01\x05-\f!\0\0\x03\x01\x05,\f!\0\x03\x03\x01\x05+\f!\0\0\x03\x01\x05*\f!\0\x01\x03\x01\x05)\f!\0\0\x03\x01\b$\f!\0¹¹»¹\x03\x01\b \f!\0¹¹»¹\x03\x01\x05\x1c\f!\0\0\x03\x01\x06\x1e\f!\0\0\0\x03\x01(ð\v!\0Rfüü>Rýý*>þþ\x16*ÿÿ\x02\x16\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦ä\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦åÁLüÿä-!\0\0î\x02\x01\x01Úî\x02\x02ÆÚ\x03\x03²Æ\x04\x04\x03\x01\x05ë\v!\0\0\x03\x01\x05ì\v!\0\0\x03\x01\x05í\v!\0\0\x03\x01\x05é\v!\0\0\x03\x01\x05è\v!\0\0\x03\x01\x05ê\v!\0\0\x03\x01\x06î\v!\0\x01\x03\x01\bä\v!\0(\0\0\0\x03\x01\bà\v!\0\x0f\0\0\0\x03\x01\x05Þ\v!\0¶\x03\x01\x05ß\v!\0ª\x03\x01\x05Ü\v!\0(\x03\x01\x05Û\v!\0\x01\x03\x01\x05Ú\v!\0\0\x03\x01\x05Ø\v!\0\0\x03\x01\x05Ù\v!\0\0\x03\x01¤\x038 !\0\x01`\0\x02`\0\x02`\0\x02`\0\x04A\0\x04A\0\f\0\0\0\0\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0\x06\0\0\0 \0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0\0\0\0\0\x0f\0\0\0]\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦ìN\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦íLüÿß.!\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0ú\0\0\0\x15\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0ô\0\0\0^[\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0î\0\0\0!\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0è\0\0\0'\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0â\0\0\0-\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0Ü\0\0\01\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0Ö\0\0\01\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x01\0\0Ð\0\0\01\0\0\0]\0\0\0\x06\0\0\0\x10\0\0\0\\x02\0\0\x01\0\0Ê\0\0\01\0\0\0]\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦ô-\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦õéLüÿÚ/!\0\0\0\x06\0\0\0]\0\0\0J\x02\0\0\x01\0\0Ä\0\0\01\0\0\0]\0\0\0\x06\0\0\0]\0\0\0D\x02\0\0\x01\0\0¾\0\0\01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D\x02\0\0\x01\0\0\x03\x01\x054 !\0\x01\x03\x01\x051 !\0\x06\x03\x01\x052 !\0\x04\x03\x01\x053 !\0\0\x03\x01\x050 !\0\0\x03\x01\x10\0\x02\r\0@ð \0Æøð\0]÷ò½\x03\x01\x18\f\x02\r\0øØ!\x01h!ô@\x01 ±\x01õ\x01\÷1½\x03\x01\x14 \x02\r\0°\0$\x01HÄam÷¼\0? \0\x03\x01\x140\x02\r\00F¡{jF\v«\0ð@ûm÷\x16½\x03\x01\x18@\x02\r\0¨ip÷`ý°ño\x01Òl÷\x03½l÷ ½\x03\x01\x14T\x02\r\0 F\0}\x02(\x01Ñ F\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¦ý0\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¦þaLüÿÕ0!\0Gm÷>¸\x03\x01\x1cd\x02\r\0\x04H\0x\b±\0ðGû\x03 3÷\x1aýl÷]¾0 !\0\x03\x01\x10|\x02\r\0!\0\0ðIû up½\0\0\x03\x01 \x02\r\0\x02´\bF\x05ð\x15þ\x02¼ ±> [÷Õü±÷k¼½èð\0\0\x03\x01\x0e¤\x02\r\0\x10"¨÷Sý©÷ ¸\x03\x01\x10®\x02\r\0\x02Õ F\0ðëû¨÷ »\x03\x01\x16º\x02\r\0hF÷×ù\x10¹ Fu÷sú|½\0\0\x03\x01\x16Ì\x02\r\0¢÷¶ÿ\x18¹`h\b±u÷jú£÷K»\x03\x01\x1aÞ\x02\r\0±÷ ü!xø\x04\0B\x01Ó£÷0¿£÷¾\x03\x01\x18ô\x02\r\01¹Á\x01)\x03ѰøF\x10¤÷G¹¤÷W¹\x03\x01\f\b\x03\r\0\0ðþü|½\0\0\x03\x01\x10\x10\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§\x052\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§\x06uLüÿÐ1!\0\x03\r\0\0µ\0ð8ÿ]ø\x04ëpG\x03\x01\f\x1c\x03\r\0s÷Jür÷0º\x03\x01\x12$\x03\r\0 Fk÷\x03ÿ0Fu÷øp½\x03\x01\x162\x03\r\0 F\0ð\0þ\x18±Ôø d÷¿\x10½\x03\x01\x14D\x03\r\0 F\0ð\x05þÿ ø\x1d\x01f÷\x19½\x03\x01\x14T\x03\r\0 F\0ðýýÿ ø\x1d\x01e÷v¼\x03\x01\x18d\x03\r\0ÔøÔ\0®÷rø\0!ÔøØ\0d÷¸¾\0\0\x03\x01\x14x\x03\r\0\0ð?ÿ\b±¥÷_½¥÷m½\0\0\x03\x01\x14\x03\r\0£B\x01Ó§÷\x04¼D!§÷\x02¼\0\0\x03\x01\x14\x03\r\0\x01ðCø F½è\x10@j÷¾¾\0\0\x03\x01\x14¨\x03\r\0ø0\x01 F\0ðÑý¡÷¹\0\0\x03\x01\f¸\x03\r\0\x01ðD\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§\r\x05\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§\x0eBLüÿË2!\0ÿ Fp½\x03\x01\fÀ\x03\r\0½èøC\x02ð.¸\x03\x01\x10È\x03\r\0 F\x02ðwù\x01$÷ɽ\x03\x01\x16Ô\x03\r\0 F)F\x02ð\0ú\b±O÷¾O÷¾\x03\x01\x1eæ\x03\r\0aÁóÉ\x01\0)\x03Ð\x03(\x03ÐO÷ì¹O÷oºO÷ê¹\x03\x01\x1c\0\x04\r\0áy\x01)\x03Ð (\x03Ó÷å¼÷ê¼÷ò¼\0\0\x03\x01\x14\x18\x04\r\0 \x02!\x06"ã\x1c½è\x10@3÷P¹\x03\x01\x1c(\x04\r\0\x04p}÷¼û^÷mü[÷'ü[÷}ü[÷Æ»\0\0\x03\x01\x18@\x04\r\0\x02´0÷ú\x02¼ F0÷þ0÷j¿\0\0\x03\x010T\x04\r\0 K^[x3±ù\x1a\x10F1Z)\bØS÷ ¿ù\x1a\x10\x151\x1e)\x01ØS÷\x03¿S\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§\x14î\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§\x16FLüÿÆ3!\0÷é¾\0\04 !\0\x03\x01\x1c\x04\r\0!z\x01)\x03Ð (\x03ÓS÷ë¾S÷ï¾S÷Û¾\0\0\x03\x01\x10\x04\r\0(F\x02ðþH÷\x02¼\0\0\x03\x014¤\x04\r\0Gò\x14\x01B\x03Ñ\bH\0x\0±\x10½\b u÷Áø\x01\0ùÐGò\x14\x02B\x02Ñ\x01"\x01H\x02p÷#¸´b\r\0\x03\x01\fÔ\x04\r\0\x02ð¾þ\x10½\0\0\x03\x01\x14Ü\x04\r\0\x15\x7f\x06-\x01ÐÂø\x1a@÷»\0\0\x03\x01\x14ì\x04\r\0 ±\b ø¢\0÷¹p½\0\0\x03\x01\x10ü\x04\r\0 F\x02ðÿ½èð\0\0\x03\x01\x14\b\x05\r\0è`\x01 ¨v\0 hv÷\x06¾\0\0\x03\x01\x10\x18\x05\r\0Èø\b\x10\x03ð\x02ør÷8¿\x03\x01L$\x05\r\0\fI xA±\fI\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§\x1cù\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§\x1e¬LüÿÁ4!\0\bx(±\0 \bp IOð\x01\0\bp I\f \b` H\x01iAð\x01\x01\x01a\x01hAð\x01\x01\x01`\0 pGÚ\v!\0\x1e \0¶b\r\04 d\0`\x01e\0\x03\x01\x18l\x05\r\0f÷\x7fü\x18¹àiÀ\x02s÷¹s÷¹\0\0\x03\x01\x1c\x05\r\0\x05Ñ\x04H\0x\x10¹`}V÷\x1d¸\0\0V÷$¸Û\v!\0\x03\x01 \x05\r\0\0(\bÐ\0)\x06ÐBÈ¿@\x1a¸¿ \x1aùÑpG\0 pG\0\0\x03\x01\x1c´\x05\r\0ø\0 ð\x01\0ø\0h\x03\x01Õo÷d¹o÷l¹\x03\x01$Ì\x05\r\0\bÐ\x01\x06\x06Õø¨\0\x03ð@øÀ~À\a\x03Ðø\0o÷¹o÷¹\x03\x01$ì\x05\r\0°øØ\x10¨²p÷HüùB\x04Ý0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§%\\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§&Lüÿ¼5!\0hø¨\0n÷\x05¾n÷\x05¾\0\0\x03\x01\x16\f\x06\r\0\x05Ð\0µj÷\bþj÷\x15ÿ\0½÷¿\x03\x01\x16\x1e\x06\r\0\b¹øD`ø²ø>\0÷P¾\0\0\x03\x01\x140\x06\r\0ø\0\x01 ø!\0}÷5¼\0\0\x03\x01\x14@\x06\r\0\x02-½èp@\x01Ðk÷ ½k÷p½\x03\x01\x10P\x06\r\0 F\x03ð\x1dø÷Ö¸\0\0\x03\x01 \\x06\r\0\x03ðPúp½\x03\x01 b\x06\r\0\x03ðzú\x10½\x03\x01\bh\x06\r\0\x10µ\x10½\x03\x01\bl\x06\r\0\x03ðàº\x03\x01\fp\x06\r\0\x03ðßú\x10½\0\0\x03\x01 x\x06\r\0\x03ð{ûp½\x03\x01\x14~\x06\r\0\x0f´\x03ð¤û\x0f¼½è\x10@÷2»\x03\x01\x1a\x06\r\0\0 \x0f´\x03ð^[ü\x0f¼÷|ú \0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§-&\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§.MLüÿ·6!\0h÷U¸\0\0\x03\x01\f¤\x06\r\0\x03ðüþ½èð\x03\x01\f¬\x06\r\0½èðO\x04ðo¸\x03\x01\x10´\x06\r\0b÷¯ûø\f\0d÷\»\x03\x01\fÀ\x06\r\0\x04ð\x03ùd÷µ¸\x03\x01 È\x06\r\0)F2F\x04ðóù\x06F,±9F\x04ðáù\aFb÷<¿b÷B¿\x03\x01\x14ä\x06\r\0\0-\x03Ð\x05-\x01Ðc÷X¸½èð\x03\x01 ô\x06\r\0\x04ðfûp½\x03\x01\x12ú\x06\r\0\x02Ñ\x01 L÷\x03¸\x04ð¨û\x10½\x03\x01 \b\a\r\0\x01 `ó\x0f$\x04ðþ\0\÷ýA÷Éø\b±\x04ðÔý\÷\b¾\x03\x01\x10$\a\r\0(F\x05ðÇú½èð\0\0\x03\x01\x140\a\r\0\x02ð ý F)Ft÷¢üO÷è¿\x03\x01 @\a\r\0\x05ðjû\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§4ý\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§6$Lüÿ²7!\0p½\x03\x01 F\a\r\0\x05ðûp½\x03\x01\x10L\a\r\0\x19±\x04F\0 ÷=»p½\x03\x01,X\a\r\0ø\00K¹\x05´\x05ðÂû\x03\0\x05¼^[±Fê\x03\x06b÷ѹ\x02K\x02ëB\x02b÷ ¹^\b\0\x03\x01\f\a\r\0\0ÀõX \x10½\x03\x01\f\a\r\0\x05ðÀûp½\0\0\x03\x01\x14\a\r\0 F\x02I2÷ü¦÷©¼±_\r\0\x03\x01\x14 \a\r\0\x05ðÐû\x01H\x02$¥÷î¿l \0\x03\x01\f°\a\r\0\x05ð(ü2÷л\x03\x01\x1c¸\a\r\0\x04F\rF\x05ð,ü\x10±\x02J2÷\x0f½p½\0\0Ä\x18 \0\x03\x01\x10Ð\a\r\0\x02(\x01ÙJ÷\x14¿J÷\x15¿\x03\x01\x0eÜ\a\r\0 F\x05ðyüL÷ ¸\x03\x01\x12æ\a\r\0 F)F\x05\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§<Ð\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§=óLüÿ8!\0ðü½èð\0\0\x03\x01\x14ô\a\r\0* b F\x05ðü\x02(J÷=¾\x03\x01<\x04\b\r\0\x03F\x10µ H\vL\x0f)0ù\x11 \x01Û\0 à\aH\0)°ù\0\0\x05ÝPC@\0\0õ\0@\0\f\0²#\x10½\0\0\0* \0Ôa\r\0\x03\x01\x01<\b\r\0pµ\x04F\÷\x06ø\x17MøØ\x018³\x16H\x17JAhAó\x10@\x1c\x10`Äë\x04\x10\x14J\0ë\x10\x02ë\0øÀ \x11H\a*\x16Ð\x11J\x12hR\x1e\x02` FÅø\f\x11[÷üt÷éýøÙ\x11Að\x01\x01 øÙ\x11t÷åý\0 p½\x03 p½\x01"éç\x01!\0p\x1d \0¤5 \0¬u \0 1 \0¨1 \0\x03\x01D¼\b\r\0pµ\fF°ù \x10@\x15F\x1e\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§D\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§F;Lüÿ¨9!\0F\b\x18\vÕ@B\x19Fp÷Aú"F3F)F½èp@\x10Fp÷;¸\x19Fp÷6ú"F3F)F½èp@\x10Fp÷$¹\x03\x01\x1cü\b\r\0\x10µt÷¬ý\x04F0÷Øü F½è\x10@t÷¨½\0\0\x03\x01(\x14 \r\0\x10µ\aK\0"Sø"@B\x02Ñ@ð\x03\0\x10½R\x1c *õÛ@ð\x01\0\x10½Øa\r\0\x03\x01 8 \r\0A|\x02)\bÐ\x03)\x06Ð\0|\x16(\x03Ð\x17(\x01Ð\0 pG\x01 pG\x03\x01\x01T \r\0-éþC^[Lfx x\b±\x06F"à÷âù\b±&x\x1dà\x17H\0% FÐé\0\x12h\0Íé\x01 oFWø%\0\x04h\aà \x1fÿ÷Ôÿ\x10±ø\0`\x04à$hWø%\0 BóÑm\x1cí²\x03\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§Lî\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§N1Lüÿ£:!\0-ëÓ H\x01xB\aÐ\x06p\x03°1F½èðC\x02 t÷\¼½èþ\0\01 !\0Äa\r\0\0b\r\0\x03\x01\x12Ô \r\0+H\0!\x01aAaaÁapG\x03\x01\x1aâ \r\0\0 'K\x01F\x103Sø! I\x1c\x10C\x04)ùÓpG\x03\x01\x01ø \r\0þµ"N\x04\0\x1fFOð\0\x05\x06ñ\x10\x06\x04Ð\x01,\x02Ð\x02(-Ð4à\x10h\0ø\x04\0\x02ªhFq÷sÿ\x18I xB'Ò(%ÒA \0ð\x1f\0\x01"Vø!0\x02ú\0ò\f±C\x0fà\x13B\x01Ð\x17%\x17àßø0À\að\x01\a@\ø!@C<CLø!@\x13CFø!0\bà\0 \x01FFø \x10@\x1c\x04(úÓ\0à\x12%(Fþ½\x18k\r\0K) \0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§TÎ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§V\rLüÿ;!\0\x03\x01È\x01 \r\0-éðG\x04FøÒ\0\0ð5ú\x06F´øH\0´øJ\x10B\x03Ðø !§÷þþE\05Jдø"\x11 Fd÷;úF l\0& ô Oöÿy d\x04ëF\a·ø(\x01HE7ÐA\0PFo÷ÿ°ûõñF\x05û\x11§ø(\x01_êH\x10\x15ÔøÒ\0f÷¨ù@\x01 ÕOð`°ûõñiC@Fp÷ùø°ûõñ\x05û\x11\x01§ø(\x11@\x01\x10Õ·ø(\x01\x02#*F\0!c÷þ§ø(\x01\x01 °@!lÀó\0\0Aê@ dv\x1c\x06.ÁÓ½èð\x03\x01\x03P\v\r\0-éü_\x06FxÖø\x04 ñx\0ð\x0f\x04 ë\x01\0Oð\0\bÇy´HßøÔ²\x01%\0xÁ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§\¨\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§]ãLüÿ<!\0FH¹\x04,\aЮ÷sú ±Ûø\0\0\0!øü\x11§÷ûú\x01(\x01Ñø\adÑ®÷eú\0(`ЧH\0x0¹\x04,\x04ÑÛø\0\0øü\x01p»÷xQF\x04,\x1aÑÛø\0\x10:F\x01õpÍé\0\x01QFt÷)þÛø\0\x10\0 z\x018DR\x1c 1t÷\x1fþÛø\0\x10\bz\x01õq8DDzH\0x\0(°x@ê\a \x1dÐ\x01ðúúŲH$±\x06,\x02Ð\x04,\x05Ð&à\x05p0F¢÷öÿ!à\0x B\x1eÐ%ê\0\x01\x11ð\x03\bEê\0\x05\x17ÐE\x15ÐOð\x01 \x12à®÷ ùð±\x01 $±\x06,\x02Ð\x04,\x05Ð\x06àÛø\0\x10øü\x01\x01àOð\x01 zI\bpzO8hÀ\x05\x15Õºñ\0\x0f\x12Ð\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§d©\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§eÒLüÿ=!\0xHzÀ\x06\x0eÕ0F¢÷®ÿ-à§÷3û\x01()Ñ\f±\x06,&Ñ0F¢÷ºÿ"à\x01,\x03Ñ0F¢÷ ÿ°±¹ñ\0\x0f Ð_êÈp\aÐiH\0x\x10±hH°÷\x1dÿ¢÷\ÿ_H\0x\x10±U±è\a\bÐ\x01 ½èü8h@\x05\x02Õ0F¡÷ïý\0 õç\x03\x01*â\f\r\0\x10µ à]H÷:ÿ\x04F@h\b±t÷\ý Ft÷YýWH÷"ÿ\0(ïÐ\x10½\x03\x01\x1c\b\r\r\0\x10µ\x04F÷¯ü\0(\x04Ñ`h½è\x10@t÷H½\x10½\x03\x01\x10 \r\r\0\x01(\x01Ð\0ðݸ\0ð¢¸\x03\x01È\x02,\r\r\0-éð_\0&F\x0fF4F¬÷,úX±\0%_ê\b\0 Ð\x01(\x0fÐ\x10(\x15иñ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§l§\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§mÍLüÿ>!\0\x11\x0f@Ñ\x18à\x01%òç§÷¿úF\x15 £÷ñû\x06F à÷\x7füF\x14 £÷éû\x06F\x03à§÷¯úF<F¹ñ\0\x0f&Ð\x18ðð\x0fßøÐ ßøÐ°ßøÐßøÐ\x1dÐø\0\0FF\x01(\x16Ñ\x14±\r±«÷æÿOF¹ø\0\0§÷×ùºø\0\0§÷×ù4±8à\x1d±ø\v\0¬÷\x05ø\0 0p½èð\0.ûÐ÷ü\x06F§÷Èù\x06û\0÷§÷Èù\x06F÷üFC·BìÙ§÷Àùªø\0\0§÷¸ù©ø\0\0\x14±\r±«÷´ÿ÷|ü§÷¦ù÷pü§÷¦ù<±÷süà\x1d±ø\v\0«÷Óÿ\x01!ø\0\x10Ëç\0\0b\r\0\03 \0\x01b\r\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§t^\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§uLüÿ?!\0\0õ2 \0) \0X4 \0 \0ü \0:3 \0ø[ \083 \0<3 \0\x03\x01vp\x0e\r\0\x10µ¡÷sý\x1fH\0h\x05\x01Õ ÷ÿ§÷ù\x01(\x01Ñ©÷\x0fù\0!\x01 ÿ÷Kÿ«÷Gÿ\x17H\x17I\0x\0(\bh\x02Ð@ô\0p\x01à ô\0p\b`t÷Òú\x04F÷Øû`±÷/üH¹\x14 £÷?û(±\x06 ÷Ñû\vI\x01 \bp F½è\x10@t÷Àº\x03\x01&â\x0e\r\0\x10µ§÷ù\0!½è\x10@\x11 ÿ÷\x1c¿) \0ñ2 \0ü2 \0ó2 \0\x03\x01 \x04\x0f\r\0\x04I xB\x03Ò\x03I\x01ë@\0pG\0 pGI) \08k\r\0\x03\x01\f \x0f\r\0(I'H\b`pG\x03\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§|\x17\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§|ÌLüÿ @!\0\x14(\x0f\r\0\x01)\x03ÑOôH\x13\x10"Úee÷\x01¾\x03\x01 8\x0f\r\0Á{9¹ø\x10\x06\x05Õ!ð \x01ø\x10\x01 pG\0 pG\x03\x01\x1eT\x0f\r\0Á{\0)\bÑø\x1d\x11\x01)\x04Ñ\x10ø\x1fAð \x01\x01ppG\x03\x01jn\x0f\r\0\x10µ\x04Fd÷øÔøÔ\0\x01!÷húÔøØ\0\x01!÷cú m\x0eJøÒ\x10\x01 \x13h@C\x13`\vJ\x13hC\x13` K\x1ahC\bF\x1a`F÷)ÿ F½è\x10@Oô¬qt÷\x18º\x04b\r\0,) \00) \04) \08) \0\x03\x01tÔ\x0f\r\0pµ\x04F®÷Äú\b±@&\0à\0&j÷Eÿ\x10¹j÷|ÿ\0³\0%ø'\01F\x03(\x1eÐ\f n÷ÿ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§:\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§yLüÿA!\0ø' ÄH\x01*ÂI\x02h\x02ê\x01\x02\x02`\x01h\x12ÐÀJ\x11C\x01`\x1d± {o÷èþ a F½èp@¤÷¼j÷ ù\x01%Ûç\r ßçAðqëç\x03\x01\x10D\x10\r\0¶I\bp¶I\x01 \bppG\x03\x01 \x02P\x10\r\0-éðA´M\x06F\fF)xÿ \x06ñ\x1c\a\x01)\x02Ñ8Fi÷òú¯I hBð\0R `®I¼±\x01,>Ð\x02,JÐ\x03,UÐ\x04,^Ð\x05,lÑø'\0\x01(hÐ0Fj÷7ý\0(cÐ0F½èðA¤÷H¼*x\x01*\x0eÑÿ(\fÐ xÁ±Àó\x03\x11\b)\x06Ñ\0ð\x0f\0\0ð¦úÀ²ÿ÷»ÿk÷Ïùx±o÷mú°B\vÑo÷°û@±½èðAo÷®¸I\x01ë\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§ \x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§?Lüÿ{B!\0\0\0héç0F½èðAkç x\0)2Ð)x\x01)/ÑÀó\x03\x11\b)+Ñ\0ð\x0f\0\x01!#à8Fi÷Ëù\x10±\x04 ¨÷ÃÿH\0x½èðA¨÷L¿)x\x01)\x17Ñÿ(\x15Ð\x7fH\0h½èðAÀ²}ç x\0)\fÐ)x\x01) ÑÀó\x03\x10\b(\x05Ñ\0!\bF½èðA\0ð0º½èð\x03\x01\x1el\x11\r\0\x10µ,"sItH÷ ý¯ò+\x11qH\x01aqI\b`\x10½\x03\x01r\x11\r\0-éðA\x03F\bFÿ)êÐ\0"ÿ&\0ñF\x01lM\x17F\x03ëC\x04Z)\vØbI xA±\0ðêù)h@ð\0\x01ë\x01qÔçßøtáoð\x18\f\x0eë\x01 h\fëA\x01I²C\x1a\0Õ\v\x1aÙ²±\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§Q\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§¤LüÿvC!\0B\x01Ø\x17F\x0eFR\x1cÒ²\x05*íÓ(h\0ë\0q¹ç\x03\x01 ô\x11\r\0JH\0xpG\x03\x01â\x02ú\x11\r\0-éðA\x05F@lq÷ù\x04\0®ÐøÐ\0\x01!÷þøÐ\0¤÷ ý\x05ñ\x1c\0\x01!\aFi÷3ú\x01!8Fi÷1ú\0!8Fi÷dùEH\0h eDH\0\x1d\0hCI¤øT\0AH h\f0Áó\x11øV\x10ø(\x10øW\x10\0h;N`c\x106®÷ù`±9H\x140\0hÀ\x05\aÕ0h c6\x1dhlq÷Uù®÷Ùù\x14"1F F£÷Eüà\0³añ±@\0¤øÆ\0øÐ\0o÷ý¡\x01%\0 \x1do÷úúOêP\0ÄøÌ\0A\x01\x19Õ´øÆ\x10ð\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§Y\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§LüÿqD!\0`°ûñò\x01û\x12\0¤øÄ\0\x02 \x16à\0!8Fi÷×ù\0!8Fi÷Õù\x01!8Fi÷\bù\0 9ç´øÆ\x10°ûñò\x01û\x12\0¤øÄ\0\0 øÔ\0àx\0¹åp\x01 )çÿÿ\0þ1\0\0\0\x01\x01¥\a \0|e\r\0$3 \0\0\x04 \04 !\02 \0<\x1d \02 \0¸£\b\08l\r\02 \02 \0\0 7\01\0\x03\x01\x0eX\x13\r\0\x14I\x13H\b`ÿ÷9»\x03\x01*b\x13\r\0\x10µ\x04F¦÷aý÷Ùù\x01( Ñÿ÷6û\0(\x05Сm F½è\x10@\0ðy¸\x10½\x03\x010\x13\r\0\x10µ\fF¦÷ þ\0,\bÑÿ÷%û\0(\x04Ð\x04H\x01h!ô\x11\x01`\x10½0b\r\0¸\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§£\r\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§¤NLüÿlE!\02 \0l1\0\x03\x01\f´\x13\r\0+I*H\b`pG\x03\x01B¼\x13\r\0\x10µ\x04F¬÷ãø°÷Òøh±÷©ù\x01( Ñÿ÷\x06û0±#Hm F½è\x10@\0ðI¸øJ\0\x04(\x04Ñ\x1fH\x01hAô\x11\x01`\x10½\x03\x01,ú\x13\r\0\x10µ\fF¬÷\x06ú\0,\fѰ÷±ø\0(\bÐÿ÷èú\0(\x04Ð\x15H\x01h!ô\x11\x01`\x10½\x03\x01Z"\x14\r\0\x10µ\x04FÀ°õ\0o Ñ¡÷Rø8±\x0eHá\0h°øp\0\aàà\x10½÷Æù@± Há\0\b\x1a¡BóÚ\bFñçàïç\b\r\0Ì2 \0üî \0l1\0Ô0 \0äW \0\x03\x01Ô\x01x\x14\r\0\x10µ\vF°\x04FøV\x10\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§«\x04\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§¬,LüÿgF!\0\x04ª\x03ñP\0q÷?ú)I xB$Ò("Ò'JA \0ð\x1f\0Rø! \x01#@\x1aB\x18Ð#JRø!\x10"|Á@\x01ð\x01\0 I\x01(&Ð\x15* h,Ð"ô\x02 `q÷\x7fù^[J\x01hH2\x11`\x11\x1d\b`\x18H\x01h\0@h\x01 {\x02©o÷wüiF\x02¨o÷Nü\b0(\x13Ò\x0fH\0\x1d\x01hAô\x11\x01`\x06°\x10½\x15* h\x02ÐBô\x02×çBð@\x02Ôç"ð@\x02Ñçn÷Åþ\0 ÷ûøëçK) \0(k\r\0\x18k\r\0h1\0p1\0\x03\x01@H\x15\r\0pµ\x05F\fF\b \0!÷\x0fü\0!\x04(\x04ÙøÐ \a\0Õ\0\x1f¢\a\aÐâC\a\x05Ñ\x03J\x12xB\0Ò\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§²Þ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§´\x02LüÿbG!\0\0¹\x01!\bFp½,4 \0\x03\x01H\x15\r\0+J\0!RhÁëÁ\x03\x02ë\x03ù\x180B\x0eܱÁëÁ\x03\x02ë\x02ù\x180\x12ù\x04,Ã\x1a\x10\x1aB\x04ÝI\x1e\x02àI\x1c\x0e)åÛ\x0e)\0Ñ\r!H²pG\x03\x01PÈ\x15\r\0ðµ\x1aO:xB\x1fÐÿ*\x01Ñ\0)^[Ð\x17L9p\0"ÀëÀ\x06xh\0ë\x03\x1dhu±Q±-hDø"P\0ë\0\0ë\0^[hÀi\x18`\x02àTø"\0(`R\x1c\x06*èÛð½\x03\x010\x14\x16\r\0\aI\0ð\x0f\0ÀëÀ\0Ih\x01ë\0\x05IÀi\0ë@\0\bDÐø\x02\0pGb\r\0dl\r\0p \0\x03\x01þ\x02@\x16\r\0-éÿO°ÿ!\0\x06I±ùIKxÊh\x02ë\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§ºí\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§¼\x16Lüÿ]H!\0\x03\x12\x12h\a\x1fÕ\fi\x12àõI\fh!h\a\vÔ\b*\x16ÒÂëÂ\x01\x01ë\x01\x04ëÁ\x01Ñøl\x13\a\fÕ\x04ò-\x14oð\x05\x01\x01ë\x10(\x04Àó\x10\0'\x01¶\x1duàþ \a°½èð1x\0)qÐH\x1c@EnÜpx\x16(aѶø\x02°\0"p\x1cK÷JÿF\x01ø,Q@ð !à\0-\0Ú\x1d%\x05ë \0\x14ø\x10 RE\x18Ñ\x06)±ÒI i\x01ë@\x01I\x1c\x05àÐI h\x01ë@\x01\x01õq\x04ë@\0°ø\a ZE\x04Ñ\x06"\x04p÷Âýð³ø,\x01m\x1e BØÑÀ²\0ë\0\x04ë@\x01\x04\x7f\x1c\x02hÁø\x01 ¡ø\x05\0ø,\x01\0ë\0\x04ø\x10 ø,\x01\0ë\0\x04ë@\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§Â¥\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§ÃéLüÿXI!\0\0 ø\a°ø,\x01\0ë\0\x04ë@\0ø ø,\x01@\x1cÀ²ø,\x01\x1e(\x02Ó\0 ø,\x01\x16ø\x01\v¨ë\0\x01¡ñ\x01\b\x06D¸ñ\x01\x0fܱ\0à\x01àÿ ç\x05ë \0\x04ë@\0BzJE\x02Ñè²\0æçø \x7f\x1câç\0rç\x03\x01Dº\x17\r\0-éðAL h¸¹§xæx¸\x01M\0ë\x06\x11\x01ò1\x11(Fs÷\vþ\x05ë\x10\x01\x1dÄé\x02Q\0ë\x06\x10\x01\x1d!aI\0ò1\x10\b`\x01 ½èð\x03\x01Zú\x17\r\00µKByÅÜhѲ\x04ë\x01\x11%±\r`\x05\r z\x04àOô\0E\r`\0%\rr\x04ë\x02\x11ÅzÍr\x02{ s\x02{\x01* Ѱø\r Â{Js\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§Ê}\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§Ë¸LüÿSJ!\0\x02|s°ø\x11\0È\x18x@\x1c\x18p0½\x03\x01ZP\x18\r\0ðµßøàáDy\0&Þø\f\0\0ë\x04\x10\x01h)±ø\0\x10I\x1eø\0\x10\x06`\0 \x01%\x11àÞø\b\x10\x05ú\x04÷\x01ë\x12\x13l;B\x06лC\x13d\x03Ñ\x16q xR\x1e p@\x1cÀ²ø\x02\x10BéÓð½\x03\x01ð\x01¦\x18\r\0-éÿOF\0$°F\x10\x06\x02Õ\x06 \0\x01àÍø\0\Iþ'\0&hºF-\x1d\x01 \0ú\x03û"à(xбºñý\x0f\vÐHE Ñø;\x10AE\x05Ñh\x1c\0\x02p÷Òü\b±@5\ràèk\x10ê\v\x0f\x02ÐOðý Aà7F,F\fàB\x01Ó7F,Fv\x1cö²FHxBØÓºñý\x0f1ÐBH\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§ÒP\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§ÓLüÿNK!\0xB-Òd³ø\0ø;ák\x19¹h\x01xI\x1c\x01pák`\x1cAê\v\x01ác\0\x02s÷fÿ\x02¸ñ\x02\x0f\x02ë \x01 иñ\x03\x0f\x06иñ\x05\x0f\aиñ\x06\x0f\x04Ð\bà\x04ñ\x11\0\0\x02à\x04ñ\x1e\0\0s÷MÿºFPF\x05°æ\x03\x01\x01\x19\r\0-éÿ_\0&F\x10\x06\x02ÕOð\x06\v\0àÃF#Iÿ'\0%hF$\x1d\x01 \0ú\x03ù\x1aà x¨±ÿ/\x13Ñ@E\x11Ñø;\x10\0B\fÑZF`\x1c\x01p÷_ü0¹àk\x10ê \x0f\x02Ð/F&F\x06à@4m\x1cí²ø\x02\0 BàÓø\x02\0QFB ÒN±ðk0ê \0ðc\x04Ñ0ph\x01xI\x1e\x01p\x04°8F½\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§Ú\x17\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§ÛSLüÿIL!\0èð\x03\x01X \x1a\r\0ðµ\x04M\0#\x01$ªh\x1fF\x12\x1d@\x1cà\0\0b\r\0\x1c4 \0l\r\0\03 \0ø;\x10B\fÑ\x11xQ±Ñk!B\aСCÑc\x04Ñ\x17p©h\x0exv\x1e\x0ep@2[\x1cÛ²©xBèÓð½\x03\x01Xt\x1a\r\0-éðGúOFAð\x06¼hOð\x01\b$\x1d\0%\x15àø;\0¹ x°B\x01Ð(\vÑzxák\bú\x02ð\x01B\x05Ð\x06"a\x1cHFp÷óû8±@4m\x1c¸x BæÓÿ ½èðè²ûç\x03\x01Î\x01È\x1a\r\0-éðCø\0°T\x1c\aF\x15F\x0eFéFAE\x19ÑOð\0\0JF\x0fà\x05ë\0\x01;\ø\x11À\x03ê\f\x03\x13T#\I|\x03ê\x01\x03#T\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§áÞ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§ã\x02LüÿDM!\0\0ñ\x01\0À²°BíÓ2F!FHF9à\x18ÒCFJF8F÷¶ü\0 JF à)\x18\x13\N|3@\x13T#\I|\v@#T@\x1cÀ²AF@EñÓ F!F\x1eà\vFJFAF F÷ü3F\x04ªAF\x05ñ\x11\0\0ð¥û\0 LF\x04¿K\bà:\)\ @\x1aT"\ @"T@\x1cÀ²°BôÓ¹I2FhFp÷û °½èð\x03\x01\x02^[\r\0-éó_F²H\0&7Fhø\0\0$\x1d\x03(\x03Ò\0 \x01F½èüø\x01\0Oð\x01\v\a(\x16Ð\bÜ ñ\x02\0\x05(fÒßè\0ð\f\f\x0e\x0e\x10\0\x14(\x06Ð\x15(\bÐ\x16(;Ð\x1f(YÑ\x01à\x02 \x02à\x04 \0à\x10 F\0 (à\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§é¶\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§êôLüÿ?N!\0Hh$\x1d\0%\x1cà!x¹±ø; \x01B\x12ÑBxák\vú\x02ð\x01B\fÐ ë\b\0\x1c"FQFÿ÷Qÿ ¹\vú\x05ð\x06CGêàw@4m\x1cí²HxBÞÓ\bë \0À²ø\0\x10F¡ë \x01AEÏÜ\x1fà\0%ßø\b\x17à!x±ø; \x01B\rÑø\x01 ák\vú\x02ð\x01B\x06Ð"F\x02! ñ\x02\0ÿ÷!ÿH±@4m\x1cí²ø\x02\x10BãÓ0F9Fç\vú\x05ðÁ\x17\x06C\x0fCöç\x03\x01"¨\x1c\r\0\vFÀó\x11mHÂh@x\x02ë\0\x10\0hÀ\a\x01Ð\x18FØæþ pG\x03\x01JÆ\x1c\r\0ðµfMF\0 ªhlx\x12\x1dOð\x01\x0e\x01F\x03F\x0eú\x04ö¯x\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§ñá\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§ó\x11Lüÿ:O!\0\x10à\x14x\±ø;@dE\aÑÕk5B\x04Ð\x0eú\x03ô CAêäq@2[\x1cÛ²»BìÓð½\x03\x01¬\x02\f\x1d\r\0-éøO\x0fFú!\x01ë\x10 E²\0 FF\x06FFOHOI\x1cFÀhIx\x02+\0ë\x01\x10\x02Ðþ*\x05Ð\bàþ*\x06Ñ\0h@\a\x01à\0h\0\a\0(\x02Ûþ ½èø\x18Fÿ÷¶ÿ\0F\bCfп\x1d0à8x³@\x1c¨B-Ü\x02,\x04Ð\x03,\aÐ\x02,\x15Ð\x1eàxx\x1e\x05(\aÙ\x0fàxx\x14(\x03Ð\x1f(\x01Ð\x15(\x12Ñ!F8Fÿ÷úþ@ê\b\bAê àxx\x16(\x06Ñ!F8Fÿ÷îþ\x06CAê \x17ø\x01\v)\x1aI\x1eM²\aD\x01-ÌÜ\x02,\x02Ð\x03,\bÐ\x1e\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM§ùÇ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM§û\aLüÿ5P!\0à#HÁh@x\x01ë\0\x10\0@\a\x06à\x1fHÁh@x\x01ë\0\x10\0\0\a\0(\rÚ\0+ê \0"ê\b\x01\x01C\x12Ð"ê\x06\0+ê \x01\bC\fÐ\rà\0 ê\v\0\bê\x02\x01\x01C\x04Ñ\x16@ ê\v\0\x06C\x01Ð\0 çÿ ç\x03\x01 4\x1e\r\0\x02#þ"hç\x03\x01 :\x1e\r\0\x03#þ"eç\x03\x01 \x01@\x1e\r\0-éðA\aNú"\x02ë\x10 Öé\x02Rsx@²\x02ë\x03\x12\x12hÒ\x06\x06Ôþ Éä\0\0b\r\0|l\r\0\x1d\x0eà!xq±J\x1cB\vÜbx\b* Ð *\bÐ@\x1a@\x1ed\x1c@²\fD\x01(îÜÿ ¯ä-\x1d\0'Oð\x01\b\x17à*x±ø;\0\x04(\x0eÑ x@\x1eB Üsxék\bú\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨\x01£\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨\x02åLüÿ0Q!\0\x03ð\x01B\x04С\x1ch\x1cp÷èù0±@5\x7f\x1cÿ²°xBäÓÜç8Fä\x03\x01¦\x02Ü\x1e\r\0-éøO\rFú!\x01ë\x10 OúúêHOð\0\a¹FÁh@x\x01ë\0\x10\0h\x06\x01Ôþ $ç\x05 ÿ÷ÝþF\0\bCrÐ\x1dTà(xè³@\x1cPERÜhxÿ(DÑÛHh$\x1d\0&9à x³ø;\x10\x05)0Ñ)xI\x1eB,Üø\x04\0±\0 ßøL\và!\x18Kx\x7f\x13@Kp)\x18x\x11@\bø\0\x10@\x1cÀ²!xBðØø\x01 ákOð\x01\b\bú\x02ð\x01B\rÐ"xÅI`\x1cp÷ ù ¹\bú\x06ð\aC\x01à\x16à\x01àIêày@4v\x1cö²ßøðÂø\x02\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨ Ê\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨ óLüÿ+R!\0\0B¿Ó\x15ø\x01\vªë\0\x01I\x1eOúú\x05Dºñ\x01\x0f§Ü³HÁh@x\x01ë\0\x10\0\x06\aÕ\0+ê\a\x01#ê \0\x01C\aÐ\bà\0\aê\v\a ê\x02\0\aC\x01Ð\0 ªæÿ ¨æ\x03\x01\x02þ\x1f\r\0-éøO\rFú!\x01ë\x10 G²Oð\0\x01¡HFFÁh@x\x01ë\0\x10\0h@\x06\x01Ôþ æ\x06 ÿ÷LþF\0\bCnÐ\x1dJà(xè³@\x1c¸BGÜhx\x16(<ÑHh$\x1d\0&/à xP³ø;\x10\x06)&Ñ)xI\x1eB"Üø\x04\0±\0 ßø(\và!\x18Kx\x7f\x13@Kp)\x18x\x11@\bø\0\x10@\x1cÀ²!xBðØø\x01 ák\x01 @\x01B\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨\x11\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨\x12ÄLüÿ&S!\0\x05Ð"x}I`\x1cp÷öø\x10³@4v\x1cö²ßøàÁ\0à\vàø\x02\0BÇÓ\x15ø\x01\v9\x1aI\x1eO²\x05D\x01/²ÜpHÁh@x\x01ë\0\x10\0@\x06\x0eÕ\0+ê \0#ê \x01\bC\x0eÐ\x0fà\x01 °@@ê Jêàzàç\0 ê\v\x01 ê\x03\0\x01C\x01Ð\0 \x1dæÿ ^[æ\x03\x01æ\x01\x18!\r\0-éð_F^JÀ²F\x01ð\x0f\x04PpÑh\0%\x01ë\0\x10.Fù\v0\x01hé³\0{0±\x02(\x02Ð\x01(\x02Ð\x02à\x02&\0à\x01&SHÐø\x03\0ù\x01\x01B=ÝF\b\x04>ÔYFPFÿ÷ý\aFÿ(3Ð\x01,3ÐYFPFÿ÷[þÿ(+Ð\x01#:FYFPFÿ÷Yúÿ(#Ðß\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨\x19l\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨\x1aLüÿ!T!\0ø\x04\0$\bñ\x14\bOFXø$ YFPFGÿ(\x1cйxB\aÒyxøh\0à\x0fà\0ë\x01\x10zx±d\x1cä²\x04,éÓyxøh\0ë\x01\x10z\x01(\x04Ð\x1d±\0 \x1eäþ(ûÐ0F\x1aäyxøh\0ë\x01\x10z\x01(òÐm\x1cí²ãç\x03\x01.ú!\r\0-éðA\0%\aFF,F$N\aàBF9F Fÿ÷ÿ\x05Cd\x1cä²ðxBôÓ(F\x1dæ\x03\x01$$"\r\0\x1fH\x10µ\0h\a\x01Õ¬÷ú\x19H\0y\0(\x03нè\x10@ÿ÷¼º\x10½\x03\x01:D"\r\0\x10µ\x14L h(±¡x\x04"\x02ë\x11s÷Ìøàh\x18±áx \x01s÷Æø i\x18±@ò-\x11s÷Àø\0 p`p q\x10\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨!8\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨"_Lüÿ\x1cU!\0½\x03\x016z"\r\0\aH\0y8¹\bH\0h\a\x05Õ\aH\0h\0h\b±\x01 pG\0 pGb\r\0|l\r\0 \0) \0\x1c4 \0\x03\x01>¬"\r\0pµ\x0eF\x05F\x14F³B\x15Ù\x04+\fÐÿ"\x10! F¢÷ùû2F)F\x04ñ\f\0½èp@s÷§º(x phx`pÿ àppp½\x03\x01Â\x02æ"\r\0-é÷O°\x04\0\x18дøP\x10´øN\0\r\x1aB\0Ù\x15F(D¤øN\0 l©F(D daj\x04ñ\x10\0Oð\0 \0Q¹÷\fú\x18±\0 \x05°½èð i`bÄø, Ôø$\x04ñU\vWà´øL\x10àj\x0e\x1a®B\0Ù.F¡i\bñ\f\a8D\vh2F\x03G\x03ø\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨)"\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨*dLüÿ\x17V!\0T\00±àj2FÁ\x19XF÷bþ\bàøU\0(±àj2FÁ\x19XF÷@þàj^[0Dàb´øL\x10B,Ñ@F÷Ëù\x04ñ\b\x01@F÷ÂùÄø, \0÷ÆùØ±Äø$ ]±´øN\0©ë\x05 ë\x05\0¤øN\0 l ë\x05\0 dài´øN hÙ±ÁË\x06\x18ÕÁó\x01\x03\x01+\x06Ð\bà i`bF\0-¥ÑìçB\x04Ù\a\bÑB\x05Ó!ð\x10\x01ÁhiG iÁAð\x10\x01Á F÷ËüHFç\0\0\x03\x01\x01$$\r\0-éøC\x04\0F\x17F\x1dF\rÐ`i\0(\vÐs÷\x0fø\x06Fà\x06\aÕ`i)F÷¨ÿ\x03à\0 ½\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨1J\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨2iLüÿ\x12W!\0èø\0 8Cø\0\0ø\x02P#h\x03"iF@FG\x01F`i*F÷dýaiÈi±øN h¡±ÁË\x06\x11ÕÁó\x01\x03\x01+\x02ÑB\x04Ù\a\bÑB\x05Ó!ð\x10\x01ÁhiG0Fr÷Ùÿ(FÍç\x03\x01^´$\r\0-éðA\x04\0\x0eF\x15F ÐàzIÀó\01ø\x10\0 õpaÿ9\x16Ðø$\0\x01(\x12Ñ`i±r÷»ÿ\aF`i)F÷bÿ`i*F1F÷¶ý8F½èðAr÷°¿0F½èðA\x11F÷×»\x03\x01º\x01\x0e%\r\0-éðA\x04\0ÀÀó\x06QÐ`i\0(NÐ0Fy÷~û\x05\0\x02ÑZ÷«û±_H\0ëÆ\aZ÷¥û8\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨9\r\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨:7Lüÿ\rX!\0³]H\0h\x10ô@\x0f`i°øL` Ðð.\x13Ù0F\x12à`i°øN\x10½èðA÷¬¼x.\x01Ù0F\0àx ¨B\vÒx.\x06Øx%\aàð ¨B\x04Òð.\x01Ù5F\0àð%`i\x0eà`i°øL`<.\x01Ù1F\0à<!©B\x04Ò<.\x01Ù5F\0à<%)F÷ ÿ`i*F9F½èðA÷¾¼½èð\x03\x01ü\x01Ä%\r\0-éðA\x05\0À:IÀó\x06Æë\x06\x10\0ë\x10\x01ë\aïÐhi\0(ìÐ0Fy÷ýú\x04\0çÐ/H\0\x1f\0ëÆ\x06Z÷Eû`³-H\0h\x10ô@\x0fhi°øLp\x03Ðð/\fÙ8F\vàx/\x01Ù8F\0àx B\vÒx/\x06Øx$\aàð B\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨@Ò\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨AúLüÿ\bY!\0\x04Òð/\x01Ù<F\0àð$hi!F÷·þhi"F1F÷\vý(F½èðAY÷Ë¿×øä\x10\x02\vÕ\0 \x01à2h@\x1c°ëT\x0fúÓ!ô\0\x10Çøä\0£çhi°øLp</\x01Ù9F\0à<!¡B\x04Ò</\x01Ù<F\0à<$!F÷þhi"F1F½èðA÷ݼ\0\0´1 \0\b\x105\0X\x1e \0¬u \0\x03\x01 ¼&\r\0\x10µk÷Mÿ\0(\x06Ð\x01!øí\x10½è\x10@k÷P¾\x10½\0\0\x03\x01\x02Ø&\r\0-éð_Ei°ø\x1eÀ\x04FµøL \0jFÌó\b\x16F\0(\x1cÐ2IßøÌ \x06OðÒ\x01 ÔÚø\003¹»\a[\x0f!ú\x03óÛC\a Ð\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨H¢\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨IËLüÿ\x03Z!\0»\a[\x0fÙ@\x01ð\x03\x01Oð\x01 \x02)\x03ÐEà\0 ½èð_êa?Ôx÷}ú\x10±»ñ\0\x0f\x1dи\x06\0Õv\x10\x1fIÁø°á\x1eJÁó\x01Q\@\x1cI\x0e`^[I ú\bð\b9\b` h\x02BüÑ jµøL \f0\x16I¢÷Íù\aà`i\0!°øL j\f0¢÷æù!jOô\0P`Úø\0\0\x18± jOôÀA`ø'ilµøL HF\x11Didºç)k\f0æç\0\0\b\x1e \0¤5 \0\01\0Ða\r\0\b1\0x1\0\x03\x018Ü'\r\0pµ\x05F\bF\x01&ø£\0µø\v@©z@ \0"F÷\x01ý\0( Ð@ B\0Ò\x04F*z!F0FM÷lø\x01 p½\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨Px\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨Q¤LüÿþZ!\0\x03\x01V\x10(\r\0\x10µ\x04F\0!\x13 \x7f÷ÿûþ÷Úø4H\0x\x01(\x01Ñ3I\bp3I\0 \bp3IÁé \0÷èùq÷kù\x18±½è\x10@÷¿\x01 Y÷ù´ø \0\0!0÷÷þ½è\x10@\x01ð\x0f¾\x03\x010b(\r\0\x10µ\x04F "U!\f 0÷\0ÿ\x01F\b0"hÀø\x02 bhÀø\x06 "B½è\x10@\bF0÷¾\x03\x01z(\r\0>µ\0ñ \x04\0 \0\x01\x02Ôø\x03\0\0Ôø\a\0\x01´ø\v\0ø\b\0\x15FhF÷±þ!{ \x06\x17Ô\x14(\x15Ó\x0fI " \x1dà\x1co÷åü\0(\fÐà\x1cp÷4ü÷\x15û ±÷;ûà\x1cÿ÷½ÿ÷où>½\x12 hq>½¶b\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨Xq\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨YLüÿù[!\0\r\0\x1e \0´b\r\0\x18A \0\x03\x01\x14\x04)\r\0|HhÂø\x06\x10ÀhÂø \0pG\x03\x01>\x14)\r\0pµyL\x0eF\0ñ \x05¡i1±°ø \0½èp@\f!0÷¾sHq÷ùú©÷búrH¥aÄé\x02\x04oHq÷öú\0 0pp½\x03\x01,N)\r\0pµ\x04F\rF\x16F ÷àþ(¹\0#\x1aF\x19F\x02 þ÷Hø2F)F F½èp@÷%½\x03\x01(v)\r\0pµ\0ñ \x04\x15F÷Výhy\0(\aÑ"\x1dáx½èp@\0#\x01 þ÷0¸p½\x03\x01¶\x02)\r\0-éüA\0ñ \x04\0&«÷bþ@¹WHDò\x10\x01\0h\bB\x04Ы÷þ\b±\f&}à´ø\x05\x10´ø\x03\0E÷pý \0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨`M\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨avLüÿô\!\0³a Íé\0\x01ã¢a E÷výȱa÷¯ÿÀ±\0 o÷\x15þ\aFÿ(\x14Ð¥÷0ù8Fo÷ý\x05F?Hq÷úb!(FE÷{ýày0±\x0fà\x12&Oà\r&Mà &Kà z øV\0Ôø \0(e´ø\r\0¥øT\0à{ øW\0 ¥øH\0`¥øJ\0øÒ\0¥÷«ü!\x01aA (àh(F¨÷\x11ÿ%Hq÷cú)F F÷\bû\0(&Ñ\x01 «÷åý8F«÷Þý´ø\x05\0 ð\x01\0«÷;þ´ø\x03\0 ð\x01\0«÷=þày«÷*þ\x19I\0 þ÷@ù\0!\bF«÷yýn÷ù\x15I\b` 1F½èüA0÷ë½\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨h \x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨iaLüÿï]!\0½èü\x03\x01LÌ*\r\0\x10µ\x04F«÷Ìý@±\0 «÷·ý½è\x10@ I\x10 þ÷"¹´ø \0½è\x10@\f!0÷©½\0\0\x10 \0ôï \0) \0c \x01\0) \0\ï \0\x144 \0\x03\x01j\x14+\r\0-éðA\x05F\0ñ \x04\x0eFFà\x1cp÷%ýбÁiÁóÄ\x01\x04)\x15Ð\b)\x13Ò\aF\0ñ(\x01p÷eý ±øi\x02 Ô8h÷ëù0±9h\v 0÷þ8hq÷*øBF1F(F½èðA|÷» ½èðA\x12!0÷½\x03\x016z+\r\0-éðA\x05F\x0eF\0ñ \x04\x17F\x03!p÷cý0±:F1F(F½èðA|÷®¼ ½èðA\x02!0÷y½\x03\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨oú\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨q;Lüÿê^!\0¬\x01¬+\r\0-éðG\x04F\rFþ÷\x01þOð\a \x01(\x04Ð)hø\x05½èð y\x12!÷O\x02(\bØ\x03Òby;xB\x03Ò(¹¢z\x01*\x02Ù(hAqìç.hßøÀðq y8±\x01(\x19Ð\x02!\0 «÷çý8x\x1aàêJ`y\x12h\x02ë\0\x10\0h\x18±)h\x17 HqÓçø\0\0:xBÞÒ Fþ÷æý\x02à Fþ÷\rþ9xø\0\0\b\x1a0r(h@y\0(¾Ñ yðq)hø\x01¸ç\x03\x01°\x01T,\r\0-éðA\x04F\rFþ÷ýOð\a\b\x01(GÑ y\x12'\x02(\bØ\x02Ò!{\x02)\x04ØÌJay\x12xB\x03Ó(hGq½èð.h(±\x01(\x13Ð\x02(\x1cÐwqõ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨wÜ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨y^[Lüÿå_!\0ç {\vF@ð\x02¡\x1d\0 þ÷þýþ($Ðý(\x11Ñ)h\x17 Hqåç {\vF@ð\x02¡\x1d\0 þ÷dþÿ(ÙÐ\x02à\0 þ÷¥þ(h@y\0(ÓÑ yðq)h´Hø\x01\0h³I\0x x\b\x1a0rÆç)hø\x05Âç\x03\x01þ\x01\0-\r\0-éðG\x04F\rF\0&þ÷VýOð\a \x01(mÑ y\x02(\x02Ò¡xÉ\x1eβOð\x12\bȱ\x02(\x13Ø¡x\x02)\x10Ó\x02(\x16ØJay\x12xB Ò\x02(\x0fÒ\x10.\x05Ø\x02.\vÐ\x04. Ð\x10.\aÐ)hø\x054çñ\aùÑv\bãç/h0±\x01(\x19Ð\x02(&Ðø\x05'çàxcy\x03(2F\x04ñ\x06\x01\aÐ\x03 þ÷ýþ(\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨\x7fï\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨²Lüÿà`!\01Ðý(\x02Ð^[à\x02 öç)h\x17 Hq\x12çàxcy\x03(2F\x04ñ\x06\x01\x05Ð\x03 þ÷ïýÿ(ÍÐ\bà\x02 øçàxay\x03(\x13Ð\x03 þ÷*þ(h@y\0(ÂÑ yøq)hwHø\x01\0hvI\0x x\b\x1a8rëæ\x02 êç)hø\x05åæ\x03\x01ø\x01ú-\r\0-éðA\x04F\rFþ÷Úü\a'\x01(mÑ#yOð\x12\b\x02+\aØ x\x03(\x04ÓcJay\x12xB\x03Ó)hø\x05+çÀ\x1e²àx.h\x06(\x03Ð\a(\x01Ðc±\0à#±\x01+!Ð\x02+2Ð<àÓ\a\x02Ðø\x05\x16çR\b\x05(\fÐ\vF\x06(\x04ñ\x06\x01\vÐ\x06 þ÷\x1cýþ(:Ðý(\x06Ð'à\vF¡\x1d\x04 ô\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨\x05\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨BLüÿÛa!\0ç\x05 òç)h\x17 Hqüæ\x05( Ð\vF\x06(\x04ñ\x06\x01 Ð\x06 þ÷yýÿ(ÀÐ\x10à\vF¡\x1d\x04 öç\x05 ôç\x05(\x03Ð\x06(\x03Ð\x06 \x02à\x04 \0à\x05 þ÷¬ý(h@y\0(Ñ yðq(h9IGp7H x\0h\0x\b\x1a0rÎæ(hGqËæ\x03\x01\x01î.\r\0pµ°\0ñ \x04Íø(Ð\0 \x05&ø\x05\0ø\x01`àxmF\b("Òßè\0ð\x04\r\x12\x17\x17\x1c\x1c\x1c)I y\bpø\a\0\x06 ø\x01\0\x16à © Fÿ÷<þ\x11à © Fÿ÷þ\fà © Fÿ÷Üþ\aà © Fÿ÷Tÿ\x02à\x12 ø\x05\0 \0) Ð F÷°ý Ay\x01±Fp¨B\x03Ñ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨Ü\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨\x1dLüÿÖb!\00÷Tû\f°p½\b80÷\aûùç\x03\x01N/\r\0\x10µ\x14FQ÷%ø\x0eI\bx\b±\rH\0 Hx\x01(\x03Ñàr\x03H\0x s\0 `s\x10½\0\0b\r\0b\r\0b\r\0b\r\0b\r\0b\r\0Ø\v!\0T) \0\x03\x01\x01Ì/\r\0-éðA\0ñ \x01\x05{@{Ny\x10rqÀóA\x01\x14F\0ð\x01\aÖq\x03)\x05Ð)\x06\x05Õ\x11 Pq½èð\x12 úç\x04-\x01ÒgI\x01àfI \x1d«\aOêÓl hÿ#\x03ú\fóC\0ú\fð\x10C`J\b`\x10hOê \x03Oð\x0f\x01\x01ú\x03ñ ê\x01\0\x10`ð\x01\x02Oð\0\x01(F÷Qú'±(F÷>úƲ\x03à1F(F÷*úæq\0 \0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨Ä\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨óLüÿÑc!\0`qÉç\x03\x01,b0\r\0pµ\0ñ \x05\0{\x02!\x14F±ëÐ\x0f\x02Ø0 Pqp½÷&úàqèx q\0 `qp½\x03\x01*0\r\0\x10µ\x04Fr÷äùEJÒø\0\x11\x14±Aô\0\x01\x01à!ô\0\x01Âø\0\x11½è\x10@r÷Ù¹\x03\x01N°0\r\0pµ\x04F\rFr÷Ðù<K\x01FÓø $±\x01,\x05Ð\x02,\x06Ð à"ð\x01\x02\x06àBð\x03\x02\x03à"ð\x02\0@ð\x02"ôp\x10\r±\0õ Ãø\0½èp@\bFr÷´¹\x03\x01,ú0\r\0\x10µ+L8±\0 _÷¢ü h@ð\x04\0 `\x10½ h ð\x04\0 `½è\x10@\0 _÷/½\x03\x01D"1\r\0\x10µ\x04F"H\x02xZ±\x01*\x17Ñ!F\x01 ÿ÷\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨©\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨ÔLüÿÌd!\0¼ÿOð\0\0T±]÷Ãú à!F\0 ÿ÷²ÿ F½è\x10@Òç]÷ãú F½è\x10@ç\x10½\x03\x01\x16b1\r\0\x14I\x02{È|bó\x10ÈtÀó\x10Öç\x03\x01\x14t1\r\0\x0fHÀ|Àó\x10q\0 PqpG\x03\x0181\r\0pµ 0\x14FÅxÃz\x01yB\x1d(Fý÷0ü\0 `qp½\0\0h\02\0\02\0\0 5\0\0\x105\0`, \0\x18A \0\x03\x01 \x01¸1\r\0pµ#LGòD\x03\x05F\x01FÂ\x1a hB0Ð\x06Ü¡õàA?9\x18Ð\x01)\x04Ñ\x15à>*\x1fм*\x17Ð-÷¿û\b!\x03 r÷Eø hr÷Üú(F÷íø½èp@\b!\x04 r÷9¸H÷þ½èp@÷̽\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨¦\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨§¹LüÿÇe!\0r÷Ëú½èp@A÷Ö¿ I i\0)\rнèp@\bG\bI\x02z\vx\x1a pr÷¹ú½èp@0÷z¹p½\0\0ð' \0È \0¤( \0\x03\x01$T2\r\0\x10µ\x01F\0$\x05H÷Yû ±\x01$Gò \0÷Nù F\x10½\f` \0\x03\x01¨\x01t2\r\0ðµ!L!K!hB\x18B\x02Ò\bD `ð½²ûóñ\x03û\x11 `\x05 ±ûð÷\x1aJPh\bDP`\x01 \x06F\x13h\x06ú\0ô#B\x03Ð\x13\x18\x1czå\x19\x1dr@\x1c\x11(óÓ\0 \x02ë\x03\x1c\x7f4±\B\x01Ø^\x01àd\x1a\@\x1c\b(ñÓ\vHÀ|@\aÑÔ H\0x\x18± H\x02 D\x02\bH\x02x\x11D\x01pð½\0\0Ô# \0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨®r\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨¯¬LüÿÂf!\0Hè\x01\0Ô` \0\x18A \0& \0& \0L# \0\x03\x01*\x183\r\0\x10µ\x04F\0mH±>J´ø\x10@òq#\x12xZCQCq÷+ÿ F½è\x10@L÷÷º\x03\x01¢\x01>3\r\0pµ\x04Fg÷Zû\x05F F÷Eø Fp÷xüp±ø£\0À\x06 ÕàiÀóÄ\0 (\x05Ñ F÷ðþ h`÷ÊùàiÀóÄ\x01\b)\x03Ó ðø\0h0àa FL÷5øái$HÁóÀ1Að\x0e\x01)sø¡\x10ish` H¨`)F FL÷Uø r÷Dù\x05\0\x0fÐ"F^[Iq÷ý\x1aH´ø\x10@òq"\0xPCAC(Fq÷Úþ%e\x01 p½\x03\x01XÜ3\r\0pµ\x05F\fF±ø\x03\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨¶O\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨·Lüÿ½g!\0\0\x02!p÷5ùx±Ðøä\x10Áó\x04! ) Ðay\x05ø¡\x1f\x16!ip½èp@\x05!s÷½(F½èp@\a"\x01!x÷S½71 \0«d\x06\0§d\x06\0Ñc\x06\0µb\r\0\x03\x01H04\r\0\x10µÁiÁóÀ1±±\fI\x02 \x0f*\x01Ð\v\x04\x0fÕ K\x11$[h^[{´ëS\x0f\x03Ð\x0f*\x06Ñ\x04\x04Õ\0h÷û\0 \x10½# \x10½\b\x1e \0¤# \0\x03\x01<t4\r\0\x10µ L ! H÷\x7fþ\bHq÷©þ Fg÷ÿ\b±÷ßø\x05I \b`\x10½\0\0ÈÙ \0` \0¨` \0ì1\0\x03\x01|¬4\r\0pµ\x04F\x06)\x03Ñøµ\0À\b\x01Ð\0 p½\x04"! F÷|ù\x14\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨¾'\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨¿bLüÿ¸h!\0M\x03\0\x04Ðhh\0{Àó\0\x02\x15ààiÀóÄ\x01\b)\vÑ\x0eI \x05\x11Õ\0\x04\x0fÔ hp÷óû^÷2ýH±hh\f#\0{Àó\0\x02\x17! Fg÷Ãú\x02à F÷·ù\x01 p½\0\0¤# \0\b\x1e \0\x03\x01\x0e$5\r\0\x11H\0!Àé\f\x11pG\x03\x01J.5\r\0pµ\0"\x0fM\x10F\x11FS#KC\x05ë\x03Üiæ\x02 Õø`\x04.\x06ÐÄóÄ\x04\b,\x02ѳød\0R\x1cI\x1c\v)êÛ\x01*\0Ð\0 p½\0\0\x18A \0hB \0\x03\x01 t5\r\0\x05H\x10µ{ ¹÷-û\b±\x02 \x10½\0 \x10½\0\0ø[ \0\x03\x01Î\x015\r\0pµ5M(h{m÷-ü)hÉnm÷±û)h1N1\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨Åù\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨Ç5Lüÿ³i!\0Køí ±øå ¹/LÑøÈ $h"B\x06Ðø@$\x06 Ô4x B\x06Ø)H*L\0h$h C\x02B\x01Ðx\0à\xøå\0\x18±\x18\ B\0Ù\x04F#H\0h\0\a\0ÕÜxÑøÀ\0@\x1c\x16Ð{m÷öû)hÑøÀ\x10m÷û^[I\0(\aÛ*hOðÿ0ÂøÀ\0? \bp\x03à\bxB\0Ò\x04Fpx@±E,\x06Ñ(hø¨\0L÷gü\0±\x0f$!F(hh÷þ\rH\0x ø4\0p½\x03\x01:Z6\r\0\fI\0ëÀ\0\x01ë\0pG\0\0ðn \0Ü\v!\00$ \0\0& \0´0 \0,$ \08\x1e \0\x18$ \0 $ \0xp \0\x03\x01H6\r\0pµ\x04F\rM\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨Íú\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨Ï'Lüÿ®j!\0m÷û²)m÷òûá°ëA\x0f\x04Ù {\x10¹¨|.(\x06Ðq t\x05H\0xøC\0p½øG\0 tp½\0\0[ \0ø0 \0\x03\x01RÔ6\r\0pµ'I%L x\0)\x1dÐ\b0\x01"á@#H\x11Cáø0\0.%±!I´ù\x1c\0 xB\x06Ü@BB\x03Üø6\0\0(\x05Ð F^÷tü\0(\0Ð¥tp½ ôç\x03\x01b"7\r\0pµ\x12L\x01"@á\x04ë@\0\x11Cá\0!A\x0fH.%ø0\0±\x0eI´ù\x1c\0 xB\x06Ü@BB\x03Üø6\0\0(\x05Ð F^÷Nü\0(\0Ð¥tp½ ôç\0\0[ \0\x1f# \0ø[ \0 # \0\x03\x01ä\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨ÕÐ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨ÖøLüÿ©k!\0\x017\r\0pµ\x04Fh÷¸ù\0&\x01%X±?H\0!\x06p F÷Uü F÷üø[Pp½ Fh÷û\0(ùÐ Fá÷Fü {m÷\x1cû¡im÷¡úá\x1eB\fØ F÷¡ú/I\b`/I\b`/H\x05`m÷óú.I\b`ø[\0±[÷2úI÷]þ\x01(\vÑ FZ÷Òþ8±øo\0 ±ønP F÷\x1cúø[`øk\0è¹ø(\0\x01(\rÐø$\0ø,\x10Àó\x02\0Áó\x02\x01B\x03Ñø)\0\x02(\vÐ FZ÷¯þ8±øo\0 ±ønP F÷ùù F½èp@÷µ»\x03\x01\x16`8\r\0\x10µ\x04F÷\x15ø F½è\x10@\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨Ý£\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨ÞÎLüÿ¤l!\0ðú¸\x03\x01\x16r8\r\0\x10µ÷\x16ù I\0 \bp I\b\x10½\x03\x0108\r\0 I\bH\b`pGü& \0\b' \0 \x1c \0\x1c \0¤\x1c \0\x1ac\r\0\x1cc\r\0¸b\r\0\x04' \0\x03\x01\f°8\r\01I0H\b`pG\x03\x01È\x01¸8\r\0-éðA\x04F-IøV\0 \x1fE\x18 Fh÷\x15ù\0&\0( F\x10Ðh÷ ú\x01'\b±/p\0à.p l÷Vþàl÷4þø[p½èðh÷Ûú°±ø[\0\x18¹ lø'\0P¹[÷¢ùI÷Íý\x01(\x02Ñ FZ÷Bþø[` F½èðAZ÷r¿ Fh÷¹ú\0(ÞÐ(x±ø[\0\x18¹ lø'\0H¹[÷ùI\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨å\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨æ°Lüÿm!\0÷¯ý\x01(\x02Ñ FZ÷$þ.p FZ÷Wÿ l÷\x17þàl½èðA÷ó½\0\0èb\r\0\f' \0\x03\x01Ê\x01|9\r\0ðµZH\x02x\x02*\Ñ\x04!\0$OôÊ\0\x01dÀø°AI\x1c\b)ùÓÁhAð\x02\x01Á`\x04dÐø\x04RPI\x0f'KxOê\f\vy\aú\fö\0@>CµCxOy\x06ú\fö@>C.C\x04dÀø\0bÃh#ð\x02\x03Ã`\vx\b\x05dFl\aí\x0eOðÿ\f\fú\x05÷¾C\x11'¯@7CGd\x04dBê\x03\x13CôcÀø\x182Éx\b\x03dEl\aÛ\x0e\fú\x03ü\x02&%ê\f\x05@.CFd\x04dBê\x01\x11Aô1Àø\x1c\x12Oð\x01\x11Àø \x12\x01!Àø$\x12\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨í´\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨îíLüÿn!\0ð½\x03\x01\x18B:\r\0\x10µ÷oûÿ÷ÿ'H\0!q\x01\x10½\x03\x01\x14V:\r\0&H\0h\0(\x02Яò\x1d\x01\x01`pG\x03\x01\x01f:\r\0pµ@l\0(;Ðùß\0\x7f(7Ð\x1dL\x1eK\x01%áyI\x1c\x01ð\x0f\x02âq!Fù\0` °B\x03Úù\x010B\x04Ú\x05ú\x02ðC!\x03à\x05ú\x02ð\bC I÷\aý¡y!±\x04(\x05Ø\0 q\x02à\b(\0Ó¥q\fJ\x10hÀó\x05A ) Ñ¡y\x01)\x06Ñ\bI@ô\0\x10`\b`PhH`p½{\x1c \0\x14c\r\0\x04\x1d \0Þ\v!\0¼\x1c \0`\x01e\0\x03\x01^\0;\r\0[HOôq\0h\x01`\x01`YHZIh cjcXKÂh\x1a`\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨õÒ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨÷\fLüÿo!\0XK\x02i\x1a`WKBi\x1a`WKi\x1a`VKÂi\x1a`VK\x02j\x1a`Bj `TI@h\b`TH\x01i!ð\x01\x01\x01a\x01h!ð\x01\x01\x01`pG\x03\x01Ú\x01Z;\r\0pµ\x05F®÷WùLH\0hCL\0ð?\0 cIH88\0hÀó \x01J\x11!ð \0àb\x01*\x04Ñð\x1f\0@\x1c@Bàb>HP0\0hÀó\x030Â\x10 ð\b\x01ac\x01*\x04Ñð\a\0@\x1c@B`c\x1cè²@ð\x011H¸8÷÷ÿ/I\x01 \b`,H\x01kAðÏ\x01\x01cOð\x0f\x01cOð\x1c\x01\x01`/H\x01iAð\x01\x01\x01a\x01hAð\x01\x01\x01`$IGòÁ\0\b`#IOôÀ@\b`"H\x01hKöÿr\x01ê\x02\x01"hAê1\x01`\x1f\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM¨ý\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM¨þðLüÿp!\0H\x01h!J!ð\x7f\x01\x12hAê\x02\x01Að@\x01\x01`\x19IOôÅ@\b`p½\x03\x01\x060<\r\0pG\x03\x01r2<\r\0\x11I k\x0fH`\x10J\x12hÂ`kb\x0eJ\x12h\x02a\x0eJ\x12hBa\rJ\x12ha\rJ\x12hÂa\fJ\x12h\x02b hAb\vI hA`pG\0\0Ð^[ \0$c\r\0È\0d\0¼\x01`\0`\x04A\0ü\x04A\0è\x06A\0X\x04A\0(\x04A\0ä\x06A\0`\x01e\0à\v!\0\x03\x01: <\r\0øJÿ(\x02Ü2ø\x10\0pGÿ!ûññd#XCÁë\x01#ûóð²øÈ02ø\x10\02ø\x11\x10À\x1a²øþ1\x19D\bDpG\x03\x01 \x01Ö<\r\0-éðA\0!êK F\bF\x0eFOô\0GèM\x1ch\bà/\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©\x05n\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©\x06¥Lüÿq!\0`+h.`\x04\f\x1aD\0Ñ@\x1cI\x1c¡BôÓ B\x03Ò \x1a²ûðð\0à\0 OôzqHC^[!°ûñð@\x1d !ûñðÿ÷»ÿ õ\0@ õâP\0ë\0Oê\0Bò\x10qûñðÓI h ë\x01\x01ÒH\0hÀñ\v\0\0ë@\0\bDÏI h ë\x01\0ÎI h@\x18\x01Õ@B@B@²½èð\x03\x018r=\r\0pµ\x04F\x04ñ(\x01ø4\0\rF÷ëÿ\x06Fÿ÷¦ÿ\x01\0 Ð0F÷+øv\x1c)Fð²÷Þÿø4\0\0 p½\x03\x01*¦=\r\0\x10µ\x04F½H\0h\x10ðþ\x0f лH÷0ü\x18±DCO ´ûðô\x04¹\x01$ F\x10½\x03\x01\x1aÌ=\r\0¶H\x10µ@ÿ÷è\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©\rK\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©\x0eLüÿr!\0ÿ³I\0P9¡øÀ\x02\x10½\x03\x01xâ=\r\0\x10µk÷¨ÿ8¹c÷@ø ¹÷[ø\b¹÷=ûªLP<´øÂ\x020± ñ\x01\0\0\x04\0\f¤øÂ\x02 ЦHø;\0@\a^[Õ L h@\b\x0eÑ à H\0xÿ÷¼ÿ¤øÂ\x02½è\x10@÷Ù¾H\0@\a\bÕ\x01"\x04!\0 ÷¤þ h@ð\x01\0 `\x10½\x03\x01zV>\r\0pµ\0%k÷mÿLP<h±\x14 ÷Ðû÷éûH!m\x01%\x01`amA`´øX\x10\x01b÷õÿ\x10±÷ ý\0à=±\x02 ÷Ëÿøï\0\b±÷ÃúHø;\0@\a\x10Õ}L h@\b\x03Ñ\x7fH\0@\a\bÕ\x01"\x04!\0 ÷iþ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©\x15M\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©\x16pLüÿs!\0 h@ð\x01\0 `p½\x03\x01:Ì>\r\0pµxHtLuM\0¤ñP\x04@\a\x01Õ\x01 \x03àhÿ÷_ÿ\0¤øÀ\x02lH\0h@\b\x02Ð(xÿ÷Uÿ¤øÂ\x02p½\x03\x01\x06\x02?\r\0pG\x03\x01Ä\x03\x04?\r\0-éÿG\0'\x04F>Fg÷Áÿ\0(tÐl÷ü\0(pÑø2\0\x02(lÐdHø0\0 ±÷;ý°õ\x1c\x7fcÙ {\x02©l÷Pÿ\x02^M\x10ð\x03\0\x06Ð\x01(\aÐ\x02(\x0eÐ\x03(\x17Ñ\x02à\x01!\x02\rà(h\x03@\x1dB\x06Ò\x02Íé\0\x10 à\x02@\x1c\x03à\x02!\x02l÷ü\0(h@\x1d\x01 {\x02«\x02FiFl÷ÙýhFl÷Øþ\x05Fßøèø2\0ßø\f©\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©\x1dV\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©\x1eLüÿ|t!\0ñ\x02 h±ø\x02\x10ø\0\0\bD¨B\x02صûððDz\0%Oð\x02 Fà\x01 ø2\0ø4\0÷Sÿ÷ÿø\x02\0ø\x03 ø\0\x10\x18\x01&\vD«BçÒ+\x1a\vD\x1aD\bD²ûðð@\x1cÞç>àø4\0\x04ñ(\x01÷¦þ\x1cÀ²@ð\x01*H÷ÈýF±ø\x02\x10ø\x03\0\bDI÷qú\0&\x03àø\x02\0I÷kú F÷Üþø4\0N(\x05Ùø2 F\x7f÷¾ý\x03àm\x1cí²½BÓÓø<\0@\x1cÀ²ø<\0N( Ùø2\0\x01(\x06Ñø2 F\x7f÷¨ý÷¢ÿ½èÿvc\r\0ä\v!\0è\x06A\0Pc\r\0à\v!\0Tc\r\0Xc\r\0V\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©%(\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©&pLüÿwu!\0 \0|Ô \0¨\x1d \0\x18A \0´\x1d \0Ý~ \0ø[ \0D+ \0\x04\x01`\0\x03\x01PÄ@\r\0|µ\0%\x04F\x02)\x0fÐ\x04)\x1dÑø2\0\0(\x19ÐYN {iFl÷~þ\0ÀC\a\x06Ð àUH\0hÀó\x02\x10 s\aà\x011hBìØ÷\x1eÿ÷Qÿø2P|½\x03\x01\x01\x10A\r\0\x10µML\0 ø<\0ø@\0\b¹i÷ûà\b±@\x1eài÷ÿj÷ÍøEH\x7f÷ÿú ¹CH\0h\0\x1fj÷WøBH\x7f÷öú8¹ø;\0\x01(\x03Øi÷4þi÷¦ÿ÷Vû\0 ÷\rü hP±\x01|\x04)\aÑ8IIx!¹ø;\x10 ¹ÿ÷Áþø;\0\x01(\x05Ðh÷Iþ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©-A\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©.wLüÿrv!\0I÷ ù\x01 \x10½i÷Ðÿ\0(÷ÑI÷@üôç\x03\x01À\x01¤A\r\0pµ(L\x01 ø<\0i÷Gû\0%Oöÿp%aà¥ai÷Nÿj÷ø!H\x7f÷¶ú ¹\x1fH\0h\0\x1fj÷\x0eøi÷Ùÿ\x1eHå`\x7f÷ªú\b¹i÷þh÷Óþ\x01 ÷Çû h8±\x01|\x04)\x04Ñ\x15IIx ¹ÿ÷~þ\x14H\0x\b±ü÷¡û\x01 h÷îú\x18¹\rH\x7f÷ú(±h÷ýýI÷Ôø\x01 p½\x04H\x01"\x11F\x03h\x10F[\x1dh÷áúòçD+ \0$1\0\0? \0D\x1c \0<\x1c \0¨\x1d \04\x1c \0É" \0\x03\x01ø\x03`B\r\0-éøOO\x05FOð\0\b8h ¹(x\0(~Ñp÷\x19\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©5 \x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©6FLüÿmw!\0úq÷îø\0zH"!\x01`OôF\x19\0&Éø\0b\x04!Éø\x04\x12OôH\x14&fÉø\0`2 I÷4ùrHàeOôE\x11Oð\vÁø\f°È I÷)ù(xOôÊ OôÀ\x04à±Äø¼aiH\x06`Ôøü\x02 ð\f\0Äøü\x028hH± õ°p\x01i!ð\x01\x01\x01a\x01h!ð\x01\x01\x01`\0q÷´ø(x4Fгà\0 ÷Fþ\x01! õ°p9`\x02iBð\x01\x02\x02a\x02hBð\x01\x02\x02`HFÉø\0bÉø\x04²êx\0*Ôøü"\x02ÐBð\f\x02\x03à"ð\f\x02Bð\b\x02Äøü"KJF\x11`ixIJ\x1e\b2\x11`ix\x1e\x12\x1f\x11`FI\x01`\0 OôzsOôE\x12\x01F@\x1cB\x01à\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©<Ö\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©=ÿLüÿhx!\0kà\x0eà\x02ØÑh \x06õÕOôH\x10Oô\01\x01fÈ I÷¿øÄø¼®ç಩x@ð\x01\0`ó\a\x04\x06)\x19Òßè\x01ð\x03\a\x0e'*. ð\x1c\0\x180\x0eàÄó\a @ð\x01\0`ó\x0f$ àÄó\a!Að\x01\x01aó\x0f$@ð\x02\0`ó\a\x04éxÄó\a aó\0`ó\x0f$(y\a(\x0fØ\0\x06\r@B@²\x11à ðà\0ëç ðà\0 0çç ðà\0 0ãç\b(\x02Ð (\x05Ð\bàù\x05\0~÷Zú\x02à¨y}÷îþF\x02!@F¥÷ý\bðÿ\x01\x11H÷¸û\vH\x04`(x ±8h\x10±o÷«ÿ>`\x01 ½èø\x03\x010TD\r\0\x10µ\x14F\f0ÿ÷\x01ÿ\0(\x01Ñ\x12 `q\x10½\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©D¦\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©E¥Lüÿcy!\0xe\r\0À\x04A\0\0\x02\f\0\x101\0\x01\0\0\f\x01`\0\x03\x01$D\r\0\x10µ ÷¾ý ÷¯ý\x04H\x01hAð\x01\x01\x01`½è\x10@ ÷a½\x04, \0\x03\x01¸\x01 D\r\0-éðA\rF&IßøÀ\0#x\x1cø\x03@¡B\x03Ø\\x1e\x06+\x04Ò\x06à[\x1cÛ²\x06+óÓ\x05#\x04$\x02à\v¹\x01#\0$\x1cN\x05ë \x05±^[HÃë\x03\x17\aD/D\x17Dø¢p÷`Äë\x04\x178D(D\x10Dø¢\0\x11à\x14H\x03ë\a\0ëÇ\a/D\x17Dømq÷`\x04ë\a\0ëÇ\0(D\x10Døm\x01°`\x1cø\x03\0p`\x1cø\x04\00`\x05HQ÷ýÿ(\0Ùÿ ½èð½\x1e \0\x10\x13 \0,Q \0ë\x15 \0\x16\x13 \0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©Lq\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©MõLüÿ^z!\0\x03\x01Â\x04TE\r\0-éðO°\0&\x04F\x05øÒ\0ü÷ÎüF÷OûøÒp\x04©\x1e78F_÷Lúßø¼´\x05\0 Ð\x04\0ë@\x01Ûø\0\0\0ë\0\x06`F``\x03à\x04¨_÷&úð³\b ø \0Oð\x01 ø\v ø\apøÐ\0ø\0`ø\b\0ø\x02`_÷!ûø \0´øL\0Oð\x02 @\x1c ð\x01\0²ø\x04\0\x02(\x01Òø\x04´øN\0½ø\x04\x10@\x1c ð\x01\0B\x01Ù@\x1a\x05øÒ\0¥÷Nû\x05oð\x01\x02\bD\x05´øH\x10\x02ëA\x02B\x03ØH\0\0à\x12à\x1eø\x06\0øÑ\0°±\0-~дøÈ\0ø\0\0´øÊ\0ø\x02\0øÕ\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©T±\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©UÖLüÿY{!\0à\0#k"@ò¡1ûHp÷Dù\a°½èð\x01'Y÷³ÿ\x18±^÷ø\0¹\0'´øD\0@\x05\x05Õ¸ø\0\0\x10±ø\x02\0 à´øJ\0;FB\0´øH\0A\0hF_÷û½ø\x02\0\x01( ÙéIIh@\x1e±ûðò\0û\x12\x10 ð\x01\0ø\0\0øÒ\0\x05ªiF¥÷\x17ûH»´øD\0@\x05\x19Õ¸ø\0\0°±JF!FhFÍø\f_÷üйRF!FhFÍø\f _÷{ü¹2F!FhF\x03_÷tüX¹\x03©hF_÷:û0¹ø\0`´øJ\0@\0ø\x02\0½ø\0\0]±¤øÈ\0½ø\x02\0¤øÊ\0ø \0øÕ\0\x17à à¤øÄ\0½ø\x02\0¤øÆ\0ø \0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©\\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©]»LüÿT|!\0øÔ\0\và´øÄ\0ø\0\0´øÆ\0ø\x02\0øÔ\0ø \0\x04Ûø\0\x10\0ë@\x02\x01ë\0\0\x02`\x01B`\x02`\0-\x7fôk¯\x04\0ë@\0\x01ë\0yøÖ\0aç\x03\x01¼\x02G\r\0-éðO\x05FøÒ\0°FFF\x1e0\x04©_÷4ù\0(xÐ÷,ú\x04\0ë@\x01 H\0h\0ë\x01\bh\0Hh\x01h\x02\fh\x06Hh\ah\b\0 \b`H``\x05©hF_÷®þµøN µøL\x10hF`÷Ïù\x02%Oð\0 \fOF ºø\x02\0 @\x04\0\fø\x02\0B\x05Ñ\x05 B\x02ÒOð\0 @à\0&¸ñ\0\x0f\x01Ð\0$\x1eà\x03©hF_÷¡\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©d\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©f\x14LüÿO}!\0ú\x01(\x1aÑ\x03¨B\x17ÑOð\x01 )à\vë\0½ø\x02\x10\0h°ûñò\x01û\x12\0ø\0\0\x03©hF_÷qþ\x03¨BêÐd\x1cDEêÓ½ø\x02\0\x1e²ø\x02\0ºø\0\x10°ëA\x0f\x02Óv\x1c\f.ËÓ\x7f\x1cm\x1e\x03/·Ó¹ñ\0\x0f\x04Ð\x14\x03\x01`\x03à\x10à\x14\0 \b`\x04\0ë@\x01bH\0h\0ë\0\x06\x01`\aA`\b`HF\v°Ææ\x03\x01Ö\x03ÊH\r\0pµ°\x04F÷ù\0% h\x03©_÷ø ±ài\0\x04\x06Õ\x01%\x04à\x03¨_÷~ø\0(zÐTH\0x\x18±ài\0\x04\0Õ\x01%\x04 ø \0\x01 ø\v\0 hø\a\0 ho÷áùø\b\0´ø°\0ø\0\0´ø\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©m4\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©n[LüÿJ~!\0²\0ø\x02\0ø´\0ø \0!FhF^÷ëý½ø\0\x10BNÈ\a\x05ѽø\x02\0±\x1eB\bÝOð\0\0\0-FÑø\0\0½ø\x02\0 ±\r¹ðxè³\x01%à7H\0x(¹´øª\0´ø¨P¨B\x04Ñ´ø¨\0ø\x02\0,à0x8±ài\0\x04\x04Ôø\x02P¤ø²P'à´ø¼\0\x10± B\0Ù\x05Fpx±ài\0\x04\x0eÕð B\vÙ^÷/þ@B\0ë\0´øª\x10\x05ë@\0B\0Ò\x05F´øª\x10\x01#*FhF_÷ëù½ø\x02\0\x01à\x02àUà¤ø²\0\x04©hF_÷Àù\x05\0Mаx\x02-\x03Ðб\x01-%Ð3àh±ái \x04 Ô´ø¬\x10B\x06Ò´ø²\x10òB\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©u\0\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©v-LüÿE\x7f!\0Ù¤ø¬\0½ø\0\0¤ø°\0ø \0ø´\0^[à\x1aàP1 \0\a\0\x02\0\0 2\0G1 \0è\v!\0I1 \0ái \x04\vÔ´ø¬\x10B\aÒ´ø²\x10òB\x02Ù¤ø¬\0\x02%'I\x03\0" h\0ë@\0\x01ë\0\0\x01`\x01A`\x02`\x04! F÷'ù(F\x06°p½\x03\x01\x1eJ\r\0\x1dJ\x03F\bF\x11y\0)\x05ÐB\x03ÙÒB\0Ò\bFpG\x03\x01j¶J\r\0\x10µ\x04F\x10\0\x01Ñ´øª\0\x15J\x12y\0*!Ð\x12JRyB\x1dÓbk\a\x01Õ\x05#\x04àÒ\a\x01Ð\x03#\0à\x01#´øf \x14\v\x01Ð[\x1d\x05à\x12ôpo\x01ÐÛ\x1c\0à[\x1cB\0Ó\x1eB\0Ù\x13F\x10½\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©}\a\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©~LLüÿ@!\0P1 \0è\v!\0Ô\x1d \0\x03\x01\x03\x1cK\r\0-éøO\0$&FOð\x01 ÷¤þ\x05FL÷ËýO8h\0ðà\x01H\x02x\x02ð\x1f\x02\x11C9`9\x1f hCx\x02ðà\x02\x03ð\x1f\x03\x1aC `:\x1d\x13hø\x02À\x03ðà\x03\fð\x1f\fCê\f\x03\x13`J\x13hø\x03À\x03ðà\x03\fð\x1f\fCê\f\x03\x13`ßø\0¢ ñ\b Úø\0À\0y\fðà\f\0ð\x1f\0Lê\0\fÊø\0À8hßøØÁ\0ð\x1f\0\fñT\f\fñ\x04\b\x03(\x03Ó\x1eÌø\0\0\x04à\0#Ìø\00\x18±@\x1eÈø\0\0\x01àÈø\00í³\x04-IÐ\x10h\0ð\x1f\0\b0Úø\0 `ó\x04\x02Êø\0 fK@3\x1ah\0ð\x10\0"ð\x10\x02\x02C\x1a`E³\x03\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©Ô\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM© ¹Lüÿ;!\0-7Ð\bh\x04-\0Ð\x1e8`0÷ ü\0(>ÐjF\x02!n 0÷ëû½ø\0\0Á²Aê\x10 \x01\x06\x01ÕOðÿ9\0ð\x7f\0\0û ð@²\0()ÐRJ\x02ë\x01ù\00B\x1aÜ\x01à\fà\x0fàù\x01\x10B\x13Ým±\x04-\vÐ\x02ë\0ù\x02`\x0fà\x10h\0ð\x1f\0µç\bh@\x1eÈç\x02ë\0ù\x03`\x03àd\x1cä² ,ÚÓ8h0DÀ²8`½èø\x03\x01\x01L\r\0pµS÷}ù\x04FS÷\x7fù\x05FS÷ù°ù\x18\x10°ù\x1a iCOê!\x01ëÂ\x11Oêár\x01ëQOê¡! ²Oêár\x01ëRaÉ\x11\0Õ\0!\x1f)\0Ý\x1f!(JQq°ù\x14\x10°ù\x16\0aCOê!\x01ëÀ\x10\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©9\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©sLüÿ6!\0Oêàq\0ëPOê \0²Oêàq\0ëQ`À\x11\0Õ\0 \x0f(\0Ý\x0f qp½\x03\x01\x01\x1cM\r\0\x10µÿ÷¼ÿ^[J\x10h\x17K\0ðÃ\x04ù\x06\x10\x01ð\x0f\0Dê\x04\x14`\x15J`ó\x1f\x11:\x11`\x13J\x11h\x01ðà\x04Yy\x01ð\x1f\x01\fC\x14`\x12h\x02ðà\x02 C\rI \x1d ` IT9 h\x02ðð\x02\x02C `\aJ`2\x11h`ó\x1f\x11\x11`\x10½\x10\x04`\0\a \0\0\a`\0ð\v!\0\x147B\0\x106B\0\x03\x01\x1aM\r\04H\x01h4H\x01`4I hA`4IIh`pG\x03\x01\x1a®M\r\03H\x01h/H\x01`2I hA`.I h`pG\x03\x01\x01ÄM\r\0pµ/H\x06&\0%h.L\x01|"\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©>\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©eLüÿ1!\0).Ð\bÜ\x01)\x10Ð\x06)\x19Ð\x10)%Ð!)\x06Ñ'à()\x17Ð*)^[Ð+)\x1cÐ%`½èp@×çø©\0\x1càÿ÷Èÿ&`p½ÿ÷Ïÿ%`p½ø9\0\x03(÷Ñòç@Cò\x061\bBñÐìçø`\0\x06à@jäçøe\0\x01àøY\0\x01(äÑßç\x03\x01\x16DN\r\0\x10µ ÷KùQ÷ø½è\x10@G÷ º\x03\x01>VN\r\0\x10µ\fL x\x10±\x01 G÷'ü\0 p\x10½\0\0\f\b \0h\x01`\0\x14\b \0\x14\f!\0\b\b \0\x10\b \0\0? \0d\bd\0|e\r\0\x03\x01\x16N\r\0\x10µÈJÈIÉHP÷HÿÈI\bp\x10½\x03\x01\x16¢N\r\0ÅIÇHÜ9È`ÇI\0õ`\b`\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©\x02\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©DLüÿ,!\0pG\x03\x01,´N\r\0ÅJÆK\x01(\x03Ð\x02( Ñ\x18\x06à\x10h\x18Hx\x01(\x03ÐCö\x02\x10\x10`pGCö\x0e\x10úç\x03\x01HÜN\r\0\x10µ»J¼L\b2@ö¢c\x01(\x03Ð\x02(\x12Ñ \x0fà\x10h² Ix\x01)\vÐIÜ9ÉÁõQ²aó\x1f\x10@ð\b\0\x10`\x10½\x10hcó\x1f\x10÷ç\x03\x01p O\r\0pµ¤J¤K©L\x12xÜ;\x02ë\x02\x03ëÂ\x02¨MR}<¨NOôÀ\x03\x01( Ð\x02(\x06ÑHx\x01(\x1aÐ0 `\x01 X`p½ h²0Óø\x04a.`Ix\x01) ÐHòÿ\x01\b@\x02ð\x7f\x01@ê\x01 `\0 X`Ãø\x04!p½(hÃø\x04\x01p½\x03\x01<O\r\0\x10µI\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©¤\x05\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©¥£Lüÿ' !\0KJL\x01(\x06Ð\x02(\x03Ñ\x18h\b` h\x10`\x10½\bh\x18`\x10h `\bh ð?\0@ðH\0\b`\x10h ð\x02\0ïç\x03\x01$ÄO\r\0JOôÀ\x01\x01(\x04Ð\x02(\x01Ñ\x10hapGi\x10`i ð\x02\0÷ç\x03\x01FäO\r\0OôÀ\x02\x01(\x06Ð\x02(\x14ÑÒøü\x02 ð\f\0\ràHx\x01(\rÐ\0( Ñx\x01(\bÐÒøü\x02 ð\f\0@ð\b\0Âøü\x02pGÒøü\x02@ð\f\0÷ç\x03\x010&P\r\0iJrK\x182\x01(\x03Ð\x02( Ñ\x18h\aà\x10h\x18`Hx\x01(\x10h\x03Ð@ô@\x10`pG ô@úç\x03\x010RP\r\0iKiJ\x01(\x03Ð\x02( Ñ\x18h\aà\x10h\x18`Hx\x01(\x10h\x03Ð@ô\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©¬g\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©¢Lüÿ"!\0`\x10`pGOöÿ1\b@ùç\x03\x01$~P\r\0ZI_J\x1c9\x01(\x04Ð\x02(\x01Ñ\x10h\b`pG\bh\x10`\bh\0ð\x03\0÷ç\x03\x01\x01P\r\0-éðAXOUN\x01(\x18Ð\x02(\x14Ñ0h9h ô\0p!ô\0Q@ôtAôE4`=`2 o÷ÿ$ôp%ôA0`9`½èðHx\x01(\x16Ð0h9h ô\0p@ôp!ô\0QAôA0`9`@ô\0pAô\0Q0`9`½èðAÈ o÷s¿Oô@8`0hOöÿA\b@0`OôÀ@8`0h²@ô@p0`Òç\x03\x01\2Q\r\00µ%J%K3M4L|:`3\x01( Ð\x02(\x06ÑHx\x01(\x03Ñ(h\x10` h\x18\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©´v\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©¶\x16Lüÿ\x1d!\0`0½\x10h(`\x18h `Hx\x01(÷Ñ\x13H\x13LÉx\0xÜ<\0ë\0\x04ëÀ\0)±\x01)\x03Ð\x10`\0 æçÀúç\x03\x01\x01Q\r\0\x1eJ Kt:\x01(\x03Ð\x02( Ñ\x18\x06à\x10h\x18Hx\x01(\x03ÐOô\0`\x10`pG% ûç\0\0 \x1e \0,\x11 \00h\r\0´+ \0e\r\0¼+ \0¬\x06A\0(\x10 \0&\x10 \0,\x10 \0$\x10 \0Ü\x04`\0D\x10 \0d\x06`\0H\x10 \00\x10 \04\x10 \08\x10 \0è\aA\0L\x10 \0ü\x04A\0<\x10 \0@\x10 \0*\x10 \0\x03\x01¸\x01\x14R\r\0\x02F0´\0 \x11*RÒßè\x02ð JG>;)\fE\x0fEG;JJ))N\00¼X÷P¸0¼W÷¿\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©¼×\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©¾\x06Lüÿ\x18!\0;J\x13hoó\x0f\x03Bø99L:K\x05)\x0fÒßè\x01ð\x10\x03\x10\x16\x10\0\x02ñ|\x02QiHö\x03Aê\x03\x01QaOð»1\x11`0¼pG\x19h ±ÑgùçahûçRø|\x1f\x19`¡h\x11`Qic\x19CQaíç0¼W÷f¿\x11±0¼W÷¿0¼W÷³¿\x02 áç0¼W÷g¿0¼\bFW÷Ê¿0¼W÷y¿\x01 Õç\x03\x01|ÈR\r\0\x1cIE \b`\x19H\x01xOôH\x10©±\0ñ\0Ðø¤\x10!ô|QAôøQÀø¤\x10\x01h!ôp!Aô\0!\x01`Am!ð\x01\x01Ae ñ\0\0ñ\0Ðø¤\x10!ð?\x01Að\x1f\x01Àø¤\x10\x01h!ðpaAð\0a\x01`Am!ô1AepG\0\0\02\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©Äâ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©ÅÜLüÿ\x13!\0\x1c\f!\0`j\r\0\01\0\x03\x010@S\r\0pµÁ\x17\0ëÑaL\x11!ð\x1f\x01E\x1ap÷øOðà"\x01!\x02ë\x02©@Âø\x11½èp@p÷{¸\x03\x01^lS\r\0gK0µ\x18D\a ÕPø\x02<\x1e^[\f\x1c\x13p^[ Sp²\x02ñ\x02\x02Oê\x04\ràPø\x04;\x13pOê\x13%UpOê\x13EpOê\x13cÓp\x02ñ\x04\x02#\0¤ñ\x01\x04¤²ìÑ\a\x03Õ\0h\x10p\0 Pp0½\x03\x01~ÆS\r\0\x0eµQH\0x\x01(6ÑPH\0hPI\0ð\x04\0 x\bC.Ñ0÷8ø\0(*ÐjF !\0 ÿ÷½ÿø\0\0P(!Ñø\x01\0O(\x1dÑø\x02\0\0(\x19Ðø\x03\0\0(\x15Ðø\x04\0x¹ø\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©Ì5\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©ÍnLüÿ\x0e!\0\x05\0`¹ø\x06\0H¹ø\a\00¹ø\b\0\x18¹ø \0\0(\x02Ð\x01¨m÷÷ÿ\x0e½\x03\x01^@T\r\0\x10µ\x04('Ñ6I4H\b`6I5H\b`7I5H\b`\x0f ÿ÷qÿ6I4H\b`6I5H`6IOðÿ0`6I4HH`ÿ÷¥ÿû÷ºþ3I\b`"H@x(±2I\x01 `\x15 §÷`ø\0 \x10½\x03\x01\fT\r\0\x04!\b W÷q¿\x03\x01\f¢T\r\0\x03!\b W÷m¿\x03\x01â\x01ªT\r\0\x10µ¯òo\0)I\b`ÿ÷õü(I\x1d )LHp'H¯ò!\x01 d'HA`¯ò5\x01`F÷iú&I$H\x05"\b`&I$H0#\b`%Hàg%H g%H\f!AP!\x01q\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©Ô\0\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©Õ:Lüÿ !\0BqÃ\x01rBr%!\x01s\x03!As\x10½\0\0~\x11e\0(\f!\0\x012\0N\x05 \0\x05W\r\0# \0W\r\0Ä# \0W\r\0ü% \0U\r\0T2 \0ý\\r\0xÓ \0\x10 \0u5\r\0ä\ \02 \0\02\0´9 \0³2 \0\aX\r\0\x18R \0Ì|\r\0Å@\r\0¼0 \0\x03?\r\0À0 \0¥A\r\0\x11A\r\0\x18 \0\x03\x01\fU\r\0[I\0{\bppG\x03\x01ø\x02U\r\0ð´\0$YM\f`¥ñ\x04\x05+pÐ\x06Ü\x01+\vÐ\x02+kÐ\x03+iÑ\x13à\x06+fÐ\b+\x1cÐ?+bÑ?à *\x02Ð\x0f*]Ñ\x03à,h\f`lhà¬h\f`ìh à\x03*\x02Ð?*PÑ\x03à%h\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©Ûì\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©Ý¢Lüÿ\x04!\0\r`dh|à¥l\r`älxà\x12*\x17Ð\x06Ü\r*\x18Ð\x0e*\x1aÐ\x10*sÑ\và\x17*\x05Ð\x1c*nÑ¥j\r`äjfà¥k\r`äkbà¥n\r`än^à%o\r`doZà,i\f`liVà¬i\f`ìiRàé*TÐ\x0eÜ$**Ð\x06Ü\x14*/Ð\x19*\x1dÐ\x1a*JÑ\x1eà%*$Ð *EÑ)à@òE\x16¢òE\x15²B>Рܢõu?=.Ð\x01-0Ð\x02-5Ñ-à3à\x0e-\x1aÐ\x12-/Ñ^[à¥h\r`äh&à%i\r`di"à¥i\r`äi\x1eà%j\r`dj\x1aà%k\r`dk\x16à%l\r`dl\x12à¥m\r`äm\x0eà\x0eM-x\x01-\x0eÑ%m\r`dm\x06à¥o\r`äo\x02à%\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©äN\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©åyLüÿÿ!\0n\r`dnL`\fh\0,\x02Ñð¼F÷¼ð¼pG\0\0-\f!\0äj\r\0Ù\v!\0\x03\x01\x01\x04W\r\0pµ\x04F\x01)\x02Ð\x02)/Ð0à¤õà@ 8!Ñ\x17H÷\aú\x04F\x16M\x16N\x0eà\x14I\x13H÷Jù)\v)\x02Ñ(y\x02(\bÐ\x06ë\0\x01h\x0eHGd\x1eîÒ\0$\x12à\vH÷¦ú\vI\x10 û÷èúóç¤õà@\x068\x06Ð\x0e8\x04Ñ\aI\bpìç÷\x1cû Fp½\f` \0¤# \0<\b\0\ï \0´b\r\0\x03\x01\bW\r\0\0 pG\x03\x01\x1cW\r\0\b{B\b\0 \x7f*\x03Ð\a*\x01Ñ\x01J`pG\x193\r\0\x03\x01P¨W\r\0ðµ\x11I\x0fH\x0fNHa\0 6\x1d\x01'Vø00Z\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©ì!\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©íGLüÿú!\0 \x03ð\x1f\x05Qø"@\aú\x05ó\x1cCAø"@\x06ëÀ\x02KiRh\x03ë@\x03Bð\x01\x02ÂõX"\x1a@\x1cæÐð½\x04k\r\0l \0\x03\x01\x16ôW\r\0.(\x01Ó\x01 pG JBø \x10\0 pG\x03\x01\x01\x06X\r\0\x10µ\x1eI\x04 ÿ÷òÿ\x1dI^[ ÿ÷îÿ\x1cI\x1c ÿ÷êÿ^[I \b`^[HÏ!\x01`Oðæ\x01A``Oð\x17\x01Á`Oð@\x01\x01aOð\x01\x01AaOðò\x02aOðÎ\x02ÂaOðÐ\x02\x02bOðè\x02dOðÈ\x02@ø,Oðì\x02@ø,@ø\x1c IOð\x04\0\b`Oð\0\0\x10½X\x15!\0X\r\0Á\\r\0Û\\r\0L\rB\0\x01B\0|7B\0\x03\x01 \bX\r\0-é÷O\a\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©óô\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©õ\x1cLüÿõ!\0FßHßøt£\0h\aõzD\0ð\x03\x02OôzpDCÚHßølR\x1c\x05h\x04ëU\0°ûõö\x06û\x05ðFÉø\0\0ÕH\x05û\x02ñø\0°\x01û\vð ÷²û\0"ÑK ÷ù\0"ÐK ÷%ú\0"ÏK ÷©ü ÷wûÎI\bÎHhOôBÀó\x13\0¥û\0\x01\x18Añ\0\x01Â\vÉHBêAB\x02`OôH\x10\0hÆIÀó\x02\x10Oð\x01\f\x02#p³\x01(.Ð\x02(.Ð\x03(.Ð\x04(.Ð\x05(.Ð\x06(.ÐÁø\0À\bh¼K\x04û\0ñ\x01ëR\x01±ûòñ\x02û\x01ò\x02ëP\x02²ûðð\x18`\0^[\0Õ@BµJ\x12hB^[ظë\x04\0\0Õ@BB\x15Ø\0 ±B\x10Ù\x18`\x10à\v`Üç\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM©ûµ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªM©üÜLüÿð!\0\x03 \bà\x04 \x06à\x06 \x04à\b \x02à\x10 \0à\x18 \b`ÏçÉø\0\0Ýé\x01\x06 ÷Dû¤K\0" ÷ûFF\aõz@OôzqHC ÷7ûKFBF\x01.\vÐ ÷4ü ÷\x02û\x01FH\x02hHB\x04Ó\x1e"-à ÷øøòçJ\x12hB\x01Ó#"$àJ\x12hB\x01Ó("\x1eàJ\x12hB\x01Ó-"\x18àJ\x12hB\x01ÓF"\x12àJ\x12hB\x01ÓP"\fàJ\x12hB\x01ÓZ"\x06àJ\x12hB\x01Ód"\0àn"\x02` "±ûòñJÐø\0\x01û\bñ\x12x\0\0!F«÷gýKj\0^[h_\08\x18Añ\0\x03Ù\x03AêPAÀ\x03@\x19Añ\0\x01\0#U÷ô\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª\x03\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª\x05=Lüÿë!\0ü û\x056\x01û\x05a\0"\0û\x02\x11\vBêB\vÕ^[añ\0\x06sI\b`sH1F\x05`(F ÷Öú\0"ZK ÷ø\0"YK ÷6ù ÷úlI\0û\vð@\x1c@\b\b` !¸ûñò\0#1F(FU÷Æü\x04''ú ÷û\x17:FU÷¿ücI\aF\b`\0^[\0Õ@BßøOð \vFZFø\0°\0#(F1FU÷¬ü\b@êpÀ^[\0Õ@BXI\fh B!Ò\b"ø\0 \0#(F1FU÷ü\b@êpÀ^[\0Õ@B B\x11Ò "ø\0 \0#(F1FU÷ü\b@êpÀ^[\0Õ@B B\x01Òø\0°ø\0 \0#(F1FU÷yüM\bOê\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª\vå\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª\r\x10Lüÿæ!\00\x04AHRF\0#\x04`@H\0\x19Eñ\0\x01U÷lü>I\x1f(\b`\x01Ù\x1f \b`\x02F\0# F)FU÷`ü\x04F9H\0!É\x05\x04`OêÉPe\bAêY!@\x19Añ\0\x01"F\0#U÷Oü2I"F\0#\b`OðàP\0!(\x18Añ%\x01U÷Cü-I"F\0#\b`Oð¨@\0!(\x18Año\x01U÷7ü(I\b`\x01 ½èþ\0»\0\x187B\0ü\x0f!\0è\x11!\0¨\x11!\0\x1eA.A\0\0ð?¬\x11!\0\0\x102\0\x10\x12!\0\f\x12!\0\b\x12!\0 \x13!\0\0@@¸\x11!\0ô\x11!\0¼\x11!\0À\x11!\0Ä\x11!\0È\x11!\0Ì\x11!\0Ð\x11!\0Ô\x11!\0©\x11!\0Ø\x11!\0Ü\x11!\0ì\x11!\0ü\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª\x13Ù\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª\x15\x15Lüÿá!\0\x11!\0°\x11!\0ª\x11!\0à\x11!\0´\x11!\0\0À]\0ø\x11!\0ä\x11!\0ð\x11!\0\0\x12!\0\x04\x12!\0\x03\x01\f¸\\r\0\x01!pU÷¨¿\x03\x01\x1eÀ\\r\0\fH\0x0±\fI\bh\0ðð\0@ð\f\0\b`Oð\0\0pG\x03\x01&Ú\\r\0\x06H\0x0±\x05I\bh\0ðð\0@ð\x04\0\b`Oð\0\0pG*\f!\0\0B\0\x03\x01 ü\\r\0\x04(\x03Ð\x03(\aÓX÷WºOôH\x11Oô\0PÈe÷çpG\0\0\x03\x01\x01\x18]\r\0-éðA\x1aH\0hÀ\a.Ð\x19H\x01hAð\x01\x01\x01`\x17O|?8h@ð\08`\x15N\x01 0`E÷\x1cù=h%ð\08`\x0fHt8\x01hAð \x01\x01`\x01h!ð \x01\x01`\0$\x04à\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª^[¿\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª\x1cüLüÿÜ!\00 E÷uø\x04ñ\x01\x040h\a\x01Ô2,õÓEð\08`\0 0`½èð\0\0`\x18 \0|\bd\0´\x042\0\x03\x01\x01]\r\00µ^[L$x\x01,\aѰõá?\aÐ\x18L%hEð\x01\x05%`\x17L B\x01Ø\x16L\0à\x16L´ûðð\x10(\fÛÄ\x17\0ë\x14t%\x11$ð\x0f\x04\x04^[\x18h ð\b\0@ð\0\x06à\x05F\x18h\0$ ð\0@ð\b\0\x18`Åõp\x10`\x04ëÔp@\x10"\x1aBê\0\x10\b`0½\0\0+\f!\0\x1c\x046\0`ã\x16\0\06n\x01\0lÜ\x02\x03\x012\x18^\r\0pµ\x04F\0%o÷\x1cû\x06F Fo÷ðû\x04\0\x06Ð\x01!o÷Óû\x05F Fo÷Éû0Fo÷\x10û(Fp½\x03\x01>F^\r\0pµ\x04\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª#¶\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª$ßLüÿ×!\0F\0%o÷\x05û\x06F Fo÷Ùû\x04\0\aÐ\0!o÷¼û\x05F Fo÷²û\x04àË!Oô\0pn÷þ0Fo÷óú(Fp½\x03\x01>^\r\0pµ\x05\0\x16H\x04h\x16Ð\fà)F Fo÷ü0±D±)F F½èp@o÷U¼$h\0,ðѽèp@þ!Oô\0pn÷y¾p½\x03\x012º^\r\0pµ M\x01F\x01$(xP±\bFo÷û(±\x01|@|*xPCB\0Ò\0$ Fp½\x05 \0,\f!\0\x03\x01(è^\r\0\x06I\0 hÉ\x06\x06Õ\x05H\x01h!ôp1\x01`Oôp pG\0\0\x10k\r\0X\x1e \0\x03\x01<\f_\r\0pµ\x05F\fFj\b!\x01ë\0o÷û\0(\x0fЪj\0ñ\b\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª+Î\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª-\fLüÿÒ!\0\x02*\x03ÑTø\x04+Aø\x04+"h `\x01F(F|÷Eÿ\x01 p½\x03\x01pD_\r\0pµ\x16L x\0(&Ðo÷oø\x01F\x13H\0h,÷ÿ¡x@ö5BQCÀë\x04o÷wú\x0eM\x06F(xÀ\x06\rÕ\0,\vÜ,÷¶ÿ ¹ H\x01h!ð \x01\x01`(x ð\x10\0(p0F½èp@o÷cºp½\0\0Ä\x18 \0\x14k\r\0\x16\x1d \0 \x046\0\x03\x01X°_\r\0ÐøØ \x04F\0!GBNßø\bßø\b\x04ñ° PF|÷`ÿ\x05Fpy±°xx±o÷?úø\0\x10\aFAð\x10\x01ø\0\x10o÷!øÉø\0\08Fo÷5úÔøØ )F FGáç\x03\x01\x18\x04`\r\0/H\x10µ@y\x18±,÷\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª3\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª4ÚLüÿÍ!\0mÿ\0(\0Ð\x01 \x10½\x03\x01À\x01\x18`\r\0-éðAßø°\x0eFø\0\0à³æ³À\a=Ðqh\x06ñ\b\0¡õàB:\x0fÑE\x04F\x05ñ \0o÷úú\aF*F!\x1d 0o÷èû<FGò?\0\x1dà¡õàBA:"Ñ\x05Fý÷bú\a\0\x1dÐ(x\x13(\x1aÐhx\0\x1d?÷}øix ñ\b\x04\x1cA ø\x04{jx)F\x1co÷ÈûGò\0``U÷Ûû!F\x01à\fà\x01à-÷Zøø\0\0@\a\x05Õ0Fo÷{û\0 ½èð\x01 ûç\0\0Ä\x18 \0\x16\x1d \0\x14k\r\0-\f!\0\x03\x01:Ô`\r\0\x1dI0´ hj±\x01F¡û\x02\x05\0#\x03û\x02R\x01û\x03!\x18J\x19K\x12h^[xZC\x04à@ö\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª;x\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª<´LüÿÈ!\0ë1 û\x01\x01d"0¼\0#U÷»¹\x03\x01R a\r\0ð´\x0fJ\x12hj±\x0fK\x1ch\x0fK^[x\C\x03F¤û\x03\x06\0%\x05û\x03c\x04û\x011 àd"\x03F£û\x02\x05\x01û\x02Q\0$\x03û\x04\x11@öë2ð¼\0#U÷¹ä\x18 \0à\x18 \0Ù\x18 \0\x03\x01PXa\r\0\x10µ\x04FE÷ø\fI\x02(\bp"j\x11ÐOôq C"b I J h\x12xQC@öë2QCd"±ûòñ\x05J\x11`\x10½!íç\0\0\x19 \0à\x18 \0Ù\x18 \0ä\x18 \0\x10\x01\x0f\0ìÝ\x02\0¢ð\bº\0\0\0\x02\r\0\x10\x01\x0f\x01Ø\0\x03\0 ð»\0\0\x04\b\r\0\x10\x01\x0f\x02$Æ\x02\0¤ð ¹\0\0<\b\r\0\x10\x01\x0f\x03xÌ\x02\0£ðȺ\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªCn\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMªDLüÿÃ!\0\0\f\x02\r\0\x10\x01\x0f\x04(Û\x03\0ðz»\0\0 \x02\r\0\x10\x01\x0f\x05TÜ\x03\0ðìº\0\00\x02\r\0\x10\x01\x0f\x06PÌ\x03\0ðöº\0\0@\x02\r\0\x10\x01\x0f\aÜÒ\x03\0ðº¿\0\0T\x02\r\0\x10\x01\x0f\b,Ï\x03\0ð¹\0\0d\x02\r\0\x10\x01\x0f $¶\x03\0ð*¾\0\0|\x02\r\0\x10\x01\x0f p^[\b\0Nð»\0\0\x02\r\0\x10\x01\x0f\v¼\a\0Vðò¿\0\0¤\x02\r\0\x10\x01\x0f\f\x04\a\0WðÓ¼\0\0®\x02\r\0\x10\x01\x0f\r¼\a\0Wðý¾\0\0º\x02\r\0\x10\x01\x0f\x0eÀ7\b\0p½\0\0\0\0\0\0\0\0\x10\x01\x0f\x0f°7\b\0\x03)øÒ\0\0\0\0\0\0\x10\x01\x0f\x10h<\a\0\ðr¿\0\0P\v\r\0\x10\x01\x0f\x11)\a\0^ð¥¹\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªKA\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMªLlLüÿ¾!\0\0\0â\f\r\0\x10\x01\x0f\x12p9\a\0\ð¬¼\0\0Ì\x02\r\0\x10\x01\x0f\x13t@\a\0\ð3¹\0\0Þ\x02\r\0\x10\x01\x0f\x14E\a\0[ð²¾\0\0ô\x02\r\0\x10\x01\x0f\x15À3\a\0\ð¢¿\0\0\b\x03\r\0\x10\x01\x0f\x16@4\a\0]ðn¼\0\0 \r\r\0\x10\x01\x0f\x17¬¦\x03\0ð0¾\0\0\x10\x03\r\0\x10\x01\x0f\x18p'\x04\0ðÔ½\0\0\x1c\x03\r\0\x06\x01\x04 \x0f\r\0\x10\x01\x0f\x19ÌT\x03\0\x02!\0à\0\0\0\0\0\0\x10\x01\x0f\x1aÈU\x03\0ð¬¾\0\0$\x03\r\0\x10\x01\x0f^[`R\x03\0ðg¸\0\02\x03\r\0\x10\x01\x0f\x1cm\x03\0ðàº\0\0D\x03\r\0\x10\x01\x0f\x1dL\\x03\0ð»\0\0T\x03\r\0\x10\x01\x0f\x1eØP\x03\0ðD¹\0\0d\x03\r\0\x06\x01\x04l\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªS\r\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMªT8Lüÿ¹!\0\x11\r\0\x10\x01\x0f\x1f<^\a\0Zðº\0\0x\x03\r\0\x06\x01\x04X\x13\r\0\x10\x01\x0f {\a\0Xðø»\0\0\x03\r\0\x06\x01\x04´\x13\r\0\x10\x01\x0f!ÔÍ\a\0Sðàº\0\0\x03\r\0\x10\x01\x0f"¸\r\a\0\0\0I\0\0\0\0\0\0\x10\x01\x0f#Ô\x16\a\0^ðh¾\0\0¨\x03\r\0\x10\x01\x0f$,\a\0Wð½\0\0H\x15\r\0\x10\x01\x0f%ç\a\0SðH½\0\0$"\r\0\x10\x01\x0f&$è\a\0QðȽ\0\0¸\x03\r\0\x10\x01\x0f'hð\a\0Sð\a¹\0\0z"\r\0\x10\x01\x0f(dp\x06\0kð?¹\0\0æ"\r\0\x10\x01\x0f)ük\x06\0iðà»\0\0À\x03\r\0\x10\x01\x0f*Ìl\x06\0kðò»\0\0´$\r\0\x10\x01\x0f+Ôi\x06\0kð½\0\0\x0e%\r\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªZó\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª\$Lüÿ´!\0\x10\x01\x0f,Üh\x06\0kðr¾\0\0Ä%\r\0\x10\x01\x0f-`Ï\x05\0sð2º\0\0È\x03\r\0\x10\x01\x0f.D&\a\0`ðH¸\0\0Ø&\r\0\x10\x01\x0f/à\0\x02\0°ðx¹\0\0Ô\x03\r\0\x10\x01\x0f0Ì÷\x01\0°ð\v¾\0\0æ\x03\r\0\x10\x01\x0f1ÔM\x05\0{ð\x14»\0\0\0\x04\r\0\x10\x01\x0f2|ñ\x04\0ðL¹\0\0\x18\x04\r\0\x10\x01\x0f3¸»\x02\0¤ð6¼\0\0(\x04\r\0\x10\x01\x0f4x:\0\0\x01 ¹\0\0\0\0\0\0\x10\x01\x0f5 \x13\0\0Ïð¸\0\0@\x04\r\0\x10\x01\x0f6xB\x02\0¬ðì¸\0\0T\x04\r\0\x10\x01\x0f7`B\x02\0¬ð\x0e¹\0\0\x04\r\0\x10\x01\x0f8x\x01\0·ð\x0e¼\0\0\x04\r\0\x10\x01\x0f9\fÅ\x05\0sðÊ¿\0\0¤\x04\r\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªbÄ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMªcêLüÿ¯!\0\0\x10\x01\x0f:pÆ\x05\0sð0¿\0\0Ô\x04\r\0\x10\x01\x0f; l\x05\0yð\¼\0\0Ü\x04\r\0\x10\x01\x0f<\x10¾\x04\0F\v0\0\0\0\0\0\0\x10\x01\x0f=°d\x06\0lðE¿\0\0>3\r\0\x10\x01\x0f>øg\x06\0iðx¾\0\0ì\x04\r\0\x10\x01\x0f?üa\x06\0mðî¸\0\0Ü3\r\0\x10\x01\x0f@\x14¬\x03\0ðr¼\0\0ü\x04\r\0\x10\x01\x0fAà\x06\0iðH¼\0\0t4\r\0\x10\x01\x0fB\x1c¡\x06\0fðô¹\0\0\b\x05\r\0\x10\x01\x0fC3\x04\0ð¸\0\0\x18\x05\r\0\x10\x01\x0fD\x04>\x04\0ð»\0\0$\x05\r\0\x10\x01\x0fE8\x04\0ðl¾\0\0l\x05\r\0\x10\x01\x0fFÄe\x02\0©ðÜ¿\0\0\x05\r\0\x10\x01\x0fG L\a\0[ðº¼\0\0\x05\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªj\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMªk²Lüÿª!\0\r\0\x10\x01\x0fHÌï\x03\0ðàº\0\05\r\0\x10\x01\x0fIø\x03\0ð¾\0\0´\x05\r\0\x10\x01\x0fJ\fù\x03\0ð^¾\0\0Ì\x05\r\0\x10\x01\x0fK\fò\x03\0ðî¹\0\0ì\x05\r\0\x10\x01\x0fL õ\x06\0aðt¸\0\0\f\x06\r\0\x10\x01\x0fMÈò\x06\0að©¹\0\0\x1e\x06\r\0\x10\x01\x0fN¤Þ\x04\0ðÄ»\0\00\x06\r\0\x10\x01\x0fO,B\x05\0|ð\bº\0\0@\x06\r\0\x10\x01\x0fPüG\x05\0{ð(¿\0\0P\x06\r\0\x10\x01\x0fQ$ \x03\0¡ðV»\0\0Ô6\r\0\x10\x01\x0fRl \x03\0¡ðY»\0\0"7\r\0\x06\x01\x048\r\0\x10\x01\x0fSÈ\a\0@\x1a²\0\0\0\0\0\0\x06\x01\x04°8\r\0\x06\x01\x04V:\r\0\x10\x01\x0fTD\x1f\b\0Nð»\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªrV\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMªsuLüÿ¥!\0\0\0\\x06\r\0\x10\x01\x0fU\x1e\b\0Nðï»\0\0b\x06\r\0\x10\x01\x0fVè\x1e\b\0Nð¾»\0\0h\x06\r\0\x10\x01\x0fW°\x1f\b\0Nð\»\0\0l\x06\r\0\x10\x01\x0fX\x14\x1e\b\0Nð,¼\0\0p\x06\r\0\x10\x01\x0fYøÝ\x06\0bð>¼\0\0x\x06\r\0\x10\x01\x0fZ4½\x05\0tð£¼\0\0~\x06\r\0\x10\x01\x0f[¼\x05\0xð¡¸\0\0â=\r\0\x10\x01\x0f\ì»\x05\0xð3¹\0\0V>\r\0\x10\x01\x0f]D·\x05\0tð£¿\0\0\x06\r\0\x10\x01\x0f^^[\x02\0®ð½\0\0¤\x06\r\0\x10\x01\x0f_L@\x03\0 ðº\0\0TE\r\0\x10\x01\x0f`ÐK\x03\0ðl½\0\0¬\x06\r\0\x10\x01\x0fatM\x03\0ð¼\0\0´\x06\r\0\x10\x01\x0fb\x1cG\x03\0ðÐ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªzd\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMª{¦Lüÿ !\0¿\0\0À\x06\r\0\x10\x01\x0fc45\x03\0ðȸ\0\0È\x06\r\0\x10\x01\x0fd7\x03\0ð¢¿\0\0ä\x06\r\0\x10\x01\x0feì\x17\x02\0³ð¹\0\0\x1cK\r\0\x10\x01\x0ff\\x19\x02\0³ðÞ¹\0\0\x1cM\r\0\x10\x01\x0fg8Ç\x01\0³ðÜ¿\0\0ô\x06\r\0\x10\x01\x0fh\x10D\0\0Ðð\x18½\0\0DN\r\0\x10\x01\x0fi\x04Ç\x01\0³ðù¿\0\0ú\x06\r\0\x10\x01\x0fjÓ\x02\0§ðF¿\0\0\x14R\r\0\x10\x01\x0fkðÒ\x02\0£ð º\0\0\b\a\r\0\x06\x01\x04ªT\r\0\x06\x01\x04¨W\r\0\x10\x01\x0flô×\b\0Bð¿\0\0$\a\r\0\x10\x01\x0fmð¯\x01\0ºð¾\0\0\x18]\r\0\x10\x01\x0fn\f\a\x02\0°ð\x10¸\0\00\a\r\0\x10\x01\x0fod9\b\0Rð\x16º\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª)\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0â=ªMªcLüÿ !\0]\r\0\x10\x01\x0fpdV\x04\0ðl¸\0\0@\a\r\0\x10\x01\x0fq<V\x04\0ð\x03¼\0\0F^\r\0\x10\x01\x0fr°W\x04\0ðÉ¿\0\0F\a\r\0\x10\x01\x0fsÌ-\x05\0}ð¾¼\0\0L\a\r\0\x10\x01\x0ft*\x03\0ðj¾\0\0X\a\r\0\x10\x01\x0fuT¤\x06\0fð¹\0\0\a\r\0\x10\x01\x0fv\x14i\x05\0yð8¿\0\0\a\r\0\x10\x01\x0fwèp\a\0YðR»\0\0\a\r\0\x10\x01\x0fxg\a\0Zð\f¸\0\0 \a\r\0\x10\x01\x0fyT/\0\0Íð,¼\0\0°\a\r\0\x10\x01\x0fzà1\0\0Íðêº\0\0¸\a\r\0\x10\x01\x0f{üµ\x01\0µðè¸\0\0Ð\a\r\0\x10\x01\x0f|üÇ\x01\0³ðî¿\0\0Ü\a\r\0\x10\x01\x0f}dÈ\x01\0³ð¿¿\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªØ\x0e\x04\x01Lü\0\0\0\0!\0\0\0!\0\0\0\x02\0\0\0\0\0â=ªMªLü\x1e¡!\0\0æ\a\r\0\x10\x01\x0f~P´\x01\0µðй\0\0ô\a\r\0þ\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªU\x0e\x04\x01Lü\0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0â=ªMªLü\x05(\f!\0\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªý\x0e\x04\x01Lü\0\0\0\0\x0f\0\0\0\x0f\0\0\0\x02\0\0\0\0\0â=ªMª$Lü\f\x14\f!\0\x13\0\0\0\x13\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªÂ\x0e\x04\x01Lü\0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0â=ªMªÑLü\x05Ý\v!\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMª7\x0e\x04\x01Lü\0\0\0\0\a\0\0\0\a\0\0\0\x02\0\0\0\0\0â=ªMªwNü\x04ÿÿÿÿ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªMªÆ\x0e\x04\x01Nü\0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0â=ªM®ô\x18ü\x06\0\0\x1e\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM®¡Î\x0e\x04\x01\x18ü\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM®£\x03\f\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM®e\x0e\x04\x01\x03\f\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°mp\x01\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªM°o¨\x0e\f\x01\x01\x10\0\aE\x01\a\x0f\0 "\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°qK \x10\0\0\0\0\f\0\0\0\f\0\0\0\x03\0\0\0\0\0â=ªM°ss\x0e \x01 \x10\0¬\x1f\x12¡CC\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°t¸\x03\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªM°vÈ\x0e\f\x01\x03\x10\0¿þÏþÛÿ{\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°ww\x01\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªM°y¿\x0e\f\x01\x01\x10\0\aE\x01\a\x0f\0 "\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°z½ \x10\0\0\0\0\f\0\0\0\f\0\0\0\x03\0\0\0\0\0â=ªM°}\x16\x0e \x01 \x10\0¬\x1f\x12¡CC\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°\x7f\v\x05\x10\0\0\0\0\r\0\0\0\r\0\0\0\x03\0\0\0\0\0â=ªM°9\x0e\v\x01\x05\x10\0ý\x03@\b\0\x01\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°ø#\f\0\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0â=ªM°_\x0e\a\x01#\f\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM° \x14\f\0\0\0\0þ\0\0\0þ\0\0\0\x03\0\0\0\0\0â=ªM°R\x0eü\x01\x14\f\0BCM43438A1 37.4MHz Raspberry Pi 3-0062\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°÷%\f\0\0\0\0\b\0\0\0\b\0\0\0\x03\0\0\0\0\0â=ªM°\x12\x0e\x06\x01%\f\0`\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°¶8\f\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0â=ªM°\b\x0e\x05\x018\f\0\x04\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°¯9\f\0\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0â=ªM°\x0e\b\x019\f\0\x013\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0â=ªM°T\x05\f\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM°¡Æ\x0e\x04\x01\x05\f\0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0â=ªM°¢h\x16\f\x02\0}\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM°¤\x0e\x04\x01\x16\f\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°¥\x12\x02 \0\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0â=ªM°§*\x0e\a\x01\x02 \0û\0\b\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°§Ï\x03 \0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªM°ª\x02\x0e\f\x01\x03 \0\x1f\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°ª§\x1c \0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªM°¬¿\x0e\f\x01\x1c \0ÿÿÿÿÿ\x03\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°~\x02\x10\0\0\0\0F\0\0\0F\0\0\0\x03\0\0\0\0\0â=ªM°°Ó\x0eD\x01\x02\x10\0ÿÿÿ\x03Ìÿïÿÿÿì\x1fò\x0fèþ?÷ÿ\x1c\0\x04\0a÷ÿÿ\x7føÿÿÿ?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0â=ªM°±R\fñ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM°¸Õ\x0e\x04\x01R\f\0\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0â=ªM°¹ÓE\f\x01\x02\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM°¼Ý\x0e\x04\x01E\f\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°½¤X\f\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0â=ªM°¿»\x0e\x05\x01X\f\0\0\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0â=ªM°Àz\x04\x10\x01\x01\0\0\0\x10\0\0\0\x10\0\0\0\x03\0\0\0\0\0â=ªM°Âß\x0e\x0e\x01\x04\x10\0\x01\x02\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0â=ªM°ÄX\x01\f\bÿÿûÿ\aø¿=\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM°ÇÕ\x0e\x04\x01\x01\f\0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0â=ªM°È\r\f\a\0\0\0\0\0\0\x01\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0â=ªM°ÊÇ\x0e\b\x01\r\f\0\x01\0\0\0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0â=ªM°Ën\x0f\b\x02\x05\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM°Í¥\x0e\x04\x01\x0f\b\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°ÎO^[\f\0\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0â=ªM°Ð^\x0e\b\x01^[\f\0\0\b\x12\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°Ñ!F\f\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0â=ªM°Ó^[\x0e\x05\x01F\f\0\0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0â=ªM°Ó¿\x01 \b?\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM°Õí\x0e\x04\x01\x01 \0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°Ö\a \0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0â=ªM°Øá\x0e\x05\x01\a \0\f\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°Ù\x0f \0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0â=ªM°Û\x0e\x05\x01\x0f \0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°Üg\x10 \0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM°Þµ\x0e\x04\x01\x10 \0\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0â=ªM°ß_\x04\x10\x01\x02\0\0\0\x10\0\0\0\x10\0\0\0\x03\0\0\0\0\0â=ªM°âQ\x0e\x0e\x01\x04\x10\0\x02\x02\x13\x03\0\0\0\0\0\0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0â=ªM°ã¶\x12\f\a\0\0\0\0\0\0\x01\0\0\0\b\0\0\0\b\0\0\0\x03\0\0\0\0\0â=ªM°æM\x0e\x06\x01\x12\f\0\0\0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0â=ªM°æÖc\f\b\0À¿\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM°é\x06\x0e\x04\x01c\f\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°é»\v\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªM°ì"\x0e\f\x01\v\x10\0\x06\0\x01\x02\x03\x04\x05\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªM°ìç\f\x14\0\0\0\0\x11\0\0\0\x11\0\0\0\x03\0\0\0\0\0â=ªM°ï\x14\x0e\x0f\x01\f\x14\0\x01\x02\x01ÀÆ-\0ÀÆ-\0\0\0\0\b\0\0\0\b\0\0\0 \0\0\0\0\0â=ªM°ò1¬\x1f\x12¡CC\x0f\0\0\0\0\x06\0\0\0\x06\0\0\0\x11\0\0\0\0\0â=ªM°òg\x02\0\0\0\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x11\0\0\0\0\0â=ªM°òg\x01\0\0\0\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x10\0\0\0\0\0â=ªM°õ\x01\0\0\0\x04\0\0\0\x01!\0\0\x01!\0\0\0\x11\0\0\0\0\0â=ªM°õì\x01\0\0\0\x01\0\x04\0\0¬\x1f\x12¡CC\a\x0f\0ÿÿ\0\0\0\0\0\0\0\0BCM43438A1 37.4MHz Raspberry Pi 3-0062\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\x04ÿÿ\0\x0f\0\0\0\0\0â=ªM± \x03\0\0\0\0\0\0\x16\0\0\0\x16\0\0\0\x10\0\0\0\0\0â=ªM±Øï\x01\0\0\0\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0â=ªM±ÙM\x01\0\0\0\x01\0\x11\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x10\0\0\0\0\0â=ªM±Ü\x0e\x01\0\0\04\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0â=ªM²\x1d\x01\0\0\0\x01\04\0\0\0\0\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0â=ªM²! \x01\0\0\0\x10\0û4_\0\0\0\x10\0\0\0\x18\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0â=ªM²!C\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0â=ªM²$m\x01\0\0\0\x10\0û4_\0\0\0\x10\0\0\x01\x18\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0â=ªM²$§\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\x01 \0\0\x01 \0\0\0\x10\0\0\0\0\0â=ªM²'»\x01\0\0\0\x0f\0raspberrywi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0û\0\0\0û\0\0\0\x02\0\0\0\0\0â=ªM²(~\x13\føraspberrywi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM²/á\x0e\x04\x01\x13\f\0\0\0\x01 \0\0\x01 \0\0\0\x11\0\0\0\0\0â=ªM²0§\x02\0\0\0\b\0raspberrywi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\r\0\0\x01\r\0\0\0\x11\0\0\0\0\0â=ªM²1\x06\x01\0\0\0\x01\0\x0f\0\0raspberrywi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0â=ªM²4é\x01\0\0\0\x10\0û4_\0\0\0\x10\0\0\x0e\x11\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0â=ªM²5(\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0â=ªM²8"\x01\0\0\0\x10\0û4_\0\0\0\x10\0\0\f\x11\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0â=ªM²8r\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x10\0\0\0\0\0â=ªM²;~\x01\0\0\0'\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0â=ªM²;È\x02\0\0\0\x15\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0â=ªM²;ï\x01\0\0\0\x01\0'\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0 \0\0\0\x10\0\0\0\0\0â=ªM²>\x01\0\0\0\x12\0\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªM²>Ö\x01\0\0\0\x01\0\x12\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0â=ªM²nC\x01\0\0\0\x13\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªM²n\x01\0\0\0\x01\0\x13\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0â=ªM²q\x01\0\0\00\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªM²qË\x01\0\0\0\x01\00\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0â=ªM²tD\x01\0\0\05\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªM²t\x01\0\0\0\x01\05\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x10\0\0\0\0\0â=ªM²w\b\x01\0\0\0\x15\0\0\0\0\v\0\0\0\v\0\0\0\x11\0\0\0\0\0â=ªM²wY\x01\0\0\0\x01\0\x15\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0â=ªM²yß\x01\0\0\0\x10\0û4_\0\0\0\x10\0\0\0\x12\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0â=ªM²z\x1f\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x10\0\0\0\0\0â=ªM²|ï\x01\0\0\0(\0\x02\0k\x1dF\x02\x17\x05\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªM²}B\x01\0\0\0\x01\0(\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0â=ªM²\x7fÀ\x01\0\0\0\x0e\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0â=ªM²#\x01\0\0\0\x01\0\x0e\0\0\0\0\0\0\0\x01 \0\0\x01 \0\0\0\x10\0\0\0\0\0â=ªM²¡\x01\0\0\0\x0f\0raspberrywi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\r\0\0\x01\r\0\0\0\x11\0\0\0\0\0â=ªM²Ü\x01\0\0\0\x01\0\x0f\0\0raspberrywi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0â=ªM² U\x01\0\0\0\v\0\x01\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0â=ªM²9V\f\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM´$ª\x0e\x04\x01V\f\0\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0â=ªM´%I\x01\0\0\0\x01\0\v\0\0Á\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªM´%\x02\0\0\0\x06\0Á\0\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0â=ªM´&!R\fñ\0\f raspberrywi\x02 \0 \x10\x02\0k\x1dF\x02\x17\x05 \x03\0\x18\x01\x18\x0e\x11\f\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0â=ªM´(Ý\x01\0\0\0\r\0\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM´0º\x0e\x04\x01R\f\0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0â=ªM´1mm\f\x02\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM´3\x0e\x04\x01m\f\0\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0â=ªM´4,\x01\0\0\0\x01\0\r\0\0Á\x02\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªM´4W\x02\0\0\0\x06\0Á\x02\0\0\0\0\0#\0\0\0#\0\0\0\x02\0\0\0\0\0â=ªM´4Ù\b \x03\x02 \f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0â=ªM´6¸\x01\0\0\0 \0\x01\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0â=ªM´7\x06\x01\0\0\0\x01\0 \0\0Ñ\x02\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªM´7^[\x02\0\0\0\x06\0Ñ\x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM´?ç\x0e\x04\x01\b \0\0\0\0#\0\0\0#\0\0\0\x02\0\0\0\0\0â=ªM´@ \r\f\braspberryw\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªM´C^\x0e\x04\x01 \0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0â=ªNáQi\x01\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0â=ªNáUý\x05 \x06\vëèõz(\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªNáXñ\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0â=ªNáY«\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªNác±\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0â=ªNádn\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªNáfÙ\x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªNágÌ\x01\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0â=ªNáh\x19\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0â=ªNáh\x19\x01\0\0\0\x13\0\a\x01\0\0\0\x19\0\0\0\x19\0\0\0\x03\0\0\0\0\0â=ªNâb+>\x17\x02\x01\0\0ðרÀË@\v\x02\x01\x1a\aÿL\0\x10\x02\x01\0±\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªNâm|>\f\x02\x01\x04\0ðרÀË@\0±\0\0\0\x1f\0\0\0\x1f\0\0\0\x11\0\0\0\0\0â=ªNân\x19\x02\0\0\0\x12\0ðרÀË@\x01±\0\0\0\0\v\0\x02\x01\x1a\aÿL\0\x10\x02\x01\0\0\0\0\x1f\0\0\0\x1f\0\0\0\x11\0\0\0\0\0â=ªNân\x19\x01\0\0\0\x12\0ðרÀË@\x01±\0\0\0\0\v\0\x02\x01\x1a\aÿL\0\x10\x02\x01\0\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0â=ªNã\rç>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾²\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0â=ªNãÀ=>^[\x02\x01\x03\x01¡\x1cÈ ã?\x0f\x02\x01^[\vÿL\0 \x06\x034À¨\0\x1a¹\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0â=ªNãÀÑ\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01²\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0â=ªNãÀÑ\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01²\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0â=ªNãÁ>\x02\0\0\0\x12\0¡\x1cÈ ã?\x02¹\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x034À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0â=ªNãÁ>\x01\0\0\0\x12\0¡\x1cÈ ã?\x02¹\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x034À¨\0\x1a\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0â=ªNåà>\f\x02\x01\x04\0Y\x18]ÍiÈ\0¤\0\0\0\x14\0\0\0\x14\0\0\0\x11\0\0\0\0\0â=ªNåá3\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01¤\x04\0\0\0\0\0\0\0\0\x14\0\0\0\x14\0\0\0\x11\0\0\0\0\0â=ªNåá3\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01¤\x04\0\0\0\0\0\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0â=ªNæÕº>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v¢\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0â=ªNæÖM\x02\0\0\0\x12\0ܰ˶@\r\x02¢\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0â=ªNæÖM\x01\0\0\0\x12\0ܰ˶@\r\x02¢\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0â=ªO3\x17w\f \x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªO3"·\x0e\x04\x01\f \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0â=ªO3$\x01\x01\x04\x053\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªO3&;\x0f\x04\0\x01\x01\x04\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0â=ªOc(\x01\0\0\0$\0\a\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0â=ªOcÃ]\x02\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0â=ªOcÎ\x0e\x04\x01\x02\x04\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0â=ªOcÏ0\x02\0\0\0\x13\0\a\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0â=ªOcÏ0\x01\0\0\0\x13\0\a\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0â=ªOcØ}\x01\0\0\0\x01\0$\0\0\a ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-22 18:05 ` Stefan Wahren @ 2018-02-22 18:50 ` Marcel Holtmann 2018-02-23 13:40 ` Stefan Wahren 0 siblings, 1 reply; 20+ messages in thread From: Marcel Holtmann @ 2018-02-22 18:50 UTC (permalink / raw) To: Stefan Wahren; +Cc: Eric Anholt, Frédéric Danis, Bluez mailing list Hi Stefan, >>>>>>>>>>>>> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. >>>>>>>>>>> So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. >>>>>>>>>> >>>>>>>>>> We may also reset to initialization speed on module unload. >>>>>>>>>> This will allow multiple tests on the hardware, even if it does not have GPIOs exposed. >>>>>>>>> >>>>>>>>> I prefer this solution instead of coding workarounds within the devicetree. >>>>>>>> >>>>>>>> DT is actually for encoding workarounds for the hardware. If the GPIOs are not exposed, we are actually limited. However I am going to do that in the hci_bcm.c driver itself since it is a more wider problem. If the GPIO resources are not available, the device will actually not function. This is actually a valid assumption for all hardwired Bluetooth chips. They all have some GPIO or power control option. The only reason to not have GPIOs would be external development boards. So the RPi with the not exposed GPIOs is kinda broken hardware right now. That we got this far supporting Bluetooth on it has to be considered pure luck :) >>>>>>> >>>>>>> only to make sure that we talking about the same, please take a look at my attempt for the RPi Zero W [1]. >>>>>>> >>>>>>> Using the BT_ON signal as shutdown-gpio is not enough? I'm sorry i didn't test the reload case yet. >>>>>>> >>>>>>> So after the implementation of the RPI firmware expander driver, we still need this baudrate limitiation? >>>>>>> >>>>>>> Btw Baruch said that he will send a new version of his patch series soon. >>>>>>> >>>>>>> [1] - https://github.com/lategoodbye/rpi-zero/commit/e3085c093e56364a69f2e32d35827635b95cf966 >>>>>> >>>>>> before you include "shutdown-gpios = <&gpio 45 GPIO_ACTIVE_HIGH>;” we might need to figure out on how the BT_ON GPIO is working and what it is suppose to be doing. But otherwise the patch fro the Zero W looks right to me. >>>>>> >>>>>> Also keep in mind that the current 4.16-rc2 kernel will require the shutdown-gpios and device-wakeup-gpios both to be available. We have not yet tested this when only shutdown-gpios is available. You might need to modify bcm_get_resources and bcm_gpio_set_power to test this out. >>>>> >>>>> i think this contradicts to the binding documentation, which defines both as optional. >>>> >>>> the 4.15 kernel might be fine actually while the support for Apple hardware with Broadcom UART devices might have accidentally required this now. Maybe you just want to hack your kernel and see how it goes when just having the shutdown-gpios available. >>>> >>>> I am super curious if the firmware resets and falls back to the ROM state or if something is actually kept. >>> >>> since i don't have any schematics about the BT part, i simply retested my patches against 4.15 on RPi Zero W. >>> >>> modprobe -r hci_uart >>> modprobe hci_uart >>> >>> works without any issues: >>> >>> [ 233.486208] Bluetooth: HCI UART driver ver 2.3 >>> [ 233.486258] Bluetooth: HCI UART protocol H4 registered >>> [ 233.487189] hci_uart_bcm serial0-0: BCM irq: -22 >>> [ 233.488382] Bluetooth: HCI UART protocol Broadcom registered >>> [ 233.641217] Bluetooth: hci0: BCM: chip id 94 >>> [ 233.642081] Bluetooth: hci0: BCM: features 0x2e >>> [ 233.644283] Bluetooth: hci0: BCM43430A1 >>> [ 233.644321] Bluetooth: hci0: BCM43430A1 (001.002.009) build 0000 >>> [ 234.360569] Bluetooth: hci0: BCM (001.002.009) build 0325 >>> >>> After enabling bluetooth scanning i will see these error messages periodically: >>> >>> [ 815.939839] Bluetooth: hci0: last event is not cmd complete (0x0f) >>> [ 831.302476] Bluetooth: hci0: last event is not cmd complete (0x0f) >>> [ 847.303953] Bluetooth: hci0: last event is not cmd complete (0x0f) >>> [ 863.305284] Bluetooth: hci0: last event is not cmd complete (0x0f) >>> [ 879.306838] Bluetooth: hci0: last event is not cmd complete (0x0f) >> >> I really need to hook up the error messages into the btmon output since then we can trace where these are coming from. Anyway, can you btmon -w trace.log from before loading the module and this error showing up. > > I attached the log. According to dmesg this error happend only once during the trace. I will add bt_dev_err tracing to be include in btmon and that way we can figure out where that error happens. Or do you have a trace.log and dmesg -T where we can correlate it based on time. >>> Btw: Linus Wallej applied the GPIO expander driver >> >> That is awesome. Do you see any difference now if you hook up the GPIO in DT. Mind you to change the resources part to allow using only the shutdown GPIO and not having the device-wakeup GPIO. > > The RPi Zero W doesn't have a GPIO expander and the RPi 3 also uses the BT_ON line (via GPIO expander). So i don't expect any difference between them. So on the Zero W the BT_ON GPIO is exposed without the expander? And the 3 needs the expander? Is that how they are designed? I have Zero W here, but no toolchain available for it. >> Also let me guess, 4.15 is fine, but 4.16-rc1 or later fails because of the Apple changes. > > Didn't tried it yet. If you have a chance, please do. I think it needs a patch for 4.16-rc1 to make it work again. Otherwise I am happy that we finally can get the RPi working without btattach. Next step is to also read out and set the PCM configuration. Regards Marcel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-22 18:50 ` Marcel Holtmann @ 2018-02-23 13:40 ` Stefan Wahren 2018-02-26 8:13 ` Marcel Holtmann 0 siblings, 1 reply; 20+ messages in thread From: Stefan Wahren @ 2018-02-23 13:40 UTC (permalink / raw) To: Marcel Holtmann; +Cc: Eric Anholt, Frédéric Danis, Bluez mailing list [-- Attachment #1: Type: text/plain, Size: 4277 bytes --] Hi Marcel, > Marcel Holtmann <marcel@holtmann.org> hat am 22. Februar 2018 um 19:50 geschrieben: > > > Hi Stefan, > > >>> > >>> After enabling bluetooth scanning i will see these error messages periodically: > >>> > >>> [ 815.939839] Bluetooth: hci0: last event is not cmd complete (0x0f) > >>> [ 831.302476] Bluetooth: hci0: last event is not cmd complete (0x0f) > >>> [ 847.303953] Bluetooth: hci0: last event is not cmd complete (0x0f) > >>> [ 863.305284] Bluetooth: hci0: last event is not cmd complete (0x0f) > >>> [ 879.306838] Bluetooth: hci0: last event is not cmd complete (0x0f) > >> > >> I really need to hook up the error messages into the btmon output since then we can trace where these are coming from. Anyway, can you btmon -w trace.log from before loading the module and this error showing up. > > > > I attached the log. According to dmesg this error happend only once during the trace. > > I will add bt_dev_err tracing to be include in btmon and that way we can figure out where that error happens. Or do you have a trace.log and dmesg -T where we can correlate it based on time. Please look at this attachment and the following output (issue appears every 16 seconds after enabling scanning even if i use a baudrate of 115200): 2018-02-23T14:12:52,454443+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:13:08,454601+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:13:24,453167+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:13:40,453414+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:13:56,453859+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:14:12,453864+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:14:28,453966+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:14:44,455381+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:15:00,452972+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:15:16,453733+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:15:32,453318+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:15:48,453495+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:16:04,452430+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:16:20,452531+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:16:36,452813+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) 2018-02-23T14:16:52,453043+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) I also noticed a different issue (only tested 4.15 yet), sometimes if i try to unload "modprobe -r hci_uart" the command blocks forever. There is no crash just the command hangs. > > >>> Btw: Linus Wallej applied the GPIO expander driver > >> > >> That is awesome. Do you see any difference now if you hook up the GPIO in DT. Mind you to change the resources part to allow using only the shutdown GPIO and not having the device-wakeup GPIO. > > > > The RPi Zero W doesn't have a GPIO expander and the RPi 3 also uses the BT_ON line (via GPIO expander). So i don't expect any difference between them. > > So on the Zero W the BT_ON GPIO is exposed without the expander? And the 3 needs the expander? Is that how they are designed? Yes. Yes. I only have the firmware devicetree file [1] as reference. Btw there is another difference between Zero W and 3. The Zero W could uses the hardware flow-control pins, the 3 not. How does the Broadcom BT driver know about the flow control? Is it sufficient to add "uart-has-rtscts"? [1] - https://github.com/raspberrypi/firmware/blob/master/extra/dt-blob.dts#L1536 > I have Zero W here, but no toolchain available for it. How about using the Linaro ARMHF toolchain? Stefan > > >> Also let me guess, 4.15 is fine, but 4.16-rc1 or later fails because of the Apple changes. > > > > Didn't tried it yet. > > If you have a chance, please do. I think it needs a patch for 4.16-rc1 to make it work again. Otherwise I am happy that we finally can get the RPi working without btattach. Next step is to also read out and set the PCM configuration. > > Regards > > Marcel > [-- Attachment #2: trace2.log --] [-- Type: text/x-log, Size: 66351 bytes --] btsnoop\0\0\0\0\x01\0\0\aÑ\0\0\0\x1f\0\0\0\x1fÿÿ\0\f\0\0\0\0\0âC÷éÅtLinux version 4.15.0+ (armv6l)\0\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0âC÷éÅBluetooth subsystem version 2.22\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0âC÷éÇ2\x01\0\0\0\x02\0\x01\x0e\0\x01\0\0\0\x10btmon\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\0\0\0\0\0\0âCù\x04H\x7f\0\x03\0\0\0\0\0\0hci0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\0\0âCù\x04TU\0\0\0\b\0\0\0\b\0\0\0 \0\0\0\0\0âCù\x04T\0\0\0\0\0\0\x0f\0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCù\x04Z\x0f\x18ü\x06\0\0\0Â\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x04¡£\x0e\x04\x01\x18ü\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCù\x04¥x\x03\f\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x04²á\x0e\x04\x01\x03\f\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCù\x06j\x01\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCù\x06vF\x0e\f\x01\x01\x10\0\a\0\0\a\x0f\0 "\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCù\x06z9yü\0\0\0\0\f\0\0\0\f\0\0\0\x03\0\0\0\0\0âCù\x06Ä\x0e \x01yü\0^þÿÿ\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCù\x06Xnü\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCù\x06\x0e\f\x01nü\0.\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCù\x06Ý\x14\f\0\0\0\0þ\0\0\0þ\0\0\0\x03\0\0\0\0\0âCù\x06ì°\x0eü\x01\x14\f\0BCM43430A1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCù\x06òz.ü\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x06øó\x0e\x04\x01.ü\0\0\0\0I\0\0\0I\0\0\0\x02\0\0\0\0\0âCù\aðÔLüF\x10\x18!\0BRCMcfgS\0\0\0\02\0\0\0\x01\x01\x04\x18\0\0\0\x03\x06¬\x1f\x12¡CC\0\x01\x1cR\x18!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0þ\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\b\x11\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\b\x15&LüÿR\x18!\0BRCMcfgD\0\0\0\0V\0\0\x03\x03'BCM43438A1 37.4MHz Raspberry Pi 3-0062\0\x16\x03\x02h\x01\x02\x01\x04\b\x012\0\x01\0\0\0\x01\0\0\0\0\02\0ÿ\x0f\0\0b\b\0\0p\0d\0\0\0\0\0\0\0¬\02\0ÿÿÿ\x01\0\0/\0\02\0\0ðÿ\x0f\0\x10\x11\x01x\02\0ÿÿÿÿ¹¸¸¸`, \0ÿ\0\0\0\0\0\0\0\x10\x012\0\0\0ÿÿ\0\0\x18\x18l\x01`\0ÿÿÿÿ\b\0\0\0p\x01`\0ÿÿÿÿ\f\0\0\0t\x01`\0ÿÿÿÿ\x18\0\0\0x\x01`\0ÿÿÿÿ\x1c\0\0\0|\x01`\0ÿÿ\0\0!\0\0\0\x01`\0ÿÿÿÿ&\0\0\0`\x06A\0ÿÿ\0\03\x03\0\0d\x06A\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\brH\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\bvPLüÿM\x19!\0ÿÿ\0\0):\0\0d\x06A\0ÿÿ\0\0):\0\0h\x06A\0ÿÿ\0\0h\x05\0\0l\x06A\0ÿÿ\0\0¨0\0\0p\x06A\0ÿÿ\0\0è>\0\0t\x06A\0ÿÿ\0\0\x1c2\0\0x\x06A\0ÿÿ\0\0»3\0\0|\x06A\0ÿÿ\0\00 \0\0P\x03A\0ÿÿ\0\0\x10\x05\0\0T\x03A\0ÿÿ\0\0 \0\0\\x03A\0ÿÿ\0\0 \b\0\0`\x03A\0ÿÿ\0\0\x0f\a\0\0d\x03A\0ÿÿ\0\0\x05\b\0\0l\x03A\0ÿÿ\0\0\x0e \0\0t\x03A\0ÿÿ\0\0\x05 \0\0x\x03A\0ÿÿ\0\0\x10 \0\0@\x01A\0ÿÿ\0\0\x10\x05\0\0D\x01A\0ÿÿ\0\0 \0\0L\x01A\0ÿÿ\0\0 \b\0\0P\x01A\0ÿÿ\0\0\x0f\a\0\0T\x01A\0ÿÿ\0\0\x05\b\0\0\\x01A\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\bÓJ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\b×LüÿH\x1a!\0\0ÿÿ\0\0\x0e \0\0`\x01A\0ÿÿ\0\0\x05 \0\0d\x01A\0ÿÿ\0\0\x10 \0\0à\x06A\0ÿÿ\0\0q \0\0\x01`\0ÿ\0\0\0\x06\0\0\0d\x01`\0ÿÿÿÿ\x06\0\0\0H, \0ÿ\0\0\0\x01\0\0\0\b@ \0l\b\0\0\0\0\0\0ô0 \0ÿ\0\0\0\x01\0\0\0\x17\x03\x04\x12\0\x04\x01 \x01\x04\x02\x11\0\0"\x03\x02\0\0ð\x01\x10\x04\0\0\0(\x152\0\0\0\x7fþ4\x10 \x02ð\x01\x10\x01\0\0\0(\x152\0\0\0\x7fþ4\x10 \x02ð\x01\x10\x02\0\0\0(\x152\0\0\0\x7fþ4\x10 \x02ð\x01 \x01\x03\0\0\0\x10\x152\0\0\0\0\0ððð\0\x14\x152\0\0\0\0\0ððð\0\x18\x152\0\0\0\0\0ððð\0\x1c\x152\0\0\0\0\0LL\0\0 \x152\0ÿÿúÿ\x05\x01\x06\x06$\x15\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù 4\x13\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù 8DLüÿC^[!\02\0\0\0\0\0\0\0\0\0(\x152\0\0\0\x7fþ4\x10 \x024\x152\0\0\0\0\0ð\0\0\08\x152\0\0\0\0\0\0\0\0\0P\x152\0\0\0\0\0Ê\x06\0\0, d\0\x0e\0\0\0\x0e\0\0\0ø\0d\0Q\0\0\0\x10\0\0\0x\bd\0\x02\0\0\0\0\0\0\0\x01\aµ\x03\x04\x06 #<Zn}\x058\x04\x04\x04\x04Ø\x04t\x04Ä\x04Ø\x04Ä\x04\x14\x05°\x04\0\x05\x14\x05\0\x05P\x05ö\x04F\x05Z\x05F\x05\x05<\x05\x05 \x05\x05Ü\x05\x05Ò\x05æ\x05Ò\x05"\x06\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ¨\x02¨\x02¨\x02¨\x02¨\x02ä\x02ä\x02ä\x02ä\x02ä\x02 \x03 \x03 \x03 \x03 \x03f\x03f\x03f\x03f\x03f\x03¬\x03¬\x03¬\x03¬\x03¬\x03ò\x03ò\x03ò\x03ò\x03ò\x03\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù æ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù ·Lüÿ>\x1c!\0\x06\0\0\0`\0\x05\x02ÿ \x02ÿ¤\x02ÿ¨\x02ÿ¬\x02ÿ\0\0`\0\x05È\x02ÿÌ\x02ÿÐ\x02ÿÔ\x02ÿØ\x02ÿ\0\0`\0\x05\x03ÿ\x03ÿ\x03ÿ\x03ÿ\x03ÿ\0\0`\0\x05\x03ÿ \x03ÿ¤\x03ÿ¨\x03ÿ¬\x03ÿ\0\0`\0\x05\x03ÿ\x03ÿ \x06ÿ´\x02ÿ8\aÿ\0\0`\0\x03¤\x06ÿ\\x06ÿ\x06ÿLLLLLAAAAA ¦¥¥¥¥¤ô\x18\x03úe\x03Ì_____MMMMM¥¤¤¤¤¤ô\x1a\x03úf\x03ÌlllllXXXXX¥¤¤¤¤¤ô\x1f\x03úf\x03Ì iiiii¥¤¤¤¤¤ô\x1f\x03úf\x03Ìttttt¥¤¤¤¤¤ô\x1f\0\0\0#\0\0\0#ÿÿ\0\r\0\0\0\0\0âCù ßÃ\x06\vbluetoothd\0Bluetooth daemon 5.43\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù ÷Å\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù øÔLüÿ9\x1d!\0\x03úg\x03̳³³³³¥¤¤¤¤¤ô\x1f\x03úg#ÿ\x01\aµ\x03\0\x06 #<Zn}\x05\\x03>\x03H\x03\\x03H\x03\x03z\x03\x03\x03\x03 \x03 \x03p\x03p\x03R\x03*\x03>\x03z\x03z\x03z\x03R\x03f\x03\x03\x03\x03H\x03\\x03\x03\x03\x03\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿD\x020\x02&\x02\x12\x02\x1c\x02\x02l\x02b\x02N\x02X\x02¼\x02¨\x02¼\x02¼\x02¼\x02\x02\x03î\x02ä\x02Ð\x02Ú\x02H\x034\x03*\x03\x16\x03 \x03\x03z\x03p\x03\\x03f\x03\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x06\0\0\0`\0\x05\x02ÿ \x02ÿ¤\x02ÿ¨\x02ÿ¬\x02ÿ\0\0`\0\x05È\x02ÿÌ\x02ÿÐ\x02ÿÔ\x02ÿØ\x02ÿ\0\0`\0\x05\x03ÿ\x03ÿ\x03ÿ\x03ÿ\x03\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù UT\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù Y\x1aLüÿ4\x1e!\0ÿ\0\0`\0\x05\x03ÿ \x03ÿ¤\x03ÿ¨\x03ÿ¬\x03ÿ\0\0`\0\x05\x03ÿ\x03ÿ \x06ÿ´\x02ÿ8\aÿ\0\0`\0\x03¤\x06ÿ\\x06ÿ\x06ÿC977885565 ¨¦¦¦¤¤ô\x18\x03úe\x03ÌLEABC@<;;< ¨¦¦¦¤¤ô\x1a\x03úf\x03Ì\RRRRKGGGG ¨¦¦¦¤¤ô\x1f\x03úf\x03Ìjc__dWSRRS ¨¦¦¦¤¤ô\x1f\x03úf\x03Ì|qnnqa]\\] ¨¦¦¦¤¤ô\x1f\x03úg\x03Ì\x7f\x7fohggh ¨¦¦¦¤¤ô\x1f\x03úg#ÿ\x02\a\x7f\x04\x06\x058\x04\x04\x04\x04Ø\x04t\x04Ä\x04Ø\x04Ä\x04\x14\x05°\x04\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù µÄ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù ¹YLüÿ/\x1f!\0\0\x05\x14\x05\0\x05P\x05ö\x04F\x05Z\x05F\x05\x05<\x05\x05 \x05\x05Ü\x05\x05Ò\x05æ\x05Ò\x05"\x06\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x01\0\0\0`\0\x05\x02ÿ \x02ÿ¤\x02ÿ¨\x02ÿ¬\x02ÿLLLLL_____lllll ³³³³³\x02\a\x7f\0\x06\x05\\x03>\x03H\x03\\x03H\x03\x03z\x03\x03\x03\x03Ô\x03¶\x03À\x03Ô\x03À\x03\x1a\x04ü\x03\x06\x04\x1a\x04\x06\x04`\x04B\x04L\x04`\x04L\x04¦\x04\x04\x04¦\x04\x04\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x14ÿ\x01\0\0\0`\0\x05\x02ÿ \x02ÿ¤\x02ÿ¨\x02ÿ¬\x02ÿC9778LEABC\SRRRjc__d|qnnq\x7f\x7f\0\a\x04?\0\0\0\x03\x01Ä\x01\b \0\b\b\0\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0âCù Þ±\x02\0\0\0\x02\0\x01\x0e\0\x01\0\0\0\x10bluetoothd\0\0\0\0\0\0\0\0\0!\0\0\0!ÿÿ\0\r\0\0\0\0\0âCù æ \x06\vbluetoothd\0Starting SDP server\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\v\x163\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\v\x17Lüÿ* !\0\x04\x04\0\0\x10\x10\0\0\b\b\0\0\x18\x18\0\0((\0\0 \0\0,,\0\0((\0\000\0\0AA\0\044\0\0II\0\0 \x01\x01PP\0\0$$\x01\x01XX\0\0@@\x01\x01\0\0``\x01\x01\0\0dd\x01\x01\0\0``\x02\x02\0\0dd\x02\x02\0\0hh\x02\x02\0\0ll\x02\x02\0\0pp\x02\x02¥¥\0\0PP\x03\x03¦¦\0\0TT\x03\x03ÝÝ\0\0tt\x03\x03åå\0\0xx\x03\x03íí\0\0\x03\x03îî\0\0üü\x03\x03ïï\0\0¼¼\x03\x03ïï\0\0¼¼\x03\x03\x03\x01dÈ \0@\0\0\x01@\0\0\x01@\0\0\x01@\0\0\x01@\0\0\x01A\0\x04\x01I\0$\x01P\0@\x01X\0`\x01R\0H\x01S\0L\x01T\0P\x01U\0T\x01V\0X\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\vt\b\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\vwÆLüÿ%!!\0W\0\\x01f\0\x01n\0¸\x01v\0Ø\x01~\0ø\x01\x7f\0ü\x01\x7f\0ü\x01\x7f\0ü\x01\x7f\0ü\x01\x7f\0ü\x01\x03\x01:(\v \0\x01\0\0\x01\0\0\x05\0\0\r\0\0\x1d\0\0\x0e\0\0\x1e\0\0>\0\0\x0f\0\0\x1f\0\0?\0\0\x7f\0\0ÿ\0\0ÿ\0\0ÿ\0\0ÿ\0\0ÿ\0\0ÿ\0\0\x03\x01\x05\b\b \0\v\x03\x01\x05\f\b \0\v\x03\x01\x05\x10\b \0\x0f\x03\x01\x05\x14\b \0\x0f\x04\a\x01\x042\x1f\0\0\x1d\0\0\x1c\x01\0\x1a\x02\0\x17\x02\0\x15\x12\0\x13U\0\x11d\0\x0f\x11\0\x0e\x03\0\r\x14\0\vP\0 d\0 #\0\b#\0\a\x03\0\a\x16\0\x06\x15\0\x05\x13\0\x05\x16\0\x04\x13\0\x04&\0\x04\x19\0\x03\x05\0\x03\b\0\x03*\0\x02\x03\0\x02\x16\0\x02 \0\x02+\0\x02=\0\x02?\0\x01\x02\0\x01\x15\0\x01\x18\0\x01:\0\x01\x1d\0\x01\0\0\00\0\0\00ÿÿ\0\r\0\0\0\0\0âCù\vÁ.\x04\vbluetoothd\0kernel lacks bnep-protocol support\0\0\0\04\0\0\04ÿÿ\0\r\0\0\0\0\0âCù\vÂç\x04\vbluetoothd\0System does not support network plugin\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\vÔb\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\vÕ_Lüÿ "!\0\x1f\0\x01\0\x01ï\0\x01?\x01\x01\x01\x01Ï\x01\x01\x0f\x02\x01O\x02\x01\x7f\x02\x01¯\x02\x01Ï\x02\x01\0\0\x01\0\0\x04\a\x01\02\x1f\0\0\x1d\0\0\x1c\x01\0\x1a\x02\0\x17\x02\0\x15\x12\0\x13U\0\x11d\0\x0f\x11\0\x0e\x03\0\r\x14\0\vP\0 d\0 #\0\b#\0\a\x03\0\a\x16\0\x06\x15\0\x05\x13\0\x05\x16\0\x04\x13\0\x04&\0\x04\x19\0\x03\x05\0\x03\b\0\x03*\0\x02\x03\0\x02\x16\0\x02 \0\x02+\0\x02=\0\x02?\0\x01\x02\0\x01\x15\0\x01\x18\0\x01:\0\x01\x1d\0\x01\x1f\0\x01\0\x01ï\0\x01?\x01\x01\x01\x01Ï\x01\x01\x0f\x02\x01O\x02\x01\x7f\x02\x01¯\x02\x01Ï\x02\x01\0\0\x01\0\0\x03\a+\x01\0\0\0\x01\0\0\0\0\x14 \0\x04\0\0\0\0\0\0 \x02þ\väþ\x1c\x01äþ\x1c\x01 \x02þ\vñÿ\x0f\0ñÿ\x0f\0\x05\a$ÿ\x01\b\b\f\0\b\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\f1Õ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\f6\x15Lüÿ^[#!\0\x04\x02\0\x03ü\x04ø\x05ô\x06ð\a\f\0\b\x01\x04\x02\0\x03ü\x04ø\x05ô\x06ð\a\x0f\x03(\x02x\x14\x7fZ\0\x14\x02\x14\x1e\0\x02\x03\0\x1eª3\x19\x05Ï\0 \0\0\0\0\x02\0\0¢\0\0\0\0\0\0\0\0\x03\x01\x05\x18\x13!\0Ä\x03\x01\x05É" \0\0\x03\x01\fÜ\x1d \0\x01\x010\0\x02 \0\x03\x01\x05H, \0\x01\x03\x01\x05$3 \0\0\x03\x01\x05N\x05 \0\0\x03\x01\x06\b\x1e \0\0\0\x03\x01\b¸( \0\0\0\0\0\x03\x01\x05í% \0\0\x03\x01\x06Æ2 \0*\x0e\x03\x01\x06¬, \0ð\0\x03\x01\x06ì' \0\a\x03\x01\x054 \0\0\x04\x03\f \0 \0\x14\x14\x1af \x15\0\0\x05\x03 \0^[(Pÿÿ?\0\x05\x03\x1f\fÂ\x01PP®8º \x05\0ÿÿ\aã2\0¸¨Æÿ\x11\x03\x04@\0\0 \x03\x04Ô0\0\0\02\0\0\02ÿÿ\0\r\0\0\0\0\0âCù\f\x03\vbluetoothd\0Failed to open RFKILL control device\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\f½\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\f¿Lüÿ\x16$!\0\0\0\x03\x01\x14Äa\r\0<\x1c \04\x1c \0,\x1c \0\0 \x14\0\x03\x01È\x12Ôa\r\0\0\0\0\0[ \0¸Ø \0\x18× \0L× \0× \0´× \0è× \0\x1cØ \0PØ \0Ø \0\0\0\0\0w[\x03\0Gj\x03\0o\x0f\r\0\0\0\0\0)\x0f\r\0\0\0\0\0½_\x03\0 l\x03\0ëa\x03\0b\x03\0;V\x03\0]Ñ\a\0ß×\a\0«|\a\0\0\0\0\0\x13\r\0\0\0\0\0c\x13\r\0é~\a\0µ}\a\0©\x7f\a\0\x1dÎ\a\0]Ñ\a\0ß×\a\0çÍ\a\0\0\0\0\0û\x13\r\0\0\0\0\0½\x13\r\0¥Ñ\a\0«Ò\a\0g×\a\0\x1dÎ\a\0ÿ\0\0\08 !\0\0\00\x10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0;\x1e\r\0A\x1e\r\0Ý\x1e\0\0\0\x06\0\0\0\x06ÿÿ\0\x10\0\0\0\0\0âCù\f¦?\x02\0\0\0\x01\0\0\0\0\f\0\0\0\fÿÿ\0\x11\0\0\0\0\0âCù\f½Þ\x02\0\0\0\x01\0\x01\0\0\x01\x0e\0\0\0\0=\0\0\0=ÿÿ\0\r\0\0\0\0\0âCù\fï\x06\vbluetoothd\0Bluetooth management interface 1.14 initialized\0\0\0\0\x06\0\0\0\x06ÿÿ\0\x10\0\0\0\0\0âCù\fƳ\x02\0\0\0\x02\0\0\0\0Õ\0\0\0Õÿÿ\0\x11\0\0\0\0\0âCù\fÇ \x02\0\0\0\x01\0\x02\0\0A\0#\0\x03\0\x04\0\x05\0\x06\0\a\0\b\0 \0 \0\v\0\f\0\r\0\x0e\0\x0f\0\x10\0\x11\0\x12\0\x13\0\x14\0\x15\0\x16\0\x17\0\x18\0\x19\0\x1a\0^[\0\x1c\0\x1d\0\x1e\0\x1f\0 \0!\0"\0#\0$\0%\0&\0'\0(\0)\0*\0+\0,\0-\0.\0/\00\01\02\03\04\05\06\07\08\09\0:\0;\0<\0=\0>\0?\0@\0A\0B\0C\0\x03\0\x04\0\x05\0\x06\0\a\0\b\0 \0 \0\v\0\f\0\r\0\x0e\0\x0f\0\x10\0\x11\0\x12\0\x13\0\x14\0\x15\0\x16\0\x17\0\x18\0\x19\0\x1a\0^[\0\x1c\0\x1d\0\x1e\0\x1f\0 \0!\0"\0#\0$\0%\0\0\0\0\x06\0\0\0\x06ÿÿ\0\x10\0\0\0\0\0âCù\fÉ5\x02\0\0\0\x03\0\0\0\0\v\0\0\0\vÿÿ\0\x11\0\0\0\0\0âCù\fÉc\x02\0\0\0\x01\0\x03\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\fð`\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\fñLüÿ\x11%!\0\r\0ÿ\x1f\r\0\0\f\0\0û\x06\07\r\0s8\r\0\x1f\x02\a\0Á\x03\a\0\0\0\0\0}\x06\a\0ç \a\0a8\r\0þ\x06\0a\x04\a\0\0\0\0\0Ûæ\x02\0¹8\r\0\ræ\x02\0ýæ\x02\0Ëì\x02\0\0\0\0\0ýè\x02\0\0\0\0\0é\x02\0gë\x02\0ùç\x02\0\x01\x02\x04\0\x01\x04\0\0\0\0\0\0\x01\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0d\0\0\0\0\0Â\v£\x12 \x17N^[f\x1e\x03!G#F%\x10'®((*+Å,ñ- /\x100 1ô1Ò2¦3p415ê5\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\rNá\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\rRLüÿ\f&!\06F7ê78 9³9B:Ë:Q;Ó;Q<Ë<B=¶='>>\0?h?Ï?3@@ô@QA¬A\x06B^B´B\bC[C¬CüCJDDâD-EvE½E\x04FIFFÑF\x13GUGGÔG\x13HQHHÉH\x04I?IxI±IéI JWJJÂJ÷J+K^KKÃKõK&LVLL¶LåL\x13MAMoMMÈMôM NKNvN NÊNôN\x1dOFOnOO¾OåO\fP3PYP\x7fP¥PÊPïP\x13Q8Q\QQ£QÆQéQ\fR.RPRrRRµRÖR÷R\x17S7SWSwSS¶SÕSôS\x13T1TPTnTT©TÇTäT\x01U\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\r¯\x16\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\r³\x01Lüÿ\a'!\0\x1eU:UWUsUU«UÇUãUþU\x19V4VOVjVVV¹VÓVíV\aW W:WSWlW WW·WÐWèW\x01X\x19X1XIXaXxXX§X¾XÖXíX\x04Y\x1aY1YHY^YtYY¡Y·YÍYâYøY\x0eZ#Z8ZNZcZxZZ¡Z¶ZËZßZôZ\b[\x1c[1[E[Y[l[[[¨[»[Î[â[õ[\b\^[\.\A\T\g\z\\\±\Ã\Ö\è\ú\\f]\x1e]0]B]T]e]w]]]«]½]Î]ß]ð]\x01^\0\0\0\0\0\0\0\0\0\0p\x01e\0\x01\0\0\0\x01\0\0\0\0\0\0\0`\x01e\0\x01\0\0\0\x01\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x0e\x10\0\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x0e\x13pLüÿ\x02(!\0\0À\x04A\0\0\0\0\0ÿÿ\0\0\0\0\0\0!O\r\0¼¼¼¼CCCC\0\0\0\0¼\x01`\0\x01\0\0\0\x01\0\0\0\0\0\0\0!¶\x02\0¼¼¼¼CCCC\0\0\0\0 \0`\0\0\0\0\0ÿ\0\0\0\0\0\0\0\x1c\0`\0@\0\0\0ÿ\0\0\0\0\0\0\0\x18\0`\0\0\0\0\0ÿ\0\0\0\0\0\0\0\x14\0`\0ð\0\0\0ÿ\0\0\0\0\0\0\0À\x04A\0\x01\0\0\0ÿÿ\0\0\0\0\0\0,\0`\00\0\0\0ÿ\0\0\0\0\0\0\0$\0`\0ÿ\0\0\0ÿ\0\0\0\0\0\0\0O\r\0¼¼¼¼CCCC\0\0\0\0è\x02`\0@\0\0\0ð\0\0\0\0\0\0\0d\x04A\0º@\0\0ÿÿ\0\0\0\0\0\0`\x04A\0ÀP\0\0ÿÿ\0\0\0\0\0\0µN\r\0¼¼¼¼CC\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x0ep\x15\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x0et Lüÿý(!\0CC\0\0\0\04\x06A\0\x18\0\0ÿÿ\0\0\0\0\0\0`\x01`\0U\0\0\0ÿ\0\0\0\0\0\0\00\x04A\0é\x02\0\0ÿÿ\0\0\0\0\0\0Ü\x06A\0ñ\0\0ÿÿ\0\0\0\0\0\0À\x04A\0!\0\0\0ÿÿ\0\0\0\0\0\0\x04A\0\0\0\0\0ÿÿ\0\0\0\0\0\0'P\r\0¼¼¼¼CCCC\0\0\0\0SP\r\0¼¼¼¼CCCC\0\0\0\0ÅO\r\0¼¼¼¼CCCC\0\0\0\0\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0 \x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0¤\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0¨\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0¬\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0È\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0Ì\x02`\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x0eØ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x0eÜ[Lüÿø)!\0\0\0\0ÿ\0\0\0\0\0\0\0Ð\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0Ô\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0Ø\x02`\0\0\0\0\0ÿ\0\0\0\0\0\0\0ÝN\r\0¼¼¼¼CCCC\0\0\0\0·\x02\0¼¼¼¼CCCC\0\0\0\0ð\0d\0\x01\0\0\0ÿ\0\0\0\0\0\0\0ä\0d\0\f\0\0\0ÿ\0\0\0\0\0\0\0à\0d\00\0\0\0ÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ü\x02`\0\x01\0\0\0ÿ\0\0\0\0\0\0\0¼\x01`\0\x01\0\0\0ÿ\0\0\0\0\0\0\0!O\r\0¼¼¼¼CCCC\0\0\0\0\f\x01`\0\0\0\0\0ÿ\0\0\0\0\0\0\0\x7fP\r\0¼¼¼¼CCCC\0\0\0\0`\x01e\0\x01\0\0\0ÿÿ\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x0f8û\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x0f=Lüÿó*!\0p\x01e\0\x01\0\0\0ÿÿ\0\0\0\0\0\0ø\0d\0ß\0\0\0ÿÿ\0\0\0\0\0\0È\0d\0\x18\0\0\0ÿÿ\0\0\0\0\0\0 \0`\0¾\0\0\0ÿ\0\0\0\0\0\0\0\x1c\0`\0ÿ\0\0\0ÿ\0\0\0\0\0\0\0\x18\0`\0\x0f\0\0\0ÿ\0\0\0\0\0\0\0\x14\0`\0ÿ\0\0\0ÿ\0\0\0\0\0\0\0$\0`\0ÿ\0\0\0ÿ\0\0\0\0\0\0\0,\0`\00\0\0\0ÿ\0\0\0\0\0\0\0Ü\x04`\0\b\0\0\0ÿ\0\0\0\0\0\0\0è\x04A\0\x02Â\0\0ÿ\0\0\0\0\0\0\0d\x04A\0º@\0\0ÿÿ\0\0\0\0\0\04\x06A\0\0H\0\0ÿÿ\0\0\0\0\0\0è\x02`\0E\0\0\0ÿÿ\0\0\0\0\0\0'P\r\0¼¼¼¼CCCC\0\0\0\0SP\r\0¼¼¼¼CCC\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x0fs\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x0f#Lüÿî+!\0C\0\0\0\0µN\r\0¼¼¼¼CCCC\0\0\0\0ÝN\r\0¼¼¼¼CCCC\0\0\0\0Q\r\0¼¼¼¼CCCC\0\0\0\0P\r\0¼¼¼¼CCCC\0\0\0\0À\x04A\0!\0\0\0ÿÿ\0\0\0\0\0\03Q\r\0¼¼¼¼CCCC\0\0\0\0åO\r\0¼¼¼¼CCCC\0\0\0\0ð\0d\0\x01\0\0\0ÿ\0\0\0\0\0\0\0ä\0d\0\f\0\0\0ÿ\0\0\0\0\0\0\0à\0d\00\0\0\0ÿ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v \x02\0N\r\09 \x02\0W \x02\0Ó \x02\0{¡\x02\0µ¡\x02\0Å¢\x02\0\0\0\0\0\x11(\r\0\x03\0\0\0Í/\r\0\x06\0 \0c0\r\0\x04\0\b\0c1\r\0\x04\0\x06\0u1\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x0fûù\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x0fÿÔLüÿé,!\0\r\0\x03\0\a\0\x05)\r\0\0\0\x0e\0UD\r\0 \0\x06\0\x15)\r\0#\0\0\0U\r\0\x04\0\x06\0(\r\0\r\0\x06\0ï.\r\0\0\0\0\0/\r\0\x03\0\x0e\0¾\x01\0\0\0\x06\0O)\r\0\0\0\x06\0w)\r\0 \0\x06\0 1\r\0\f\0\x06\0\x15+\r\0 \0\0\0{+\r\0\a\0\0\0)\r\0\x1c\0\0\0Í*\r\0\x03\0\0\0\0\0\0\0%\0\0\04\r\0\x10\0\0\0\0\0\0\0\x03\x01\x05-\f!\0\0\x03\x01\x05,\f!\0\x03\x03\x01\x05+\f!\0\0\x03\x01\x05*\f!\0\x01\x03\x01\x05(\f!\0\x01\x03\x01\x05)\f!\0\0\x03\x01\b$\f!\0¹¹»¹\x03\x01\b \f!\0¹¹»¹\x03\x01\x05\x1c\f!\0\0\x03\x01\x06\x1e\f!\0\0\0\x03\x01(ð\v!\0Rfüü>Rýý*>þ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x10\H\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x10_àLüÿä-!\0þ\x16*ÿÿ\x02\x16\0\0î\x02\x01\x01Úî\x02\x02ÆÚ\x03\x03²Æ\x04\x04\x03\x01\x05ë\v!\0\0\x03\x01\x05ì\v!\0\0\x03\x01\x05í\v!\0\0\x03\x01\x05é\v!\0\0\x03\x01\x05è\v!\0\0\x03\x01\x05ê\v!\0\0\x03\x01\x06î\v!\0\x01\x03\x01\bä\v!\0(\0\0\0\x03\x01\bà\v!\0\x0f\0\0\0\x03\x01\x05Þ\v!\0¶\x03\x01\x05ß\v!\0ª\x03\x01\x05Ü\v!\0(\x03\x01\x05Û\v!\0\x01\x03\x01\x05Ú\v!\0\0\x03\x01\x05Ø\v!\0\0\x03\x01\x05Ù\v!\0\0\x03\x01¤\x038 !\0\x01`\0\x02`\0\x02`\0\x02`\0\x04A\0\x04A\0\f\0\0\0\0\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0\x06\0\0\0 \0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x10¼¨\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x10ÀLüÿß.!\0\0\x0f\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0ú\0\0\0\x15\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0ô\0\0\0^[\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0î\0\0\0!\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0è\0\0\0'\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0â\0\0\0-\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0Ü\0\0\01\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x03\0\0Ö\0\0\01\0\0\0]\0\0\0\x06\0\0\0]\0\0\0l\x02\0\0\x01\0\0Ð\0\0\01\0\0\0]\0\0\0\x06\0\0\0\x10\0\0\0\\x02\0\0\x01\0\0Ê\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x11\x1dN\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x11 ºLüÿÚ/!\0\0\01\0\0\0]\0\0\0\x06\0\0\0]\0\0\0J\x02\0\0\x01\0\0Ä\0\0\01\0\0\0]\0\0\0\x06\0\0\0]\0\0\0D\x02\0\0\x01\0\0¾\0\0\01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D\x02\0\0\x01\0\0\x03\x01\x054 !\0\x01\x03\x01\x051 !\0\x06\x03\x01\x052 !\0\x04\x03\x01\x053 !\0\0\x03\x01\x050 !\0\0\x03\x01\x10\0\x02\r\0@ð \0Æøð\0]÷ò½\x03\x01\x18\f\x02\r\0øØ!\x01h!ô@\x01 ±\x01õ\x01\÷1½\x03\x01\x14 \x02\r\0°\0$\x01HÄam÷¼\0? \0\x03\x01\x140\x02\r\00F¡{jF\v«\0ð@ûm÷\x16½\x03\x01\x18@\x02\r\0¨ip÷`ý°ño\x01Òl÷\x03½l÷ ½\x03\x01\x14T\x02\r\0 F\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x11}v\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x11ºLüÿÕ0!\0}\x02(\x01Ñ FGm÷>¸\x03\x01\x1cd\x02\r\0\x04H\0x\b±\0ðGû\x03 3÷\x1aýl÷]¾0 !\0\x03\x01\x10|\x02\r\0!\0\0ðIû up½\0\0\x03\x01 \x02\r\0\x02´\bF\x05ð\x15þ\x02¼ ±> [÷Õü±÷k¼½èð\0\0\x03\x01\x0e¤\x02\r\0\x10"¨÷Sý©÷ ¸\x03\x01\x10®\x02\r\0\x02Õ F\0ðëû¨÷ »\x03\x01\x16º\x02\r\0hF÷×ù\x10¹ Fu÷sú|½\0\0\x03\x01\x16Ì\x02\r\0¢÷¶ÿ\x18¹`h\b±u÷jú£÷K»\x03\x01\x1aÞ\x02\r\0±÷ ü!xø\x04\0B\x01Ó£÷0¿£÷¾\x03\x01\x18ô\x02\r\01¹Á\x01)\x03ѰøF\x10¤÷G¹¤÷W¹\x03\x01\f\b\x03\r\0\0ðþü\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x11Þ}\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x11â\x7fLüÿÐ1!\0|½\0\0\x03\x01\x10\x10\x03\r\0\0µ\0ð8ÿ]ø\x04ëpG\x03\x01\f\x1c\x03\r\0s÷Jür÷0º\x03\x01\x12$\x03\r\0 Fk÷\x03ÿ0Fu÷øp½\x03\x01\x162\x03\r\0 F\0ð\0þ\x18±Ôø d÷¿\x10½\x03\x01\x14D\x03\r\0 F\0ð\x05þÿ ø\x1d\x01f÷\x19½\x03\x01\x14T\x03\r\0 F\0ðýýÿ ø\x1d\x01e÷v¼\x03\x01\x18d\x03\r\0ÔøÔ\0®÷rø\0!ÔøØ\0d÷¸¾\0\0\x03\x01\x14x\x03\r\0\0ð?ÿ\b±¥÷_½¥÷m½\0\0\x03\x01\x14\x03\r\0£B\x01Ó§÷\x04¼D!§÷\x02¼\0\0\x03\x01\x14\x03\r\0\x01ðCø F½è\x10@j÷¾¾\0\0\x03\x01\x14¨\x03\r\0ø0\x01 F\0ðÑý¡÷¹\0\0\x03\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x12>÷\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x12BÑLüÿË2!\0\f¸\x03\r\0\x01ðDÿ Fp½\x03\x01\fÀ\x03\r\0½èøC\x02ð.¸\x03\x01\x10È\x03\r\0 F\x02ðwù\x01$÷ɽ\x03\x01\x16Ô\x03\r\0 F)F\x02ð\0ú\b±O÷¾O÷¾\x03\x01\x1eæ\x03\r\0aÁóÉ\x01\0)\x03Ð\x03(\x03ÐO÷ì¹O÷oºO÷ê¹\x03\x01\x1c\0\x04\r\0áy\x01)\x03Ð (\x03Ó÷å¼÷ê¼÷ò¼\0\0\x03\x01\x14\x18\x04\r\0 \x02!\x06"ã\x1c½è\x10@3÷P¹\x03\x01\x1c(\x04\r\0\x04p}÷¼û^÷mü[÷'ü[÷}ü[÷Æ»\0\0\x03\x01\x18@\x04\r\0\x02´0÷ú\x02¼ F0÷þ0÷j¿\0\0\x03\x010T\x04\r\0 K^[x3±ù\x1a\x10F1Z)\bØS÷ ¿ù\x1a\x10\x151\x1e\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x12|\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x12£[LüÿÆ3!\0)\x01ØS÷\x03¿S÷é¾\0\04 !\0\x03\x01\x1c\x04\r\0!z\x01)\x03Ð (\x03ÓS÷ë¾S÷ï¾S÷Û¾\0\0\x03\x01\x10\x04\r\0(F\x02ðþH÷\x02¼\0\0\x03\x014¤\x04\r\0Gò\x14\x01B\x03Ñ\bH\0x\0±\x10½\b u÷Áø\x01\0ùÐGò\x14\x02B\x02Ñ\x01"\x01H\x02p÷#¸´b\r\0\x03\x01\fÔ\x04\r\0\x02ð¾þ\x10½\0\0\x03\x01\x14Ü\x04\r\0\x15\x7f\x06-\x01ÐÂø\x1a@÷»\0\0\x03\x01\x14ì\x04\r\0 ±\b ø¢\0÷¹p½\0\0\x03\x01\x10ü\x04\r\0 F\x02ðÿ½èð\0\0\x03\x01\x14\b\x05\r\0è`\x01 ¨v\0 hv÷\x06¾\0\0\x03\x01\x10\x18\x05\r\0Èø\b\x10\x03ð\x02ør÷8¿\x03\x01L$\x05\r\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x13\x12\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x13\x14LüÿÁ4!\0\fI xA±\fI\bx(±\0 \bp IOð\x01\0\bp I\f \b` H\x01iAð\x01\x01\x01a\x01hAð\x01\x01\x01`\0 pGÚ\v!\0\x1e \0¶b\r\04 d\0`\x01e\0\x03\x01\x18l\x05\r\0f÷\x7fü\x18¹àiÀ\x02s÷¹s÷¹\0\0\x03\x01\x1c\x05\r\0\x05Ñ\x04H\0x\x10¹`}V÷\x1d¸\0\0V÷$¸Û\v!\0\x03\x01 \x05\r\0\0(\bÐ\0)\x06ÐBÈ¿@\x1a¸¿ \x1aùÑpG\0 pG\0\0\x03\x01\x1c´\x05\r\0ø\0 ð\x01\0ø\0h\x03\x01Õo÷d¹o÷l¹\x03\x01$Ì\x05\r\0\bÐ\x01\x06\x06Õø¨\0\x03ð@øÀ~À\a\x03Ðø\0o÷¹o÷¹\x03\x01$ì\x05\r\0°øØ\x10¨²p÷H\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x13q\x03\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x13tïLüÿ¼5!\0üùB\x04Ý0hø¨\0n÷\x05¾n÷\x05¾\0\0\x03\x01\x16\f\x06\r\0\x05Ð\0µj÷\bþj÷\x15ÿ\0½÷¿\x03\x01\x16\x1e\x06\r\0\b¹øD`ø²ø>\0÷P¾\0\0\x03\x01\x140\x06\r\0ø\0\x01 ø!\0}÷5¼\0\0\x03\x01\x14@\x06\r\0\x02-½èp@\x01Ðk÷ ½k÷p½\x03\x01\x10P\x06\r\0 F\x03ð\x1dø÷Ö¸\0\0\x03\x01 \\x06\r\0\x03ðPúp½\x03\x01 b\x06\r\0\x03ðzú\x10½\x03\x01\bh\x06\r\0\x10µ\x10½\x03\x01\bl\x06\r\0\x03ðàº\x03\x01\fp\x06\r\0\x03ðßú\x10½\0\0\x03\x01 x\x06\r\0\x03ð{ûp½\x03\x01\x14~\x06\r\0\x0f´\x03ð¤û\x0f¼½è\x10@÷2»\x03\x01\x1a\x06\r\0\0 \x0f´\x03ð^[\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x13Ñm\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x13Ò®Lüÿ·6!\0ü\x0f¼÷|ú h÷U¸\0\0\x03\x01\f¤\x06\r\0\x03ðüþ½èð\x03\x01\f¬\x06\r\0½èðO\x04ðo¸\x03\x01\x10´\x06\r\0b÷¯ûø\f\0d÷\»\x03\x01\fÀ\x06\r\0\x04ð\x03ùd÷µ¸\x03\x01 È\x06\r\0)F2F\x04ðóù\x06F,±9F\x04ðáù\aFb÷<¿b÷B¿\x03\x01\x14ä\x06\r\0\0-\x03Ð\x05-\x01Ðc÷X¸½èð\x03\x01 ô\x06\r\0\x04ðfûp½\x03\x01\x12ú\x06\r\0\x02Ñ\x01 L÷\x03¸\x04ð¨û\x10½\x03\x01 \b\a\r\0\x01 `ó\x0f$\x04ðþ\0\÷ýA÷Éø\b±\x04ðÔý\÷\b¾\x03\x01\x10$\a\r\0(F\x05ðÇú½èð\0\0\x03\x01\x140\a\r\0\x02ð ý F)Ft÷¢üO÷è¿\x03\x01 \0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x14/+\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x140iLüÿ²7!\0@\a\r\0\x05ðjûp½\x03\x01 F\a\r\0\x05ðûp½\x03\x01\x10L\a\r\0\x19±\x04F\0 ÷=»p½\x03\x01,X\a\r\0ø\00K¹\x05´\x05ðÂû\x03\0\x05¼^[±Fê\x03\x06b÷ѹ\x02K\x02ëB\x02b÷ ¹^\b\0\x03\x01\f\a\r\0\0ÀõX \x10½\x03\x01\f\a\r\0\x05ðÀûp½\0\0\x03\x01\x14\a\r\0 F\x02I2÷ü¦÷©¼±_\r\0\x03\x01\x14 \a\r\0\x05ðÐû\x01H\x02$¥÷î¿l \0\x03\x01\f°\a\r\0\x05ð(ü2÷л\x03\x01\x1c¸\a\r\0\x04F\rF\x05ð,ü\x10±\x02J2÷\x0f½p½\0\0Ä\x18 \0\x03\x01\x10Ð\a\r\0\x02(\x01ÙJ÷\x14¿J÷\x15¿\x03\x01\x0eÜ\a\r\0 F\x05ðyüL÷ ¸\x03\x01\x12æ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x14Ø\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x14\x18Lüÿ8!\0\a\r\0 F)F\x05ðü½èð\0\0\x03\x01\x14ô\a\r\0* b F\x05ðü\x02(J÷=¾\x03\x01<\x04\b\r\0\x03F\x10µ H\vL\x0f)0ù\x11 \x01Û\0 à\aH\0)°ù\0\0\x05ÝPC@\0\0õ\0@\0\f\0²#\x10½\0\0\0* \0Ôa\r\0\x03\x01\x01<\b\r\0pµ\x04F\÷\x06ø\x17MøØ\x018³\x16H\x17JAhAó\x10@\x1c\x10`Äë\x04\x10\x14J\0ë\x10\x02ë\0øÀ \x11H\a*\x16Ð\x11J\x12hR\x1e\x02` FÅø\f\x11[÷üt÷éýøÙ\x11Að\x01\x01 øÙ\x11t÷åý\0 p½\x03 p½\x01"éç\x01!\0p\x1d \0¤5 \0¬u \0 1 \0¨1 \0\x03\x01D¼\b\r\0pµ\fF°\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x14ê¦\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x14ëæLüÿ¨9!\0ù \x10@\x15F\x1eF\b\x18\vÕ@B\x19Fp÷Aú"F3F)F½èp@\x10Fp÷;¸\x19Fp÷6ú"F3F)F½èp@\x10Fp÷$¹\x03\x01\x1cü\b\r\0\x10µt÷¬ý\x04F0÷Øü F½è\x10@t÷¨½\0\0\x03\x01(\x14 \r\0\x10µ\aK\0"Sø"@B\x02Ñ@ð\x03\0\x10½R\x1c *õÛ@ð\x01\0\x10½Øa\r\0\x03\x01 8 \r\0A|\x02)\bÐ\x03)\x06Ð\0|\x16(\x03Ð\x17(\x01Ð\0 pG\x01 pG\x03\x01\x01T \r\0-éþC^[Lfx x\b±\x06F"à÷âù\b±&x\x1dà\x17H\0% FÐé\0\x12h\0Íé\x01 oFWø%\0\x04h\aà \x1fÿ÷Ôÿ\x10±ø\0`\x04à$hWø%\0 \0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x15HS\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x15ILüÿ£:!\0BóÑm\x1cí²\x03-ëÓ H\x01xB\aÐ\x06p\x03°1F½èðC\x02 t÷\¼½èþ\0\01 !\0Äa\r\0\0b\r\0\x03\x01\x12Ô \r\0+H\0!\x01aAaaÁapG\x03\x01\x1aâ \r\0\0 'K\x01F\x103Sø! I\x1c\x10C\x04)ùÓpG\x03\x01\x01ø \r\0þµ"N\x04\0\x1fFOð\0\x05\x06ñ\x10\x06\x04Ð\x01,\x02Ð\x02(-Ð4à\x10h\0ø\x04\0\x02ªhFq÷sÿ\x18I xB'Ò(%ÒA \0ð\x1f\0\x01"Vø!0\x02ú\0ò\f±C\x0fà\x13B\x01Ð\x17%\x17àßø0À\að\x01\a@\ø!@C<CLø!@\x13CFø!0\bà\0 \x01FFø \x10@\x1c\x04(úÓ\0à\x12%(Fþ½\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x15¦\x12\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x15§VLüÿ;!\0\x18k\r\0K) \0\x03\x01È\x01 \r\0-éðG\x04FøÒ\0\0ð5ú\x06F´øH\0´øJ\x10B\x03Ðø !§÷þþE\05Jдø"\x11 Fd÷;úF l\0& ô Oöÿy d\x04ëF\a·ø(\x01HE7ÐA\0PFo÷ÿ°ûõñF\x05û\x11§ø(\x01_êH\x10\x15ÔøÒ\0f÷¨ù@\x01 ÕOð`°ûõñiC@Fp÷ùø°ûõñ\x05û\x11\x01§ø(\x11@\x01\x10Õ·ø(\x01\x02#*F\0!c÷þ§ø(\x01\x01 °@!lÀó\0\0Aê@ dv\x1c\x06.ÁÓ½èð\x03\x01\x03P\v\r\0-éü_\x06FxÖø\x04 ñx\0ð\x0f\x04 ë\x01\0Oð\0\bÇy´Hß\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x16\x03Ô\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x16\x05\x10Lüÿ<!\0øÔ²\x01%\0xÁFH¹\x04,\aЮ÷sú ±Ûø\0\0\0!øü\x11§÷ûú\x01(\x01Ñø\adÑ®÷eú\0(`ЧH\0x0¹\x04,\x04ÑÛø\0\0øü\x01p»÷xQF\x04,\x1aÑÛø\0\x10:F\x01õpÍé\0\x01QFt÷)þÛø\0\x10\0 z\x018DR\x1c 1t÷\x1fþÛø\0\x10\bz\x01õq8DDzH\0x\0(°x@ê\a \x1dÐ\x01ðúúŲH$±\x06,\x02Ð\x04,\x05Ð&à\x05p0F¢÷öÿ!à\0x B\x1eÐ%ê\0\x01\x11ð\x03\bEê\0\x05\x17ÐE\x15ÐOð\x01 \x12à®÷ ùð±\x01 $±\x06,\x02Ð\x04,\x05Ð\x06àÛø\0\x10øü\x01\x01àOð\x01 zI\bpzO8hÀ\x05\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x16a\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x16bÕLüÿ=!\0\x15Õºñ\0\x0f\x12ÐxHzÀ\x06\x0eÕ0F¢÷®ÿ-à§÷3û\x01()Ñ\f±\x06,&Ñ0F¢÷ºÿ"à\x01,\x03Ñ0F¢÷ ÿ°±¹ñ\0\x0f Ð_êÈp\aÐiH\0x\x10±hH°÷\x1dÿ¢÷\ÿ_H\0x\x10±U±è\a\bÐ\x01 ½èü8h@\x05\x02Õ0F¡÷ïý\0 õç\x03\x01*â\f\r\0\x10µ à]H÷:ÿ\x04F@h\b±t÷\ý Ft÷YýWH÷"ÿ\0(ïÐ\x10½\x03\x01\x1c\b\r\r\0\x10µ\x04F÷¯ü\0(\x04Ñ`h½è\x10@t÷H½\x10½\x03\x01\x10 \r\r\0\x01(\x01Ð\0ðݸ\0ð¢¸\x03\x01È\x02,\r\r\0-éð_\0&F\x0fF4F¬÷,úX±\0%_ê\b\0 Ð\x01(\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x16¿G\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x16ÀLüÿ>!\0\x0fÐ\x10(\x15иñ\x11\x0f@Ñ\x18à\x01%òç§÷¿úF\x15 £÷ñû\x06F à÷\x7füF\x14 £÷éû\x06F\x03à§÷¯úF<F¹ñ\0\x0f&Ð\x18ðð\x0fßøÐ ßøÐ°ßøÐßøÐ\x1dÐø\0\0FF\x01(\x16Ñ\x14±\r±«÷æÿOF¹ø\0\0§÷×ùºø\0\0§÷×ù4±8à\x1d±ø\v\0¬÷\x05ø\0 0p½èð\0.ûÐ÷ü\x06F§÷Èù\x06û\0÷§÷Èù\x06F÷üFC·BìÙ§÷Àùªø\0\0§÷¸ù©ø\0\0\x14±\r±«÷´ÿ÷|ü§÷¦ù÷pü§÷¦ù<±÷süà\x1d±ø\v\0«÷Óÿ\x01!ø\0\x10Ëç\0\0b\r\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x17\x1d)\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x17\x1ejLüÿ?!\0\0\03 \0\x01b\r\0õ2 \0) \0X4 \0 \0ü \0:3 \0ø[ \083 \0<3 \0\x03\x01vp\x0e\r\0\x10µ¡÷sý\x1fH\0h\x05\x01Õ ÷ÿ§÷ù\x01(\x01Ñ©÷\x0fù\0!\x01 ÿ÷Kÿ«÷Gÿ\x17H\x17I\0x\0(\bh\x02Ð@ô\0p\x01à ô\0p\b`t÷Òú\x04F÷Øû`±÷/üH¹\x14 £÷?û(±\x06 ÷Ñû\vI\x01 \bp F½è\x10@t÷Àº\x03\x01&â\x0e\r\0\x10µ§÷ù\0!½è\x10@\x11 ÿ÷\x1c¿) \0ñ2 \0ü2 \0ó2 \0\x03\x01 \x04\x0f\r\0\x04I xB\x03Ò\x03I\x01ë@\0pG\0 pGI) \08k\r\0\x03\x01\f \x0f\r\0(I\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x17zæ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x17|\x12Lüÿ @!\0'H\b`pG\x03\x01\x14(\x0f\r\0\x01)\x03ÑOôH\x13\x10"Úee÷\x01¾\x03\x01 8\x0f\r\0Á{9¹ø\x10\x06\x05Õ!ð \x01ø\x10\x01 pG\0 pG\x03\x01\x1eT\x0f\r\0Á{\0)\bÑø\x1d\x11\x01)\x04Ñ\x10ø\x1fAð \x01\x01ppG\x03\x01jn\x0f\r\0\x10µ\x04Fd÷øÔøÔ\0\x01!÷húÔøØ\0\x01!÷cú m\x0eJøÒ\x10\x01 \x13h@C\x13`\vJ\x13hC\x13` K\x1ahC\bF\x1a`F÷)ÿ F½è\x10@Oô¬qt÷\x18º\x04b\r\0,) \00) \04) \08) \0\x03\x01tÔ\x0f\r\0pµ\x04F®÷Äú\b±@&\0à\0&j÷Eÿ\x10¹j÷|ÿ\0³\0%ø'\01F\x03(\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x17Øo\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x17Ù·LüÿA!\0\x1eÐ\f n÷ÿø' ÄH\x01*ÂI\x02h\x02ê\x01\x02\x02`\x01h\x12ÐÀJ\x11C\x01`\x1d± {o÷èþ a F½èp@¤÷¼j÷ ù\x01%Ûç\r ßçAðqëç\x03\x01\x10D\x10\r\0¶I\bp¶I\x01 \bppG\x03\x01 \x02P\x10\r\0-éðA´M\x06F\fF)xÿ \x06ñ\x1c\a\x01)\x02Ñ8Fi÷òú¯I hBð\0R `®I¼±\x01,>Ð\x02,JÐ\x03,UÐ\x04,^Ð\x05,lÑø'\0\x01(hÐ0Fj÷7ý\0(cÐ0F½èðA¤÷H¼*x\x01*\x0eÑÿ(\fÐ xÁ±Àó\x03\x11\b)\x06Ñ\0ð\x0f\0\0ð¦úÀ²ÿ÷»ÿk÷Ïùx±o÷mú°B\vÑo÷°û@±½èðA\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x186)\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x187xLüÿ{B!\0o÷®¸I\x01ë\0\0héç0F½èðAkç x\0)2Ð)x\x01)/ÑÀó\x03\x11\b)+Ñ\0ð\x0f\0\x01!#à8Fi÷Ëù\x10±\x04 ¨÷ÃÿH\0x½èðA¨÷L¿)x\x01)\x17Ñÿ(\x15Ð\x7fH\0h½èðAÀ²}ç x\0)\fÐ)x\x01) ÑÀó\x03\x10\b(\x05Ñ\0!\bF½èðA\0ð0º½èð\x03\x01\x1el\x11\r\0\x10µ,"sItH÷ ý¯ò+\x11qH\x01aqI\b`\x10½\x03\x01r\x11\r\0-éðA\x03F\bFÿ)êÐ\0"ÿ&\0ñF\x01lM\x17F\x03ëC\x04Z)\vØbI xA±\0ðêù)h@ð\0\x01ë\x01qÔçßøtáoð\x18\f\x0eë\x01 h\fëA\x01I²C\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x18\b\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x18RLüÿvC!\0\x1a\0Õ\v\x1aÙ²±B\x01Ø\x17F\x0eFR\x1cÒ²\x05*íÓ(h\0ë\0q¹ç\x03\x01 ô\x11\r\0JH\0xpG\x03\x01â\x02ú\x11\r\0-éðA\x05F@lq÷ù\x04\0®ÐøÐ\0\x01!÷þøÐ\0¤÷ ý\x05ñ\x1c\0\x01!\aFi÷3ú\x01!8Fi÷1ú\0!8Fi÷dùEH\0h eDH\0\x1d\0hCI¤øT\0AH h\f0Áó\x11øV\x10ø(\x10øW\x10\0h;N`c\x106®÷ù`±9H\x140\0hÀ\x05\aÕ0h c6\x1dhlq÷Uù®÷Ùù\x14"1F F£÷Eüà\0³añ±@\0¤øÆ\0øÐ\0o÷ý¡\x01%\0 \x1do÷úúOêP\0ÄøÌ\0A\x01\x19\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x18ñÐ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x18ó\x15LüÿqD!\0Õ´øÆ\x10ð`°ûñò\x01û\x12\0¤øÄ\0\x02 \x16à\0!8Fi÷×ù\0!8Fi÷Õù\x01!8Fi÷\bù\0 9ç´øÆ\x10°ûñò\x01û\x12\0¤øÄ\0\0 øÔ\0àx\0¹åp\x01 )çÿÿ\0þ1\0\0\0\x01\x01¥\a \0|e\r\0$3 \0\0\x04 \04 !\02 \0<\x1d \02 \0¸£\b\08l\r\02 \02 \0\0 7\01\0\x03\x01\x0eX\x13\r\0\x14I\x13H\b`ÿ÷9»\x03\x01*b\x13\r\0\x10µ\x04F¦÷aý÷Ùù\x01( Ñÿ÷6û\0(\x05Сm F½è\x10@\0ðy¸\x10½\x03\x010\x13\r\0\x10µ\fF¦÷ þ\0,\bÑÿ÷%û\0(\x04Ð\x04H\x01h!ô\x11\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x19O\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x19PÖLüÿlE!\0`\x10½0b\r\0¸2 \0l1\0\x03\x01\f´\x13\r\0+I*H\b`pG\x03\x01B¼\x13\r\0\x10µ\x04F¬÷ãø°÷Òøh±÷©ù\x01( Ñÿ÷\x06û0±#Hm F½è\x10@\0ðI¸øJ\0\x04(\x04Ñ\x1fH\x01hAô\x11\x01`\x10½\x03\x01,ú\x13\r\0\x10µ\fF¬÷\x06ú\0,\fѰ÷±ø\0(\bÐÿ÷èú\0(\x04Ð\x15H\x01h!ô\x11\x01`\x10½\x03\x01Z"\x14\r\0\x10µ\x04FÀ°õ\0o Ñ¡÷Rø8±\x0eHá\0h°øp\0\aàà\x10½÷Æù@± Há\0\b\x1a¡BóÚ\bFñçàïç\b\r\0Ì2 \0üî \0l1\0Ô0 \0äW \0\x03\x01Ô\x01x\x14\r\0\x10µ\vF\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x19F\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x19®LüÿgF!\0°\x04FøV\x10\x04ª\x03ñP\0q÷?ú)I xB$Ò("Ò'JA \0ð\x1f\0Rø! \x01#@\x1aB\x18Ð#JRø!\x10"|Á@\x01ð\x01\0 I\x01(&Ð\x15* h,Ð"ô\x02 `q÷\x7fù^[J\x01hH2\x11`\x11\x1d\b`\x18H\x01h\0@h\x01 {\x02©o÷wüiF\x02¨o÷Nü\b0(\x13Ò\x0fH\0\x1d\x01hAô\x11\x01`\x06°\x10½\x15* h\x02ÐBô\x02×çBð@\x02Ôç"ð@\x02Ñçn÷Åþ\0 ÷ûøëçK) \0(k\r\0\x18k\r\0h1\0p1\0\x03\x01@H\x15\r\0pµ\x05F\fF\b \0!÷\x0fü\0!\x04(\x04ÙøÐ \a\0Õ\0\x1f¢\a\aÐâC\a\x05Ñ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1a\v\x06\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1a\fMLüÿbG!\0\x03J\x12xB\0Ò\0¹\x01!\bFp½,4 \0\x03\x01H\x15\r\0+J\0!RhÁëÁ\x03\x02ë\x03ù\x180B\x0eܱÁëÁ\x03\x02ë\x02ù\x180\x12ù\x04,Ã\x1a\x10\x1aB\x04ÝI\x1e\x02àI\x1c\x0e)åÛ\x0e)\0Ñ\r!H²pG\x03\x01PÈ\x15\r\0ðµ\x1aO:xB\x1fÐÿ*\x01Ñ\0)^[Ð\x17L9p\0"ÀëÀ\x06xh\0ë\x03\x1dhu±Q±-hDø"P\0ë\0\0ë\0^[hÀi\x18`\x02àTø"\0(`R\x1c\x06*èÛð½\x03\x010\x14\x16\r\0\aI\0ð\x0f\0ÀëÀ\0Ih\x01ë\0\x05IÀi\0ë@\0\bDÐø\x02\0pGb\r\0dl\r\0p \0\x03\x01þ\x02@\x16\r\0-éÿO°ÿ!\0\x06I±\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1ahÆ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1aj\x0fLüÿ]H!\0ùIKxÊh\x02ë\x03\x12\x12h\a\x1fÕ\fi\x12àõI\fh!h\a\vÔ\b*\x16ÒÂëÂ\x01\x01ë\x01\x04ëÁ\x01Ñøl\x13\a\fÕ\x04ò-\x14oð\x05\x01\x01ë\x10(\x04Àó\x10\0'\x01¶\x1duàþ \a°½èð1x\0)qÐH\x1c@EnÜpx\x16(aѶø\x02°\0"p\x1cK÷JÿF\x01ø,Q@ð !à\0-\0Ú\x1d%\x05ë \0\x14ø\x10 RE\x18Ñ\x06)±ÒI i\x01ë@\x01I\x1c\x05àÐI h\x01ë@\x01\x01õq\x04ë@\0°ø\a ZE\x04Ñ\x06"\x04p÷Âýð³ø,\x01m\x1e BØÑÀ²\0ë\0\x04ë@\x01\x04\x7f\x1c\x02hÁø\x01 ¡ø\x05\0ø,\x01\0ë\0\x04ø\x10 ø,\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1aÆ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1aÇÒLüÿXI!\0\x01\0ë\0\x04ë@\0 ø\a°ø,\x01\0ë\0\x04ë@\0ø ø,\x01@\x1cÀ²ø,\x01\x1e(\x02Ó\0 ø,\x01\x16ø\x01\v¨ë\0\x01¡ñ\x01\b\x06D¸ñ\x01\x0fܱ\0à\x01àÿ ç\x05ë \0\x04ë@\0BzJE\x02Ñè²\0æçø \x7f\x1câç\0rç\x03\x01Dº\x17\r\0-éðAL h¸¹§xæx¸\x01M\0ë\x06\x11\x01ò1\x11(Fs÷\vþ\x05ë\x10\x01\x1dÄé\x02Q\0ë\x06\x10\x01\x1d!aI\0ò1\x10\b`\x01 ½èð\x03\x01Zú\x17\r\00µKByÅÜhѲ\x04ë\x01\x11%±\r`\x05\r z\x04àOô\0E\r`\0%\rr\x04ë\x02\x11ÅzÍr\x02{ s\x02{\x01* Ѱø\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù^[$Z\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù^[%LüÿSJ!\0\r Â{Js\x02|s°ø\x11\0È\x18x@\x1c\x18p0½\x03\x01ZP\x18\r\0ðµßøàáDy\0&Þø\f\0\0ë\x04\x10\x01h)±ø\0\x10I\x1eø\0\x10\x06`\0 \x01%\x11àÞø\b\x10\x05ú\x04÷\x01ë\x12\x13l;B\x06лC\x13d\x03Ñ\x16q xR\x1e p@\x1cÀ²ø\x02\x10BéÓð½\x03\x01ð\x01¦\x18\r\0-éÿOF\0$°F\x10\x06\x02Õ\x06 \0\x01àÍø\0\Iþ'\0&hºF-\x1d\x01 \0ú\x03û"à(xбºñý\x0f\vÐHE Ñø;\x10AE\x05Ñh\x1c\0\x02p÷Òü\b±@5\ràèk\x10ê\v\x0f\x02ÐOðý Aà7F,F\fàB\x01Ó7F,Fv\x1cö²FHxBØÓ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù^[\x19\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù^[[LüÿNK!\0ºñý\x0f1ÐBHxB-Òd³ø\0ø;ák\x19¹h\x01xI\x1c\x01pák`\x1cAê\v\x01ác\0\x02s÷fÿ\x02¸ñ\x02\x0f\x02ë \x01 иñ\x03\x0f\x06иñ\x05\x0f\aиñ\x06\x0f\x04Ð\bà\x04ñ\x11\0\0\x02à\x04ñ\x1e\0\0s÷MÿºFPF\x05°æ\x03\x01\x01\x19\r\0-éÿ_\0&F\x10\x06\x02ÕOð\x06\v\0àÃF#Iÿ'\0%hF$\x1d\x01 \0ú\x03ù\x1aà x¨±ÿ/\x13Ñ@E\x11Ñø;\x10\0B\fÑZF`\x1c\x01p÷_ü0¹àk\x10ê \x0f\x02Ð/F&F\x06à@4m\x1cí²ø\x02\0 BàÓø\x02\0QFB ÒN±ðk0ê \0ðc\x04Ñ0ph\x01xI\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù^[ßÌ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù^[á\fLüÿIL!\0\x1e\x01p\x04°8F½èð\x03\x01X \x1a\r\0ðµ\x04M\0#\x01$ªh\x1fF\x12\x1d@\x1cà\0\0b\r\0\x1c4 \0l\r\0\03 \0ø;\x10B\fÑ\x11xQ±Ñk!B\aСCÑc\x04Ñ\x17p©h\x0exv\x1e\x0ep@2[\x1cÛ²©xBèÓð½\x03\x01Xt\x1a\r\0-éðGúOFAð\x06¼hOð\x01\b$\x1d\0%\x15àø;\0¹ x°B\x01Ð(\vÑzxák\bú\x02ð\x01B\x05Ð\x06"a\x1cHFp÷óû8±@4m\x1c¸x BæÓÿ ½èðè²ûç\x03\x01Î\x01È\x1a\r\0-éðCø\0°T\x1c\aF\x15F\x0eFéFAE\x19ÑOð\0\0JF\x0fà\x05ë\0\x01;\ø\x11À\x03ê\f\x03\x13T#\\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1c=\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1c>ÖLüÿDM!\0I|\x03ê\x01\x03#T\0ñ\x01\0À²°BíÓ2F!FHF9à\x18ÒCFJF8F÷¶ü\0 JF à)\x18\x13\N|3@\x13T#\I|\v@#T@\x1cÀ²AF@EñÓ F!F\x1eà\vFJFAF F÷ü3F\x04ªAF\x05ñ\x11\0\0ð¥û\0 LF\x04¿K\bà:\)\ @\x1aT"\ @"T@\x1cÀ²°BôÓ¹I2FhFp÷û °½èð\x03\x01\x02^[\r\0-éó_F²H\0&7Fhø\0\0$\x1d\x03(\x03Ò\0 \x01F½èüø\x01\0Oð\x01\v\a(\x16Ð\bÜ ñ\x02\0\x05(fÒßè\0ð\f\f\x0e\x0e\x10\0\x14(\x06Ð\x15(\bÐ\x16(;Ð\x1f(YÑ\x01à\x02 \x02à\x04 \0à\x10\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1cB\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1cLüÿ?N!\0 F\0 (àHh$\x1d\0%\x1cà!x¹±ø; \x01B\x12ÑBxák\vú\x02ð\x01B\fÐ ë\b\0\x1c"FQFÿ÷Qÿ ¹\vú\x05ð\x06CGêàw@4m\x1cí²HxBÞÓ\bë \0À²ø\0\x10F¡ë \x01AEÏÜ\x1fà\0%ßø\b\x17à!x±ø; \x01B\rÑø\x01 ák\vú\x02ð\x01B\x06Ð"F\x02! ñ\x02\0ÿ÷!ÿH±@4m\x1cí²ø\x02\x10BãÓ0F9Fç\vú\x05ðÁ\x17\x06C\x0fCöç\x03\x01"¨\x1c\r\0\vFÀó\x11mHÂh@x\x02ë\0\x10\0hÀ\a\x01Ð\x18FØæþ pG\x03\x01JÆ\x1c\r\0ðµfMF\0 ªhlx\x12\x1dOð\x01\x0e\x01F\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1cù\f\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1cúKLüÿ:O!\0\x03F\x0eú\x04ö¯x\x10à\x14x\±ø;@dE\aÑÕk5B\x04Ð\x0eú\x03ô CAêäq@2[\x1cÛ²»BìÓð½\x03\x01¬\x02\f\x1d\r\0-éøO\x0fFú!\x01ë\x10 E²\0 FF\x06FFOHOI\x1cFÀhIx\x02+\0ë\x01\x10\x02Ðþ*\x05Ð\bàþ*\x06Ñ\0h@\a\x01à\0h\0\a\0(\x02Ûþ ½èø\x18Fÿ÷¶ÿ\0F\bCfп\x1d0à8x³@\x1c¨B-Ü\x02,\x04Ð\x03,\aÐ\x02,\x15Ð\x1eàxx\x1e\x05(\aÙ\x0fàxx\x14(\x03Ð\x1f(\x01Ð\x15(\x12Ñ!F8Fÿ÷úþ@ê\b\bAê àxx\x16(\x06Ñ!F8Fÿ÷îþ\x06CAê \x17ø\x01\v)\x1aI\x1eM²\aD\x01-ÌÜ\x02\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1dV»\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1dW«Lüÿ5P!\0,\x02Ð\x03,\bÐ\x1eà#HÁh@x\x01ë\0\x10\0@\a\x06à\x1fHÁh@x\x01ë\0\x10\0\0\a\0(\rÚ\0+ê \0"ê\b\x01\x01C\x12Ð"ê\x06\0+ê \x01\bC\fÐ\rà\0 ê\v\0\bê\x02\x01\x01C\x04Ñ\x16@ ê\v\0\x06C\x01Ð\0 çÿ ç\x03\x01 4\x1e\r\0\x02#þ"hç\x03\x01 :\x1e\r\0\x03#þ"eç\x03\x01 \x01@\x1e\r\0-éðA\aNú"\x02ë\x10 Öé\x02Rsx@²\x02ë\x03\x12\x12hÒ\x06\x06Ôþ Éä\0\0b\r\0|l\r\0\x1d\x0eà!xq±J\x1cB\vÜbx\b* Ð *\bÐ@\x1a@\x1ed\x1c@²\fD\x01(îÜÿ ¯ä-\x1d\0'Oð\x01\b\x17à*x±ø;\0\x04(\x0eÑ x@\x1eB\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1d´\x02\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1dµELüÿ0Q!\0 Üsxék\bú\x03ð\x01B\x04С\x1ch\x1cp÷èù0±@5\x7f\x1cÿ²°xBäÓÜç8Fä\x03\x01¦\x02Ü\x1e\r\0-éøO\rFú!\x01ë\x10 OúúêHOð\0\a¹FÁh@x\x01ë\0\x10\0h\x06\x01Ôþ $ç\x05 ÿ÷ÝþF\0\bCrÐ\x1dTà(xè³@\x1cPERÜhxÿ(DÑÛHh$\x1d\0&9à x³ø;\x10\x05)0Ñ)xI\x1eB,Üø\x04\0±\0 ßøL\và!\x18Kx\x7f\x13@Kp)\x18x\x11@\bø\0\x10@\x1cÀ²!xBðØø\x01 ákOð\x01\b\bú\x02ð\x01B\rÐ"xÅI`\x1cp÷ ù ¹\bú\x06ð\aC\x01à\x16à\x01àIêày@4v\x1cö\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1e\x11À\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1e\x13\x12Lüÿ+R!\0²ßøðÂø\x02\0B¿Ó\x15ø\x01\vªë\0\x01I\x1eOúú\x05Dºñ\x01\x0f§Ü³HÁh@x\x01ë\0\x10\0\x06\aÕ\0+ê\a\x01#ê \0\x01C\aÐ\bà\0\aê\v\a ê\x02\0\aC\x01Ð\0 ªæÿ ¨æ\x03\x01\x02þ\x1f\r\0-éøO\rFú!\x01ë\x10 G²Oð\0\x01¡HFFÁh@x\x01ë\0\x10\0h@\x06\x01Ôþ æ\x06 ÿ÷LþF\0\bCnÐ\x1dJà(xè³@\x1c¸BGÜhx\x16(<ÑHh$\x1d\0&/à xP³ø;\x10\x06)&Ñ)xI\x1eB"Üø\x04\0±\0 ßø(\và!\x18Kx\x7f\x13@Kp)\x18x\x11@\bø\0\x10@\x1cÀ²!xBðØø\x01 \0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1eoÂ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1eq\x10Lüÿ&S!\0ák\x01 @\x01B\x05Ð"x}I`\x1cp÷öø\x10³@4v\x1cö²ßøàÁ\0à\vàø\x02\0BÇÓ\x15ø\x01\v9\x1aI\x1eO²\x05D\x01/²ÜpHÁh@x\x01ë\0\x10\0@\x06\x0eÕ\0+ê \0#ê \x01\bC\x0eÐ\x0fà\x01 °@@ê Jêàzàç\0 ê\v\x01 ê\x03\0\x01C\x01Ð\0 \x1dæÿ ^[æ\x03\x01æ\x01\x18!\r\0-éð_F^JÀ²F\x01ð\x0f\x04PpÑh\0%\x01ë\0\x10.Fù\v0\x01hé³\0{0±\x02(\x02Ð\x01(\x02Ð\x02à\x02&\0à\x01&SHÐø\x03\0ù\x01\x01B=ÝF\b\x04>ÔYFPFÿ÷ý\aFÿ(3Ð\x01,3ÐYFPFÿ÷[þÿ(+Ð\x01#:FYFPFÿ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1eÍ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1eÎ×Lüÿ!T!\0÷Yúÿ(#Ðßø\x04\0$\bñ\x14\bOFXø$ YFPFGÿ(\x1cйxB\aÒyxøh\0à\x0fà\0ë\x01\x10zx±d\x1cä²\x04,éÓyxøh\0ë\x01\x10z\x01(\x04Ð\x1d±\0 \x1eäþ(ûÐ0F\x1aäyxøh\0ë\x01\x10z\x01(òÐm\x1cí²ãç\x03\x01.ú!\r\0-éðA\0%\aFF,F$N\aàBF9F Fÿ÷ÿ\x05Cd\x1cä²ðxBôÓ(F\x1dæ\x03\x01$$"\r\0\x1fH\x10µ\0h\a\x01Õ¬÷ú\x19H\0y\0(\x03нè\x10@ÿ÷¼º\x10½\x03\x01:D"\r\0\x10µ\x14L h(±¡x\x04"\x02ë\x11s÷Ìøàh\x18±áx \x01s÷Æø i\x18±@ò-\x11s÷Àø\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1f+R\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1f,Lüÿ\x1cU!\0 p`p q\x10½\x03\x016z"\r\0\aH\0y8¹\bH\0h\a\x05Õ\aH\0h\0h\b±\x01 pG\0 pGb\r\0|l\r\0 \0) \0\x1c4 \0\x03\x01>¬"\r\0pµ\x0eF\x05F\x14F³B\x15Ù\x04+\fÐÿ"\x10! F¢÷ùû2F)F\x04ñ\f\0½èp@s÷§º(x phx`pÿ àppp½\x03\x01Â\x02æ"\r\0-é÷O°\x04\0\x18дøP\x10´øN\0\r\x1aB\0Ù\x15F(D¤øN\0 l©F(D daj\x04ñ\x10\0Oð\0 \0Q¹÷\fú\x18±\0 \x05°½èð i`bÄø, Ôø$\x04ñU\vWà´øL\x10àj\x0e\x1a®B\0Ù.F¡i\bñ\f\a8D\vh2F\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1f\x10\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1f\Lüÿ\x17V!\0\x03G\x03øT\00±àj2FÁ\x19XF÷bþ\bàøU\0(±àj2FÁ\x19XF÷@þàj^[0Dàb´øL\x10B,Ñ@F÷Ëù\x04ñ\b\x01@F÷ÂùÄø, \0÷ÆùØ±Äø$ ]±´øN\0©ë\x05 ë\x05\0¤øN\0 l ë\x05\0 dài´øN hÙ±ÁË\x06\x18ÕÁó\x01\x03\x01+\x06Ð\bà i`bF\0-¥ÑìçB\x04Ù\a\bÑB\x05Ó!ð\x10\x01ÁhiG iÁAð\x10\x01Á F÷ËüHFç\0\0\x03\x01\x01$$\r\0-éøC\x04\0F\x17F\x1dF\rÐ`i\0(\vÐs÷\x0fø\x06Fà\x06\aÕ`i)F\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù\x1fæï\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù\x1fè6Lüÿ\x12W!\0÷¨ÿ\x03à\0 ½èø\0 8Cø\0\0ø\x02P#h\x03"iF@FG\x01F`i*F÷dýaiÈi±øN h¡±ÁË\x06\x11ÕÁó\x01\x03\x01+\x02ÑB\x04Ù\a\bÑB\x05Ó!ð\x10\x01ÁhiG0Fr÷Ùÿ(FÍç\x03\x01^´$\r\0-éðA\x04\0\x0eF\x15F ÐàzIÀó\01ø\x10\0 õpaÿ9\x16Ðø$\0\x01(\x12Ñ`i±r÷»ÿ\aF`i)F÷bÿ`i*F1F÷¶ý8F½èðAr÷°¿0F½èðA\x11F÷×»\x03\x01º\x01\x0e%\r\0-éðA\x04\0ÀÀó\x06QÐ`i\0(NÐ0Fy÷~û\x05\0\x02ÑZ÷«û±_H\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù D°\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù EöLüÿ\rX!\0ëÆ\aZ÷¥û8³]H\0h\x10ô@\x0f`i°øL` Ðð.\x13Ù0F\x12à`i°øN\x10½èðA÷¬¼x.\x01Ù0F\0àx ¨B\vÒx.\x06Øx%\aàð ¨B\x04Òð.\x01Ù5F\0àð%`i\x0eà`i°øL`<.\x01Ù1F\0à<!©B\x04Ò<.\x01Ù5F\0à<%)F÷ ÿ`i*F9F½èðA÷¾¼½èð\x03\x01ü\x01Ä%\r\0-éðA\x05\0À:IÀó\x06Æë\x06\x10\0ë\x10\x01ë\aïÐhi\0(ìÐ0Fy÷ýú\x04\0çÐ/H\0\x1f\0ëÆ\x06Z÷Eû`³-H\0h\x10ô@\x0fhi°øLp\x03Ðð/\fÙ8F\vàx/\x01Ù8F\0àx B\vÒx/\x06Ø\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù ¢t\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù £·Lüÿ\bY!\0x$\aàð B\x04Òð/\x01Ù<F\0àð$hi!F÷·þhi"F1F÷\vý(F½èðAY÷Ë¿×øä\x10\x02\vÕ\0 \x01à2h@\x1c°ëT\x0fúÓ!ô\0\x10Çøä\0£çhi°øLp</\x01Ù9F\0à<!¡B\x04Ò</\x01Ù<F\0à<$!F÷þhi"F1F½èðA÷ݼ\0\0´1 \0\b\x105\0X\x1e \0¬u \0\x03\x01 ¼&\r\0\x10µk÷Mÿ\0(\x06Ð\x01!øí\x10½è\x10@k÷P¾\x10½\0\0\x03\x01\x02Ø&\r\0-éð_Ei°ø\x1eÀ\x04FµøL \0jFÌó\b\x16F\0(\x1cÐ2IßøÌ \x06OðÒ\x01 ÔÚø\003¹»\a[\x0f!ú\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù!\0"\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù!\x01oLüÿ\x03Z!\0\x03óÛC\a л\a[\x0fÙ@\x01ð\x03\x01Oð\x01 \x02)\x03ÐEà\0 ½èð_êa?Ôx÷}ú\x10±»ñ\0\x0f\x1dи\x06\0Õv\x10\x1fIÁø°á\x1eJÁó\x01Q\@\x1cI\x0e`^[I ú\bð\b9\b` h\x02BüÑ jµøL \f0\x16I¢÷Íù\aà`i\0!°øL j\f0¢÷æù!jOô\0P`Úø\0\0\x18± jOôÀA`ø'ilµøL HF\x11Didºç)k\f0æç\0\0\b\x1e \0¤5 \0\01\0Ða\r\0\b1\0x1\0\x03\x018Ü'\r\0pµ\x05F\bF\x01&ø£\0µø\v@©z@ \0"F÷\x01ý\0( Ð@ B\0Ò\x04F*z!F0F\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù!]æ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù!_.LüÿþZ!\0M÷lø\x01 p½\x03\x01V\x10(\r\0\x10µ\x04F\0!\x13 \x7f÷ÿûþ÷Úø4H\0x\x01(\x01Ñ3I\bp3I\0 \bp3IÁé \0÷èùq÷kù\x18±½è\x10@÷¿\x01 Y÷ù´ø \0\0!0÷÷þ½è\x10@\x01ð\x0f¾\x03\x010b(\r\0\x10µ\x04F "U!\f 0÷\0ÿ\x01F\b0"hÀø\x02 bhÀø\x06 "B½è\x10@\bF0÷¾\x03\x01z(\r\0>µ\0ñ \x04\0 \0\x01\x02Ôø\x03\0\0Ôø\a\0\x01´ø\v\0ø\b\0\x15FhF÷±þ!{ \x06\x17Ô\x14(\x15Ó\x0fI " \x1dà\x1co÷åü\0(\fÐà\x1cp÷4ü÷\x15û ±÷;ûà\x1cÿ÷½ÿ÷où>½\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù!»·\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù!¼úLüÿù[!\0\x12 hq>½¶b\r\0\x1e \0´b\r\0\x18A \0\x03\x01\x14\x04)\r\0|HhÂø\x06\x10ÀhÂø \0pG\x03\x01>\x14)\r\0pµyL\x0eF\0ñ \x05¡i1±°ø \0½èp@\f!0÷¾sHq÷ùú©÷búrH¥aÄé\x02\x04oHq÷öú\0 0pp½\x03\x01,N)\r\0pµ\x04F\rF\x16F ÷àþ(¹\0#\x1aF\x19F\x02 þ÷Hø2F)F F½èp@÷%½\x03\x01(v)\r\0pµ\0ñ \x04\x15F÷Výhy\0(\aÑ"\x1dáx½èp@\0#\x01 þ÷0¸p½\x03\x01¶\x02)\r\0-éüA\0ñ \x04\0&«÷bþ@¹WHDò\x10\x01\0h\bB\x04Ы÷þ\b±\f&}à´ø\x05\x10´\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù"\x19w\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù"\x1a¼Lüÿô\!\0ø\x03\0E÷pý ³a Íé\0\x01ã¢a E÷výȱa÷¯ÿÀ±\0 o÷\x15þ\aFÿ(\x14Ð¥÷0ù8Fo÷ý\x05F?Hq÷úb!(FE÷{ýày0±\x0fà\x12&Oà\r&Mà &Kà z øV\0Ôø \0(e´ø\r\0¥øT\0à{ øW\0 ¥øH\0`¥øJ\0øÒ\0¥÷«ü!\x01aA (àh(F¨÷\x11ÿ%Hq÷cú)F F÷\bû\0(&Ñ\x01 «÷åý8F«÷Þý´ø\x05\0 ð\x01\0«÷;þ´ø\x03\0 ð\x01\0«÷=þày«÷*þ\x19I\0 þ÷@ù\0!\bF«÷yýn÷ù\x15I\b` 1F\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù"w3\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù"xvLüÿï]!\0½èüA0÷ë½½èü\x03\x01LÌ*\r\0\x10µ\x04F«÷Ìý@±\0 «÷·ý½è\x10@ I\x10 þ÷"¹´ø \0½è\x10@\f!0÷©½\0\0\x10 \0ôï \0) \0c \x01\0) \0\ï \0\x144 \0\x03\x01j\x14+\r\0-éðA\x05F\0ñ \x04\x0eFFà\x1cp÷%ýбÁiÁóÄ\x01\x04)\x15Ð\b)\x13Ò\aF\0ñ(\x01p÷eý ±øi\x02 Ô8h÷ëù0±9h\v 0÷þ8hq÷*øBF1F(F½èðA|÷» ½èðA\x12!0÷½\x03\x016z+\r\0-éðA\x05F\x0eF\0ñ \x04\x17F\x03!p÷cý0±:F1F(F½èðA|÷®¼ ½èðA\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù"Ôó\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù"Ö3Lüÿê^!\0\x02!0÷y½\x03\x01¬\x01¬+\r\0-éðG\x04F\rFþ÷\x01þOð\a \x01(\x04Ð)hø\x05½èð y\x12!÷O\x02(\bØ\x03Òby;xB\x03Ò(¹¢z\x01*\x02Ù(hAqìç.hßøÀðq y8±\x01(\x19Ð\x02!\0 «÷çý8x\x1aàêJ`y\x12h\x02ë\0\x10\0h\x18±)h\x17 HqÓçø\0\0:xBÞÒ Fþ÷æý\x02à Fþ÷\rþ9xø\0\0\b\x1a0r(h@y\0(¾Ñ yðq)hø\x01¸ç\x03\x01°\x01T,\r\0-éðA\x04F\rFþ÷ýOð\a\b\x01(GÑ y\x12'\x02(\bØ\x02Ò!{\x02)\x04ØÌJay\x12xB\x03Ó(hGq½èð.h(±\x01(\x13\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù#2\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù#3½Lüÿå_!\0Ð\x02(\x1cÐwqõç {\vF@ð\x02¡\x1d\0 þ÷þýþ($Ðý(\x11Ñ)h\x17 Hqåç {\vF@ð\x02¡\x1d\0 þ÷dþÿ(ÙÐ\x02à\0 þ÷¥þ(h@y\0(ÓÑ yðq)h´Hø\x01\0h³I\0x x\b\x1a0rÆç)hø\x05Âç\x03\x01þ\x01\0-\r\0-éðG\x04F\rF\0&þ÷VýOð\a \x01(mÑ y\x02(\x02Ò¡xÉ\x1eβOð\x12\bȱ\x02(\x13Ø¡x\x02)\x10Ó\x02(\x16ØJay\x12xB Ò\x02(\x0fÒ\x10.\x05Ø\x02.\vÐ\x04. Ð\x10.\aÐ)hø\x054çñ\aùÑv\bãç/h0±\x01(\x19Ð\x02(&Ðø\x05'çàxcy\x03(2F\x04ñ\x06\x01\aÐ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù#V\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù#¦Lüÿà`!\0\x03 þ÷ýþ(1Ðý(\x02Ð^[à\x02 öç)h\x17 Hq\x12çàxcy\x03(2F\x04ñ\x06\x01\x05Ð\x03 þ÷ïýÿ(ÍÐ\bà\x02 øçàxay\x03(\x13Ð\x03 þ÷*þ(h@y\0(ÂÑ yøq)hwHø\x01\0hvI\0x x\b\x1a8rëæ\x02 êç)hø\x05åæ\x03\x01ø\x01ú-\r\0-éðA\x04F\rFþ÷Úü\a'\x01(mÑ#yOð\x12\b\x02+\aØ x\x03(\x04ÓcJay\x12xB\x03Ó)hø\x05+çÀ\x1e²àx.h\x06(\x03Ð\a(\x01Ðc±\0à#±\x01+!Ð\x02+2Ð<àÓ\a\x02Ðø\x05\x16çR\b\x05(\fÐ\vF\x06(\x04ñ\x06\x01\vÐ\x06 þ÷\x1cýþ(:Ðý(\x06Ð'\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù#î\x12\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù#ïaLüÿÛa!\0à\vF¡\x1d\x04 ôç\x05 òç)h\x17 Hqüæ\x05( Ð\vF\x06(\x04ñ\x06\x01 Ð\x06 þ÷yýÿ(ÀÐ\x10à\vF¡\x1d\x04 öç\x05 ôç\x05(\x03Ð\x06(\x03Ð\x06 \x02à\x04 \0à\x05 þ÷¬ý(h@y\0(Ñ yðq(h9IGp7H x\0h\0x\b\x1a0rÎæ(hGqËæ\x03\x01\x01î.\r\0pµ°\0ñ \x04Íø(Ð\0 \x05&ø\x05\0ø\x01`àxmF\b("Òßè\0ð\x04\r\x12\x17\x17\x1c\x1c\x1c)I y\bpø\a\0\x06 ø\x01\0\x16à © Fÿ÷<þ\x11à © Fÿ÷þ\fà © Fÿ÷Üþ\aà © Fÿ÷Tÿ\x02à\x12 ø\x05\0 \0) Ð F÷°ý Ay\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù$KÝ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù$M)LüÿÖb!\0\x01±Fp¨B\x03Ñ0÷Tû\f°p½\b80÷\aûùç\x03\x01N/\r\0\x10µ\x14FQ÷%ø\x0eI\bx\b±\rH\0 Hx\x01(\x03Ñàr\x03H\0x s\0 `s\x10½\0\0b\r\0b\r\0b\r\0b\r\0b\r\0b\r\0Ø\v!\0T) \0\x03\x01\x01Ì/\r\0-éðA\0ñ \x01\x05{@{Ny\x10rqÀóA\x01\x14F\0ð\x01\aÖq\x03)\x05Ð)\x06\x05Õ\x11 Pq½èð\x12 úç\x04-\x01ÒgI\x01àfI \x1d«\aOêÓl hÿ#\x03ú\fóC\0ú\fð\x10C`J\b`\x10hOê \x03Oð\x0f\x01\x01ú\x03ñ ê\x01\0\x10`ð\x01\x02Oð\0\x01(F÷Qú'±(F÷>úƲ\x03à1F(F\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù$©¡\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù$ªïLüÿÑc!\0÷*úæq\0 `qÉç\x03\x01,b0\r\0pµ\0ñ \x05\0{\x02!\x14F±ëÐ\x0f\x02Ø0 Pqp½÷&úàqèx q\0 `qp½\x03\x01*0\r\0\x10µ\x04Fr÷äùEJÒø\0\x11\x14±Aô\0\x01\x01à!ô\0\x01Âø\0\x11½è\x10@r÷Ù¹\x03\x01N°0\r\0pµ\x04F\rFr÷Ðù<K\x01FÓø $±\x01,\x05Ð\x02,\x06Ð à"ð\x01\x02\x06àBð\x03\x02\x03à"ð\x02\0@ð\x02"ôp\x10\r±\0õ Ãø\0½èp@\bFr÷´¹\x03\x01,ú0\r\0\x10µ+L8±\0 _÷¢ü h@ð\x04\0 `\x10½ h ð\x04\0 `½è\x10@\0 _÷/½\x03\x01D"1\r\0\x10µ\x04F"H\x02xZ±\x01*\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù%\ad\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù%\b±LüÿÌd!\0\x17Ñ!F\x01 ÿ÷¼ÿOð\0\0T±]÷Ãú à!F\0 ÿ÷²ÿ F½è\x10@Òç]÷ãú F½è\x10@ç\x10½\x03\x01\x16b1\r\0\x14I\x02{È|bó\x10ÈtÀó\x10Öç\x03\x01\x14t1\r\0\x0fHÀ|Àó\x10q\0 PqpG\x03\x0181\r\0pµ 0\x14FÅxÃz\x01yB\x1d(Fý÷0ü\0 `qp½\0\0h\02\0\02\0\0 5\0\0\x105\0`, \0\x18A \0\x03\x01 \x01¸1\r\0pµ#LGòD\x03\x05F\x01FÂ\x1a hB0Ð\x06Ü¡õàA?9\x18Ð\x01)\x04Ñ\x15à>*\x1fм*\x17Ð-÷¿û\b!\x03 r÷Eø hr÷Üú(F÷íø½èp@\b!\x04 r÷9¸H÷þ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù%e0\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù%fzLüÿÇe!\0½èp@÷̽r÷Ëú½èp@A÷Ö¿ I i\0)\rнèp@\bG\bI\x02z\vx\x1a pr÷¹ú½èp@0÷z¹p½\0\0ð' \0È \0¤( \0\x03\x01$T2\r\0\x10µ\x01F\0$\x05H÷Yû ±\x01$Gò \0÷Nù F\x10½\f` \0\x03\x01¨\x01t2\r\0ðµ!L!K!hB\x18B\x02Ò\bD `ð½²ûóñ\x03û\x11 `\x05 ±ûð÷\x1aJPh\bDP`\x01 \x06F\x13h\x06ú\0ô#B\x03Ð\x13\x18\x1czå\x19\x1dr@\x1c\x11(óÓ\0 \x02ë\x03\x1c\x7f4±\B\x01Ø^\x01àd\x1a\@\x1c\b(ñÓ\vHÀ|@\aÑÔ H\0x\x18± H\x02 D\x02\bH\x02x\x11D\x01p\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù%Â÷\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù%Ä:LüÿÂf!\0ð½\0\0Ô# \0Hè\x01\0Ô` \0\x18A \0& \0& \0L# \0\x03\x01*\x183\r\0\x10µ\x04F\0mH±>J´ø\x10@òq#\x12xZCQCq÷+ÿ F½è\x10@L÷÷º\x03\x01¢\x01>3\r\0pµ\x04Fg÷Zû\x05F F÷Eø Fp÷xüp±ø£\0À\x06 ÕàiÀóÄ\0 (\x05Ñ F÷ðþ h`÷ÊùàiÀóÄ\x01\b)\x03Ó ðø\0h0àa FL÷5øái$HÁóÀ1Að\x0e\x01)sø¡\x10ish` H¨`)F FL÷Uø r÷Dù\x05\0\x0fÐ"F^[Iq÷ý\x1aH´ø\x10@òq"\0xPCAC(Fq÷Úþ%e\x01 p½\x03\x01XÜ3\r\0p\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù& ³\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù&!ùLüÿ½g!\0µ\x05F\fF±ø\x03\0\x02!p÷5ùx±Ðøä\x10Áó\x04! ) Ðay\x05ø¡\x1f\x16!ip½èp@\x05!s÷½(F½èp@\a"\x01!x÷S½71 \0«d\x06\0§d\x06\0Ñc\x06\0µb\r\0\x03\x01H04\r\0\x10µÁiÁóÀ1±±\fI\x02 \x0f*\x01Ð\v\x04\x0fÕ K\x11$[h^[{´ëS\x0f\x03Ð\x0f*\x06Ñ\x04\x04Õ\0h÷û\0 \x10½# \x10½\b\x1e \0¤# \0\x03\x01<t4\r\0\x10µ L ! H÷\x7fþ\bHq÷©þ Fg÷ÿ\b±÷ßø\x05I \b`\x10½\0\0ÈÙ \0` \0¨` \0ì1\0\x03\x01|¬4\r\0pµ\x04F\x06)\x03Ñøµ\0À\b\x01Ð\0 p½\x04"\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù&~r\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù&\x7f¸Lüÿ¸h!\0! F÷|ù\x14M\x03\0\x04Ðhh\0{Àó\0\x02\x15ààiÀóÄ\x01\b)\vÑ\x0eI \x05\x11Õ\0\x04\x0fÔ hp÷óû^÷2ýH±hh\f#\0{Àó\0\x02\x17! Fg÷Ãú\x02à F÷·ù\x01 p½\0\0¤# \0\b\x1e \0\x03\x01\x0e$5\r\0\x11H\0!Àé\f\x11pG\x03\x01J.5\r\0pµ\0"\x0fM\x10F\x11FS#KC\x05ë\x03Üiæ\x02 Õø`\x04.\x06ÐÄóÄ\x04\b,\x02ѳød\0R\x1cI\x1c\v)êÛ\x01*\0Ð\0 p½\0\0\x18A \0hB \0\x03\x01 t5\r\0\x05H\x10µ{ ¹÷-û\b±\x02 \x10½\0 \x10½\0\0ø[ \0\x03\x01Î\x015\r\0pµ5M(h{m÷-ü)hÉnm\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù&Ü\x11\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù&Ý\Lüÿ³i!\0÷±û)h1N1Køí ±øå ¹/LÑøÈ $h"B\x06Ðø@$\x06 Ô4x B\x06Ø)H*L\0h$h C\x02B\x01Ðx\0à\xøå\0\x18±\x18\ B\0Ù\x04F#H\0h\0\a\0ÕÜxÑøÀ\0@\x1c\x16Ð{m÷öû)hÑøÀ\x10m÷û^[I\0(\aÛ*hOðÿ0ÂøÀ\0? \bp\x03à\bxB\0Ò\x04Fpx@±E,\x06Ñ(hø¨\0L÷gü\0±\x0f$!F(hh÷þ\rH\0x ø4\0p½\x03\x01:Z6\r\0\fI\0ëÀ\0\x01ë\0pG\0\0ðn \0Ü\v!\00$ \0\0& \0´0 \0,$ \08\x1e \0\x18$ \0 $ \0xp \0\x03\x01H6\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù':\x01\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù';QLüÿ®j!\0\r\0pµ\x04F\rMm÷û²)m÷òûá°ëA\x0f\x04Ù {\x10¹¨|.(\x06Ðq t\x05H\0xøC\0p½øG\0 tp½\0\0[ \0ø0 \0\x03\x01RÔ6\r\0pµ'I%L x\0)\x1dÐ\b0\x01"á@#H\x11Cáø0\0.%±!I´ù\x1c\0 xB\x06Ü@BB\x03Üø6\0\0(\x05Ð F^÷tü\0(\0Ð¥tp½ ôç\x03\x01b"7\r\0pµ\x12L\x01"@á\x04ë@\0\x11Cá\0!A\x0fH.%ø0\0±\x0eI´ù\x1c\0 xB\x06Ü@BB\x03Üø6\0\0(\x05Ð F^÷Nü\0(\0Ð¥tp½ ôç\0\0[ \0\x1f# \0ø[ \0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù'¸\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù'þLüÿ©k!\0\0 # \0\x03\x01ä\x017\r\0pµ\x04Fh÷¸ù\0&\x01%X±?H\0!\x06p F÷Uü F÷üø[Pp½ Fh÷û\0(ùÐ Fá÷Fü {m÷\x1cû¡im÷¡úá\x1eB\fØ F÷¡ú/I\b`/I\b`/H\x05`m÷óú.I\b`ø[\0±[÷2úI÷]þ\x01(\vÑ FZ÷Òþ8±øo\0 ±ønP F÷\x1cúø[`øk\0è¹ø(\0\x01(\rÐø$\0ø,\x10Àó\x02\0Áó\x02\x01B\x03Ñø)\0\x02(\vÐ FZ÷¯þ8±øo\0 ±ønP F÷ùù F½èp@÷µ»\x03\x01\x16`8\r\0\x10µ\x04F÷\x15\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù'õu\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù'ö¸Lüÿ¤l!\0ø F½è\x10@\0ðú¸\x03\x01\x16r8\r\0\x10µ÷\x16ù I\0 \bp I\b\x10½\x03\x0108\r\0 I\bH\b`pGü& \0\b' \0 \x1c \0\x1c \0¤\x1c \0\x1ac\r\0\x1cc\r\0¸b\r\0\x04' \0\x03\x01\f°8\r\01I0H\b`pG\x03\x01È\x01¸8\r\0-éðA\x04F-IøV\0 \x1fE\x18 Fh÷\x15ù\0&\0( F\x10Ðh÷ ú\x01'\b±/p\0à.p l÷Vþàl÷4þø[p½èðh÷Ûú°±ø[\0\x18¹ lø'\0P¹[÷¢ùI÷Íý\x01(\x02Ñ FZ÷Bþø[` F½èðAZ÷r¿ Fh÷¹ú\0(ÞÐ(x±ø[\0\x18¹ lø'\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù(S'\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù(ToLüÿm!\0\0H¹[÷ùI÷¯ý\x01(\x02Ñ FZ÷$þ.p FZ÷Wÿ l÷\x17þàl½èðA÷ó½\0\0èb\r\0\f' \0\x03\x01Ê\x01|9\r\0ðµZH\x02x\x02*\Ñ\x04!\0$OôÊ\0\x01dÀø°AI\x1c\b)ùÓÁhAð\x02\x01Á`\x04dÐø\x04RPI\x0f'KxOê\f\vy\aú\fö\0@>CµCxOy\x06ú\fö@>C.C\x04dÀø\0bÃh#ð\x02\x03Ã`\vx\b\x05dFl\aí\x0eOðÿ\f\fú\x05÷¾C\x11'¯@7CGd\x04dBê\x03\x13CôcÀø\x182Éx\b\x03dEl\aÛ\x0e\fú\x03ü\x02&%ê\f\x05@.CFd\x04dBê\x01\x11Aô1Àø\x1c\x12Oð\x01\x11Àø\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù(°ã\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù(²1Lüÿn!\0 \x12\x01!Àø$\x12ð½\x03\x01\x18B:\r\0\x10µ÷oûÿ÷ÿ'H\0!q\x01\x10½\x03\x01\x14V:\r\0&H\0h\0(\x02Яò\x1d\x01\x01`pG\x03\x01\x01f:\r\0pµ@l\0(;Ðùß\0\x7f(7Ð\x1dL\x1eK\x01%áyI\x1c\x01ð\x0f\x02âq!Fù\0` °B\x03Úù\x010B\x04Ú\x05ú\x02ðC!\x03à\x05ú\x02ð\bC I÷\aý¡y!±\x04(\x05Ø\0 q\x02à\b(\0Ó¥q\fJ\x10hÀó\x05A ) Ñ¡y\x01)\x06Ñ\bI@ô\0\x10`\b`PhH`p½{\x1c \0\x14c\r\0\x04\x1d \0Þ\v!\0¼\x1c \0`\x01e\0\x03\x01^\0;\r\0[HOôq\0h\x01`\x01`YHZIh cj\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù)\x0e©\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù)\x10\x04Lüÿo!\0cXKÂh\x1a`XK\x02i\x1a`WKBi\x1a`WKi\x1a`VKÂi\x1a`VK\x02j\x1a`Bj `TI@h\b`TH\x01i!ð\x01\x01\x01a\x01h!ð\x01\x01\x01`pG\x03\x01Ú\x01Z;\r\0pµ\x05F®÷WùLH\0hCL\0ð?\0 cIH88\0hÀó \x01J\x11!ð \0àb\x01*\x04Ñð\x1f\0@\x1c@Bàb>HP0\0hÀó\x030Â\x10 ð\b\x01ac\x01*\x04Ñð\a\0@\x1c@B`c\x1cè²@ð\x011H¸8÷÷ÿ/I\x01 \b`,H\x01kAðÏ\x01\x01cOð\x0f\x01cOð\x1c\x01\x01`/H\x01iAð\x01\x01\x01a\x01hAð\x01\x01\x01`$IGòÁ\0\b`#IOôÀ@\b`"H\x01hKöÿr\x01ê\x02\x01"\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù)l\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù)mÍLüÿp!\0hAê1\x01`\x1fH\x01h!J!ð\x7f\x01\x12hAê\x02\x01Að@\x01\x01`\x19IOôÅ@\b`p½\x03\x01\x060<\r\0pG\x03\x01r2<\r\0\x11I k\x0fH`\x10J\x12hÂ`kb\x0eJ\x12h\x02a\x0eJ\x12hBa\rJ\x12ha\rJ\x12hÂa\fJ\x12h\x02b hAb\vI hA`pG\0\0Ð^[ \0$c\r\0È\0d\0¼\x01`\0`\x04A\0ü\x04A\0è\x06A\0X\x04A\0(\x04A\0ä\x06A\0`\x01e\0à\v!\0\x03\x01: <\r\0øJÿ(\x02Ü2ø\x10\0pGÿ!ûññd#XCÁë\x01#ûóð²øÈ02ø\x10\02ø\x11\x10À\x1a²øþ1\x19D\bDpG\x03\x01 \x01Ö<\r\0-éðA\0!êK F\bF\x0eFOô\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù)Ê:\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù)ËLüÿq!\0GèM\x1ch\bà/`+h.`\x04\f\x1aD\0Ñ@\x1cI\x1c¡BôÓ B\x03Ò \x1a²ûðð\0à\0 OôzqHC^[!°ûñð@\x1d !ûñðÿ÷»ÿ õ\0@ õâP\0ë\0Oê\0Bò\x10qûñðÓI h ë\x01\x01ÒH\0hÀñ\v\0\0ë@\0\bDÏI h ë\x01\0ÎI h@\x18\x01Õ@B@B@²½èð\x03\x018r=\r\0pµ\x04F\x04ñ(\x01ø4\0\rF÷ëÿ\x06Fÿ÷¦ÿ\x01\0 Ð0F÷+øv\x1c)Fð²÷Þÿø4\0\0 p½\x03\x01*¦=\r\0\x10µ\x04F½H\0h\x10ðþ\x0f лH÷0ü\x18±DCO ´ûðô\x04¹\x01$ F\x10½\x03\x01\x1aÌ=\r\0¶\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù*(\0\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù*)HLüÿr!\0H\x10µ@ÿ÷èÿ³I\0P9¡øÀ\x02\x10½\x03\x01xâ=\r\0\x10µk÷¨ÿ8¹c÷@ø ¹÷[ø\b¹÷=ûªLP<´øÂ\x020± ñ\x01\0\0\x04\0\f¤øÂ\x02 ЦHø;\0@\a^[Õ L h@\b\x0eÑ à H\0xÿ÷¼ÿ¤øÂ\x02½è\x10@÷Ù¾H\0@\a\bÕ\x01"\x04!\0 ÷¤þ h@ð\x01\0 `\x10½\x03\x01zV>\r\0pµ\0%k÷mÿLP<h±\x14 ÷Ðû÷éûH!m\x01%\x01`amA`´øX\x10\x01b÷õÿ\x10±÷ ý\0à=±\x02 ÷Ëÿøï\0\b±÷ÃúHø;\0@\a\x10Õ}L h@\b\x03Ñ\x7fH\0@\a\bÕ\x01"\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù* Â\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù*\x12Lüÿs!\0\x04!\0 ÷iþ h@ð\x01\0 `p½\x03\x01:Ì>\r\0pµxHtLuM\0¤ñP\x04@\a\x01Õ\x01 \x03àhÿ÷_ÿ\0¤øÀ\x02lH\0h@\b\x02Ð(xÿ÷Uÿ¤øÂ\x02p½\x03\x01\x06\x02?\r\0pG\x03\x01Ä\x03\x04?\r\0-éÿG\0'\x04F>Fg÷Áÿ\0(tÐl÷ü\0(pÑø2\0\x02(lÐdHø0\0 ±÷;ý°õ\x1c\x7fcÙ {\x02©l÷Pÿ\x02^M\x10ð\x03\0\x06Ð\x01(\aÐ\x02(\x0eÐ\x03(\x17Ñ\x02à\x01!\x02\rà(h\x03@\x1dB\x06Ò\x02Íé\0\x10 à\x02@\x1c\x03à\x02!\x02l÷ü\0(h@\x1d\x01 {\x02«\x02FiFl÷ÙýhFl÷Øþ\x05Fßøè\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù*ã\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù*äðLüÿ|t!\0ø2\0ßø\f©ñ\x02 h±ø\x02\x10ø\0\0\bD¨B\x02صûððDz\0%Oð\x02 Fà\x01 ø2\0ø4\0÷Sÿ÷ÿø\x02\0ø\x03 ø\0\x10\x18\x01&\vD«BçÒ+\x1a\vD\x1aD\bD²ûðð@\x1cÞç>àø4\0\x04ñ(\x01÷¦þ\x1cÀ²@ð\x01*H÷ÈýF±ø\x02\x10ø\x03\0\bDI÷qú\0&\x03àø\x02\0I÷kú F÷Üþø4\0N(\x05Ùø2 F\x7f÷¾ý\x03àm\x1cí²½BÓÓø<\0@\x1cÀ²ø<\0N( Ùø2\0\x01(\x06Ñø2 F\x7f÷¨ý÷¢ÿ½èÿvc\r\0ä\v!\0è\x06A\0Pc\r\0à\v!\0Tc\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù+A`\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù+B¥Lüÿwu!\0\r\0Xc\r\0V \0|Ô \0¨\x1d \0\x18A \0´\x1d \0Ý~ \0ø[ \0D+ \0\x04\x01`\0\x03\x01PÄ@\r\0|µ\0%\x04F\x02)\x0fÐ\x04)\x1dÑø2\0\0(\x19ÐYN {iFl÷~þ\0ÀC\a\x06Ð àUH\0hÀó\x02\x10 s\aà\x011hBìØ÷\x1eÿ÷Qÿø2P|½\x03\x01\x01\x10A\r\0\x10µML\0 ø<\0ø@\0\b¹i÷ûà\b±@\x1eài÷ÿj÷ÍøEH\x7f÷ÿú ¹CH\0h\0\x1fj÷WøBH\x7f÷öú8¹ø;\0\x01(\x03Øi÷4þi÷¦ÿ÷Vû\0 ÷\rü hP±\x01|\x04)\aÑ8IIx!¹ø;\x10 ¹ÿ÷Áþø;\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù+\x1d\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù+ _Lüÿrv!\0\x01(\x05Ðh÷IþI÷ ù\x01 \x10½i÷Ðÿ\0(÷ÑI÷@üôç\x03\x01À\x01¤A\r\0pµ(L\x01 ø<\0i÷Gû\0%Oöÿp%aà¥ai÷Nÿj÷ø!H\x7f÷¶ú ¹\x1fH\0h\0\x1fj÷\x0eøi÷Ùÿ\x1eHå`\x7f÷ªú\b¹i÷þh÷Óþ\x01 ÷Çû h8±\x01|\x04)\x04Ñ\x15IIx ¹ÿ÷~þ\x14H\0x\b±ü÷¡û\x01 h÷îú\x18¹\rH\x7f÷ú(±h÷ýýI÷Ôø\x01 p½\x04H\x01"\x11F\x03h\x10F[\x1dh÷áúòçD+ \0$1\0\0? \0D\x1c \0<\x1c \0¨\x1d \04\x1c \0É" \0\x03\x01ø\x03`B\r\0-éøOO\x05FOð\0\b8h ¹(\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù+üÓ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù+ÿûLüÿmw!\0x\0(~Ñp÷\x19úq÷îø\0zH"!\x01`OôF\x19\0&Éø\0b\x04!Éø\x04\x12OôH\x14&fÉø\0`2 I÷4ùrHàeOôE\x11Oð\vÁø\f°È I÷)ù(xOôÊ OôÀ\x04à±Äø¼aiH\x06`Ôøü\x02 ð\f\0Äøü\x028hH± õ°p\x01i!ð\x01\x01\x01a\x01h!ð\x01\x01\x01`\0q÷´ø(x4Fгà\0 ÷Fþ\x01! õ°p9`\x02iBð\x01\x02\x02a\x02hBð\x01\x02\x02`HFÉø\0bÉø\x04²êx\0*Ôøü"\x02ÐBð\f\x02\x03à"ð\f\x02Bð\b\x02Äøü"KJF\x11`ixIJ\x1e\b2\x11`ix\x1e\x12\x1f\x11`FI\x01`\0 OôzsOôE\x12\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù,\e\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù,]:Lüÿhx!\0\x01F@\x1cB\x01àkà\x0eà\x02ØÑh \x06õÕOôH\x10Oô\01\x01fÈ I÷¿øÄø¼®ç಩x@ð\x01\0`ó\a\x04\x06)\x19Òßè\x01ð\x03\a\x0e'*. ð\x1c\0\x180\x0eàÄó\a @ð\x01\0`ó\x0f$ àÄó\a!Að\x01\x01aó\x0f$@ð\x02\0`ó\a\x04éxÄó\a aó\0`ó\x0f$(y\a(\x0fØ\0\x06\r@B@²\x11à ðà\0ëç ðà\0 0çç ðà\0 0ãç\b(\x02Ð (\x05Ð\bàù\x05\0~÷Zú\x02à¨y}÷îþF\x02!@F¥÷ý\bðÿ\x01\x11H÷¸û\vH\x04`(x ±8h\x10±o÷«ÿ>`\x01 ½èø\x03\x010TD\r\0\x10µ\x14F\f0ÿ÷\x01ÿ\0(\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù,¹\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù,ºLüÿcy!\0\x01Ñ\x12 `q\x10½xe\r\0À\x04A\0\0\x02\f\0\x101\0\x01\0\0\f\x01`\0\x03\x01$D\r\0\x10µ ÷¾ý ÷¯ý\x04H\x01hAð\x01\x01\x01`½è\x10@ ÷a½\x04, \0\x03\x01¸\x01 D\r\0-éðA\rF&IßøÀ\0#x\x1cø\x03@¡B\x03Ø\\x1e\x06+\x04Ò\x06à[\x1cÛ²\x06+óÓ\x05#\x04$\x02à\v¹\x01#\0$\x1cN\x05ë \x05±^[HÃë\x03\x17\aD/D\x17Dø¢p÷`Äë\x04\x178D(D\x10Dø¢\0\x11à\x14H\x03ë\a\0ëÇ\a/D\x17Dømq÷`\x04ë\a\0ëÇ\0(D\x10Døm\x01°`\x1cø\x03\0p`\x1cø\x04\00`\x05HQ÷ýÿ(\0Ùÿ ½èð½\x1e \0\x10\x13 \0,Q \0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù-\x17*\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù-\x18\x1aLüÿ^z!\0ë\x15 \0\x16\x13 \0\x03\x01Â\x04TE\r\0-éðO°\0&\x04F\x05øÒ\0ü÷ÎüF÷OûøÒp\x04©\x1e78F_÷Lúßø¼´\x05\0 Ð\x04\0ë@\x01Ûø\0\0\0ë\0\x06`F``\x03à\x04¨_÷&úð³\b ø \0Oð\x01 ø\v ø\apøÐ\0ø\0`ø\b\0ø\x02`_÷!ûø \0´øL\0Oð\x02 @\x1c ð\x01\0²ø\x04\0\x02(\x01Òø\x04´øN\0½ø\x04\x10@\x1c ð\x01\0B\x01Ù@\x1a\x05øÒ\0¥÷Nû\x05oð\x01\x02\bD\x05´øH\x10\x02ëA\x02B\x03ØH\0\0à\x12à\x1eø\x06\0øÑ\0°±\0-~дøÈ\0ø\0\0´øÊ\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù-t²\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù-u¬LüÿY{!\0ø\x02\0øÕ\0à\0#k"@ò¡1ûHp÷Dù\a°½èð\x01'Y÷³ÿ\x18±^÷ø\0¹\0'´øD\0@\x05\x05Õ¸ø\0\0\x10±ø\x02\0 à´øJ\0;FB\0´øH\0A\0hF_÷û½ø\x02\0\x01( ÙéIIh@\x1e±ûðò\0û\x12\x10 ð\x01\0ø\0\0øÒ\0\x05ªiF¥÷\x17ûH»´øD\0@\x05\x19Õ¸ø\0\0°±JF!FhFÍø\f_÷üйRF!FhFÍø\f _÷{ü¹2F!FhF\x03_÷tüX¹\x03©hF_÷:û0¹ø\0`´øJ\0@\0ø\x02\0½ø\0\0]±¤øÈ\0½ø\x02\0¤øÊ\0ø \0øÕ\0\x17à à¤øÄ\0½ø\x02\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù-ÒX\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù-ÓRLüÿT|!\0¤øÆ\0ø \0øÔ\0\và´øÄ\0ø\0\0´øÆ\0ø\x02\0øÔ\0ø \0\x04Ûø\0\x10\0ë@\x02\x01ë\0\0\x02`\x01B`\x02`\0-\x7fôk¯\x04\0ë@\0\x01ë\0yøÖ\0aç\x03\x01¼\x02G\r\0-éðO\x05FøÒ\0°FFF\x1e0\x04©_÷4ù\0(xÐ÷,ú\x04\0ë@\x01 H\0h\0ë\x01\bh\0Hh\x01h\x02\fh\x06Hh\ah\b\0 \b`H``\x05©hF_÷®þµøN µøL\x10hF`÷Ïù\x02%Oð\0 \fOF ºø\x02\0 @\x04\0\fø\x02\0B\x05Ñ\x05 B\x02ÒOð\0 @à\0&¸ñ\0\x0f\x01Ð\0$\x1e\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù./Î\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù.5øLüÿO}!\0à\x03©hF_÷¡ú\x01(\x1aÑ\x03¨B\x17ÑOð\x01 )à\vë\0½ø\x02\x10\0h°ûñò\x01û\x12\0ø\0\0\x03©hF_÷qþ\x03¨BêÐd\x1cDEêÓ½ø\x02\0\x1e²ø\x02\0ºø\0\x10°ëA\x0f\x02Óv\x1c\f.ËÓ\x7f\x1cm\x1e\x03/·Ó¹ñ\0\x0f\x04Ð\x14\x03\x01`\x03à\x10à\x14\0 \b`\x04\0ë@\x01bH\0h\0ë\0\x06\x01`\aA`\b`HF\v°Ææ\x03\x01Ö\x03ÊH\r\0pµ°\x04F÷ù\0% h\x03©_÷ø ±ài\0\x04\x06Õ\x01%\x04à\x03¨_÷~ø\0(zÐTH\0x\x18±ài\0\x04\0Õ\x01%\x04 ø \0\x01 ø\v\0 hø\a\0 ho÷áùø\b\0´ø\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù.\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù.~LüÿJ~!\0°\0ø\0\0´ø²\0ø\x02\0ø´\0ø \0!FhF^÷ëý½ø\0\x10BNÈ\a\x05ѽø\x02\0±\x1eB\bÝOð\0\0\0-FÑø\0\0½ø\x02\0 ±\r¹ðxè³\x01%à7H\0x(¹´øª\0´ø¨P¨B\x04Ñ´ø¨\0ø\x02\0,à0x8±ài\0\x04\x04Ôø\x02P¤ø²P'à´ø¼\0\x10± B\0Ù\x05Fpx±ài\0\x04\x0eÕð B\vÙ^÷/þ@B\0ë\0´øª\x10\x05ë@\0B\0Ò\x05F´øª\x10\x01#*FhF_÷ëù½ø\x02\0\x01à\x02àUà¤ø²\0\x04©hF_÷Àù\x05\0Mаx\x02-\x03Ðб\x01-%Ð3àh±ái \x04 Ô´ø¬\x10B\x06Ò´\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù.ïô\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù.ðçLüÿE\x7f!\0ø²\x10òB\x01Ù¤ø¬\0½ø\0\0¤ø°\0ø \0ø´\0^[à\x1aàP1 \0\a\0\x02\0\0 2\0G1 \0è\v!\0I1 \0ái \x04\vÔ´ø¬\x10B\aÒ´ø²\x10òB\x02Ù¤ø¬\0\x02%'I\x03\0" h\0ë@\0\x01ë\0\0\x01`\x01A`\x02`\x04! F÷'ù(F\x06°p½\x03\x01\x1eJ\r\0\x1dJ\x03F\bF\x11y\0)\x05ÐB\x03ÙÒB\0Ò\bFpG\x03\x01j¶J\r\0\x10µ\x04F\x10\0\x01Ñ´øª\0\x15J\x12y\0*!Ð\x12JRyB\x1dÓbk\a\x01Õ\x05#\x04àÒ\a\x01Ð\x03#\0à\x01#´øf \x14\v\x01Ð[\x1d\x05à\x12ôpo\x01ÐÛ\x1c\0à[\x1cB\0Ó\x1eB\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù/MQ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù/NÓLüÿ@!\0\0Ù\x13F\x10½P1 \0è\v!\0Ô\x1d \0\x03\x01\x03\x1cK\r\0-éøO\0$&FOð\x01 ÷¤þ\x05FL÷ËýO8h\0ðà\x01H\x02x\x02ð\x1f\x02\x11C9`9\x1f hCx\x02ðà\x02\x03ð\x1f\x03\x1aC `:\x1d\x13hø\x02À\x03ðà\x03\fð\x1f\fCê\f\x03\x13`J\x13hø\x03À\x03ðà\x03\fð\x1f\fCê\f\x03\x13`ßø\0¢ ñ\b Úø\0À\0y\fðà\f\0ð\x1f\0Lê\0\fÊø\0À8hßøØÁ\0ð\x1f\0\fñT\f\fñ\x04\b\x03(\x03Ó\x1eÌø\0\0\x04à\0#Ìø\00\x18±@\x1eÈø\0\0\x01àÈø\00í³\x04-IÐ\x10h\0ð\x1f\0\b0Úø\0 `ó\x04\x02Êø\0 fK@3\x1ah\0ð\x10\0"ð\x10\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù/«3\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù/«ôLüÿ;!\0\x02\x02C\x1a`E³\x03-7Ð\bh\x04-\0Ð\x1e8`0÷ ü\0(>ÐjF\x02!n 0÷ëû½ø\0\0Á²Aê\x10 \x01\x06\x01ÕOðÿ9\0ð\x7f\0\0û ð@²\0()ÐRJ\x02ë\x01ù\00B\x1aÜ\x01à\fà\x0fàù\x01\x10B\x13Ým±\x04-\vÐ\x02ë\0ù\x02`\x0fà\x10h\0ð\x1f\0µç\bh@\x1eÈç\x02ë\0ù\x03`\x03àd\x1cä² ,ÚÓ8h0DÀ²8`½èø\x03\x01\x01L\r\0pµS÷}ù\x04FS÷\x7fù\x05FS÷ù°ù\x18\x10°ù\x1a iCOê!\x01ëÂ\x11Oêár\x01ëQOê¡! ²Oêár\x01ëRaÉ\x11\0Õ\0!\x1f)\0Ý\x1f!(JQq°ù\x14\x10°ù\x16\0aC\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù0\bo\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù0 fLüÿ6!\0Oê!\x01ëÀ\x10Oêàq\0ëPOê \0²Oêàq\0ëQ`À\x11\0Õ\0 \x0f(\0Ý\x0f qp½\x03\x01\x01\x1cM\r\0\x10µÿ÷¼ÿ^[J\x10h\x17K\0ðÃ\x04ù\x06\x10\x01ð\x0f\0Dê\x04\x14`\x15J`ó\x1f\x11:\x11`\x13J\x11h\x01ðà\x04Yy\x01ð\x1f\x01\fC\x14`\x12h\x02ðà\x02 C\rI \x1d ` IT9 h\x02ðð\x02\x02C `\aJ`2\x11h`ó\x1f\x11\x11`\x10½\x10\x04`\0\a \0\0\a`\0ð\v!\0\x147B\0\x106B\0\x03\x01\x1aM\r\04H\x01h4H\x01`4I hA`4IIh`pG\x03\x01\x1a®M\r\03H\x01h/H\x01`2I hA`.I h`pG\x03\x01\x01ÄM\r\0pµ/H\x06&\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù0eà\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù0føLüÿ1!\0%h.L\x01|").Ð\bÜ\x01)\x10Ð\x06)\x19Ð\x10)%Ð!)\x06Ñ'à()\x17Ð*)^[Ð+)\x1cÐ%`½èp@×çø©\0\x1càÿ÷Èÿ&`p½ÿ÷Ïÿ%`p½ø9\0\x03(÷Ñòç@Cò\x061\bBñÐìçø`\0\x06à@jäçøe\0\x01àøY\0\x01(äÑßç\x03\x01\x16DN\r\0\x10µ ÷KùQ÷ø½è\x10@G÷ º\x03\x01>VN\r\0\x10µ\fL x\x10±\x01 G÷'ü\0 p\x10½\0\0\f\b \0h\x01`\0\x14\b \0\x14\f!\0\b\b \0\x10\b \0\0? \0d\bd\0|e\r\0\x03\x01\x16N\r\0\x10µÈJÈIÉHP÷HÿÈI\bp\x10½\x03\x01\x16¢N\r\0ÅIÇHÜ9È`\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù0Ãu\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù0ÄLüÿ,!\0ÇI\0õ`\b`pG\x03\x01,´N\r\0ÅJÆK\x01(\x03Ð\x02( Ñ\x18\x06à\x10h\x18Hx\x01(\x03ÐCö\x02\x10\x10`pGCö\x0e\x10úç\x03\x01HÜN\r\0\x10µ»J¼L\b2@ö¢c\x01(\x03Ð\x02(\x12Ñ \x0fà\x10h² Ix\x01)\vÐIÜ9ÉÁõQ²aó\x1f\x10@ð\b\0\x10`\x10½\x10hcó\x1f\x10÷ç\x03\x01p O\r\0pµ¤J¤K©L\x12xÜ;\x02ë\x02\x03ëÂ\x02¨MR}<¨NOôÀ\x03\x01( Ð\x02(\x06ÑHx\x01(\x1aÐ0 `\x01 X`p½ h²0Óø\x04a.`Ix\x01) ÐHòÿ\x01\b@\x02ð\x7f\x01@ê\x01 `\0 X`Ãø\x04!p½(hÃø\x04\x01p½\x03\x01<\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù1!\b\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù1"(Lüÿ' !\0O\r\0\x10µIKJL\x01(\x06Ð\x02(\x03Ñ\x18h\b` h\x10`\x10½\bh\x18`\x10h `\bh ð?\0@ðH\0\b`\x10h ð\x02\0ïç\x03\x01$ÄO\r\0JOôÀ\x01\x01(\x04Ð\x02(\x01Ñ\x10hapGi\x10`i ð\x02\0÷ç\x03\x01FäO\r\0OôÀ\x02\x01(\x06Ð\x02(\x14ÑÒøü\x02 ð\f\0\ràHx\x01(\rÐ\0( Ñx\x01(\bÐÒøü\x02 ð\f\0@ð\b\0Âøü\x02pGÒøü\x02@ð\f\0÷ç\x03\x010&P\r\0iJrK\x182\x01(\x03Ð\x02( Ñ\x18h\aà\x10h\x18`Hx\x01(\x10h\x03Ð@ô@\x10`pG ô@úç\x03\x010RP\r\0iKiJ\x01(\x03Ð\x02( Ñ\x18h\aà\x10h\x18`Hx\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù1~¦\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù1\x7fÏLüÿ"!\0\x01(\x10h\x03Ð@ô`\x10`pGOöÿ1\b@ùç\x03\x01$~P\r\0ZI_J\x1c9\x01(\x04Ð\x02(\x01Ñ\x10h\b`pG\bh\x10`\bh\0ð\x03\0÷ç\x03\x01\x01P\r\0-éðAXOUN\x01(\x18Ð\x02(\x14Ñ0h9h ô\0p!ô\0Q@ôtAôE4`=`2 o÷ÿ$ôp%ôA0`9`½èðHx\x01(\x16Ð0h9h ô\0p@ôp!ô\0QAôA0`9`@ô\0pAô\0Q0`9`½èðAÈ o÷s¿Oô@8`0hOöÿA\b@0`OôÀ@8`0h²@ô@p0`Òç\x03\x01\2Q\r\00µ%J%K3M4L|:`3\x01( Ð\x02(\x06ÑHx\x01(\x03\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù1ÜG\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù1à\rLüÿ\x1d!\0Ñ(h\x10` h\x18`0½\x10h(`\x18h `Hx\x01(÷Ñ\x13H\x13LÉx\0xÜ<\0ë\0\x04ëÀ\0)±\x01)\x03Ð\x10`\0 æçÀúç\x03\x01\x01Q\r\0\x1eJ Kt:\x01(\x03Ð\x02( Ñ\x18\x06à\x10h\x18Hx\x01(\x03ÐOô\0`\x10`pG% ûç\0\0 \x1e \0,\x11 \00h\r\0´+ \0e\r\0¼+ \0¬\x06A\0(\x10 \0&\x10 \0,\x10 \0$\x10 \0Ü\x04`\0D\x10 \0d\x06`\0H\x10 \00\x10 \04\x10 \08\x10 \0è\aA\0L\x10 \0ü\x04A\0<\x10 \0@\x10 \0*\x10 \0\x03\x01¸\x01\x14R\r\0\x02F0´\0 \x11*RÒßè\x02ð JG>;)\fE\x0fEG;JJ))N\00¼X÷\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù2<¶\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù2=©Lüÿ\x18!\0P¸0¼W÷¿;J\x13hoó\x0f\x03Bø99L:K\x05)\x0fÒßè\x01ð\x10\x03\x10\x16\x10\0\x02ñ|\x02QiHö\x03Aê\x03\x01QaOð»1\x11`0¼pG\x19h ±ÑgùçahûçRø|\x1f\x19`¡h\x11`Qic\x19CQaíç0¼W÷f¿\x11±0¼W÷¿0¼W÷³¿\x02 áç0¼W÷g¿0¼\bFW÷Ê¿0¼W÷y¿\x01 Õç\x03\x01|ÈR\r\0\x1cIE \b`\x19H\x01xOôH\x10©±\0ñ\0Ðø¤\x10!ô|QAôøQÀø¤\x10\x01h!ôp!Aô\0!\x01`Am!ð\x01\x01Ae ñ\0\0ñ\0Ðø¤\x10!ð?\x01Að\x1f\x01Àø¤\x10\x01h!ðpaAð\0a\x01`Am!ô1Ae\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù2\r\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù2\bLüÿ\x13!\0pG\0\0\02\0\x1c\f!\0`j\r\0\01\0\x03\x010@S\r\0pµÁ\x17\0ëÑaL\x11!ð\x1f\x01E\x1ap÷øOðà"\x01!\x02ë\x02©@Âø\x11½èp@p÷{¸\x03\x01^lS\r\0gK0µ\x18D\a ÕPø\x02<\x1e^[\f\x1c\x13p^[ Sp²\x02ñ\x02\x02Oê\x04\ràPø\x04;\x13pOê\x13%UpOê\x13EpOê\x13cÓp\x02ñ\x04\x02#\0¤ñ\x01\x04¤²ìÑ\a\x03Õ\0h\x10p\0 Pp0½\x03\x01~ÆS\r\0\x0eµQH\0x\x01(6ÑPH\0hPI\0ð\x04\0 x\bC.Ñ0÷8ø\0(*ÐjF !\0 ÿ÷½ÿø\0\0P(!Ñø\x01\0O(\x1dÑø\x02\0\0(\x19Ðø\x03\0\0(\x15Ð\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù2÷Ö\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù2øÉLüÿ\x0e!\0ø\x04\0x¹ø\x05\0`¹ø\x06\0H¹ø\a\00¹ø\b\0\x18¹ø \0\0(\x02Ð\x01¨m÷÷ÿ\x0e½\x03\x01^@T\r\0\x10µ\x04('Ñ6I4H\b`6I5H\b`7I5H\b`\x0f ÿ÷qÿ6I4H\b`6I5H`6IOðÿ0`6I4HH`ÿ÷¥ÿû÷ºþ3I\b`"H@x(±2I\x01 `\x15 §÷`ø\0 \x10½\x03\x01\fT\r\0\x04!\b W÷q¿\x03\x01\f¢T\r\0\x03!\b W÷m¿\x03\x01â\x01ªT\r\0\x10µ¯òo\0)I\b`ÿ÷õü(I\x1d )LHp'H¯ò!\x01 d'HA`¯ò5\x01`F÷iú&I$H\x05"\b`&I$H0#\b`%Hàg%H g%H\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù3U7\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù3V,Lüÿ !\0\f!AP!\x01qBqÃ\x01rBr%!\x01s\x03!As\x10½\0\0~\x11e\0(\f!\0\x012\0N\x05 \0\x05W\r\0# \0W\r\0Ä# \0W\r\0ü% \0U\r\0T2 \0ý\\r\0xÓ \0\x10 \0u5\r\0ä\ \02 \0\02\0´9 \0³2 \0\aX\r\0\x18R \0Ì|\r\0Å@\r\0¼0 \0\x03?\r\0À0 \0¥A\r\0\x11A\r\0\x18 \0\x03\x01\fU\r\0[I\0{\bppG\x03\x01ø\x02U\r\0ð´\0$YM\f`¥ñ\x04\x05+pÐ\x06Ü\x01+\vÐ\x02+kÐ\x03+iÑ\x13à\x06+fÐ\b+\x1cÐ?+bÑ?à *\x02Ð\x0f*]Ñ\x03à,h\f`lhà¬h\f`ìh à\x03*\x02Ð\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù3²¥\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù3³Lüÿ\x04!\0?*PÑ\x03à%h\r`dh|à¥l\r`älxà\x12*\x17Ð\x06Ü\r*\x18Ð\x0e*\x1aÐ\x10*sÑ\và\x17*\x05Ð\x1c*nÑ¥j\r`äjfà¥k\r`äkbà¥n\r`än^à%o\r`doZà,i\f`liVà¬i\f`ìiRàé*TÐ\x0eÜ$**Ð\x06Ü\x14*/Ð\x19*\x1dÐ\x1a*JÑ\x1eà%*$Ð *EÑ)à@òE\x16¢òE\x15²B>Рܢõu?=.Ð\x01-0Ð\x02-5Ñ-à3à\x0e-\x1aÐ\x12-/Ñ^[à¥h\r`äh&à%i\r`di"à¥i\r`äi\x1eà%j\r`dj\x1aà%k\r`dk\x16à%l\r`dl\x12à¥m\r`äm\x0eà\x0eM-x\x01-\x0eÑ%m\r`dm\x06à¥\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù4\x10\b\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù4\x10úLüÿÿ!\0o\r`äo\x02à%n\r`dnL`\fh\0,\x02Ñð¼F÷¼ð¼pG\0\0-\f!\0äj\r\0Ù\v!\0\x03\x01\x01\x04W\r\0pµ\x04F\x01)\x02Ð\x02)/Ð0à¤õà@ 8!Ñ\x17H÷\aú\x04F\x16M\x16N\x0eà\x14I\x13H÷Jù)\v)\x02Ñ(y\x02(\bÐ\x06ë\0\x01h\x0eHGd\x1eîÒ\0$\x12à\vH÷¦ú\vI\x10 û÷èúóç¤õà@\x068\x06Ð\x0e8\x04Ñ\aI\bpìç÷\x1cû Fp½\f` \0¤# \0<\b\0\ï \0´b\r\0\x03\x01\bW\r\0\0 pG\x03\x01\x1cW\r\0\b{B\b\0 \x7f*\x03Ð\a*\x01Ñ\x01J`pG\x193\r\0\x03\x01P¨W\r\0ðµ\x11I\x0fH\x0fNHa\0 6\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù4m~\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù4nxLüÿú!\0\x1d\x01'Vø00Z \x03ð\x1f\x05Qø"@\aú\x05ó\x1cCAø"@\x06ëÀ\x02KiRh\x03ë@\x03Bð\x01\x02ÂõX"\x1a@\x1cæÐð½\x04k\r\0l \0\x03\x01\x16ôW\r\0.(\x01Ó\x01 pG JBø \x10\0 pG\x03\x01\x01\x06X\r\0\x10µ\x1eI\x04 ÿ÷òÿ\x1dI^[ ÿ÷îÿ\x1cI\x1c ÿ÷êÿ^[I \b`^[HÏ!\x01`Oðæ\x01A``Oð\x17\x01Á`Oð@\x01\x01aOð\x01\x01AaOðò\x02aOðÎ\x02ÂaOðÐ\x02\x02bOðè\x02dOðÈ\x02@ø,Oðì\x02@ø,@ø\x1c IOð\x04\0\b`Oð\0\0\x10½X\x15!\0X\r\0Á\\r\0Û\\r\0L\rB\0\x01B\0|7B\0\x03\x01 \b\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù4Ë \x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù4Ì\x04Lüÿõ!\0X\r\0-é÷O\aFßHßøt£\0h\aõzD\0ð\x03\x02OôzpDCÚHßølR\x1c\x05h\x04ëU\0°ûõö\x06û\x05ðFÉø\0\0ÕH\x05û\x02ñø\0°\x01û\vð ÷²û\0"ÑK ÷ù\0"ÐK ÷%ú\0"ÏK ÷©ü ÷wûÎI\bÎHhOôBÀó\x13\0¥û\0\x01\x18Añ\0\x01Â\vÉHBêAB\x02`OôH\x10\0hÆIÀó\x02\x10Oð\x01\f\x02#p³\x01(.Ð\x02(.Ð\x03(.Ð\x04(.Ð\x05(.Ð\x06(.ÐÁø\0À\bh¼K\x04û\0ñ\x01ëR\x01±ûòñ\x02û\x01ò\x02ëP\x02²ûðð\x18`\0^[\0Õ@BµJ\x12hB^[ظë\x04\0\0Õ@BB\x15Ø\0 ±B\x10Ù\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù5)\x0f\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù5*\x04Lüÿð!\0\x18`\x10à\v`Üç\x03 \bà\x04 \x06à\x06 \x04à\b \x02à\x10 \0à\x18 \b`ÏçÉø\0\0Ýé\x01\x06 ÷Dû¤K\0" ÷ûFF\aõz@OôzqHC ÷7ûKFBF\x01.\vÐ ÷4ü ÷\x02û\x01FH\x02hHB\x04Ó\x1e"-à ÷øøòçJ\x12hB\x01Ó#"$àJ\x12hB\x01Ó("\x1eàJ\x12hB\x01Ó-"\x18àJ\x12hB\x01ÓF"\x12àJ\x12hB\x01ÓP"\fàJ\x12hB\x01ÓZ"\x06àJ\x12hB\x01Ód"\0àn"\x02` "±ûòñJÐø\0\x01û\bñ\x12x\0\0!F«÷gýKj\0^[h_\08\x18Añ\0\x03Ù\x03AêPAÀ\x03@\x19A\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù5[\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù5pLüÿë!\0ñ\0\x01\0#U÷ôü û\x056\x01û\x05a\0"\0û\x02\x11\vBêB\vÕ^[añ\0\x06sI\b`sH1F\x05`(F ÷Öú\0"ZK ÷ø\0"YK ÷6ù ÷úlI\0û\vð@\x1c@\b\b` !¸ûñò\0#1F(FU÷Æü\x04''ú ÷û\x17:FU÷¿ücI\aF\b`\0^[\0Õ@BßøOð \vFZFø\0°\0#(F1FU÷¬ü\b@êpÀ^[\0Õ@BXI\fh B!Ò\b"ø\0 \0#(F1FU÷ü\b@êpÀ^[\0Õ@B B\x11Ò "ø\0 \0#(F1FU÷ü\b@êpÀ^[\0Õ@B B\x01Òø\0°ø\0 \0#(F1F\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù5ãí\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù5å\vLüÿæ!\0U÷yüM\bOê0\x04AHRF\0#\x04`@H\0\x19Eñ\0\x01U÷lü>I\x1f(\b`\x01Ù\x1f \b`\x02F\0# F)FU÷`ü\x04F9H\0!É\x05\x04`OêÉPe\bAêY!@\x19Añ\0\x01"F\0#U÷Oü2I"F\0#\b`OðàP\0!(\x18Añ%\x01U÷Cü-I"F\0#\b`Oð¨@\0!(\x18Año\x01U÷7ü(I\b`\x01 ½èþ\0»\0\x187B\0ü\x0f!\0è\x11!\0¨\x11!\0\x1eA.A\0\0ð?¬\x11!\0\0\x102\0\x10\x12!\0\f\x12!\0\b\x12!\0 \x13!\0\0@@¸\x11!\0ô\x11!\0¼\x11!\0À\x11!\0Ä\x11!\0È\x11!\0Ì\x11!\0Ð\x11!\0Ô\x11!\0©\x11!\0Ø\x11!\0Ü\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù6A\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù6B«Lüÿá!\0\x11!\0ì\x11!\0ü\x11!\0°\x11!\0ª\x11!\0à\x11!\0´\x11!\0\0À]\0ø\x11!\0ä\x11!\0ð\x11!\0\0\x12!\0\x04\x12!\0\x03\x01\f¸\\r\0\x01!pU÷¨¿\x03\x01\x1eÀ\\r\0\fH\0x0±\fI\bh\0ðð\0@ð\f\0\b`Oð\0\0pG\x03\x01&Ú\\r\0\x06H\0x0±\x05I\bh\0ðð\0@ð\x04\0\b`Oð\0\0pG*\f!\0\0B\0\x03\x01 ü\\r\0\x04(\x03Ð\x03(\aÓX÷WºOôH\x11Oô\0PÈe÷çpG\0\0\x03\x01\x01\x18]\r\0-éðA\x1aH\0hÀ\a.Ð\x19H\x01hAð\x01\x01\x01`\x17O|?8h@ð\08`\x15N\x01 0`E÷\x1cù=h%ð\08`\x0fHt8\x01hAð \x01\x01`\x01h!ð\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù6!\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù6 ILüÿÜ!\0 \x01\x01`\0$\x04à0 E÷uø\x04ñ\x01\x040h\a\x01Ô2,õÓEð\08`\0 0`½èð\0\0`\x18 \0|\bd\0´\x042\0\x03\x01\x01]\r\00µ^[L$x\x01,\aѰõá?\aÐ\x18L%hEð\x01\x05%`\x17L B\x01Ø\x16L\0à\x16L´ûðð\x10(\fÛÄ\x17\0ë\x14t%\x11$ð\x0f\x04\x04^[\x18h ð\b\0@ð\0\x06à\x05F\x18h\0$ ð\0@ð\b\0\x18`Åõp\x10`\x04ëÔp@\x10"\x1aBê\0\x10\b`0½\0\0+\f!\0\x1c\x046\0`ã\x16\0\06n\x01\0lÜ\x02\x03\x012\x18^\r\0pµ\x04F\0%o÷\x1cû\x06F Fo÷ðû\x04\0\x06Ð\x01!o÷Óû\x05F Fo÷Éû0Fo÷\x10û(Fp½\x03\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù6üÏ\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù6ýøLüÿ×!\0>F^\r\0pµ\x04F\0%o÷\x05û\x06F Fo÷Ùû\x04\0\aÐ\0!o÷¼û\x05F Fo÷²û\x04àË!Oô\0pn÷þ0Fo÷óú(Fp½\x03\x01>^\r\0pµ\x05\0\x16H\x04h\x16Ð\fà)F Fo÷ü0±D±)F F½èp@o÷U¼$h\0,ðѽèp@þ!Oô\0pn÷y¾p½\x03\x012º^\r\0pµ M\x01F\x01$(xP±\bFo÷û(±\x01|@|*xPCB\0Ò\0$ Fp½\x05 \0,\f!\0\x03\x01(è^\r\0\x06I\0 hÉ\x06\x06Õ\x05H\x01h!ôp1\x01`Oôp pG\0\0\x10k\r\0X\x1e \0\x03\x01<\f_\r\0pµ\x05F\fFj\b!\x01ë\0o÷û\0(\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù7Z\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù7[«LüÿÒ!\0\x0fЪj\0ñ\b\x01\x02*\x03ÑTø\x04+Aø\x04+"h `\x01F(F|÷Eÿ\x01 p½\x03\x01pD_\r\0pµ\x16L x\0(&Ðo÷oø\x01F\x13H\0h,÷ÿ¡x@ö5BQCÀë\x04o÷wú\x0eM\x06F(xÀ\x06\rÕ\0,\vÜ,÷¶ÿ ¹ H\x01h!ð \x01\x01`(x ð\x10\0(p0F½èp@o÷cºp½\0\0Ä\x18 \0\x14k\r\0\x16\x1d \0 \x046\0\x03\x01X°_\r\0ÐøØ \x04F\0!GBNßø\bßø\b\x04ñ° PF|÷`ÿ\x05Fpy±°xx±o÷?úø\0\x10\aFAð\x10\x01ø\0\x10o÷!øÉø\0\08Fo÷5úÔøØ )F FGáç\x03\x01\x18\x04`\r\0/H\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù7¸'\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù7¹XLüÿÍ!\0\x10µ@y\x18±,÷mÿ\0(\0Ð\x01 \x10½\x03\x01À\x01\x18`\r\0-éðAßø°\x0eFø\0\0à³æ³À\a=Ðqh\x06ñ\b\0¡õàB:\x0fÑE\x04F\x05ñ \0o÷úú\aF*F!\x1d 0o÷èû<FGò?\0\x1dà¡õàBA:"Ñ\x05Fý÷bú\a\0\x1dÐ(x\x13(\x1aÐhx\0\x1d?÷}øix ñ\b\x04\x1cA ø\x04{jx)F\x1co÷ÈûGò\0``U÷Ûû!F\x01à\fà\x01à-÷Zøø\0\0@\a\x05Õ0Fo÷{û\0 ½èð\x01 ûç\0\0Ä\x18 \0\x16\x1d \0\x14k\r\0-\f!\0\x03\x01:Ô`\r\0\x1dI0´ hj±\x01F¡û\x02\x05\0#\x03û\x02R\x01û\x03!\x18J\x19K\x12h\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù8\x15î\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù8\x17\x14LüÿÈ!\0^[xZC\x04à@öë1 û\x01\x01d"0¼\0#U÷»¹\x03\x01R a\r\0ð´\x0fJ\x12hj±\x0fK\x1ch\x0fK^[x\C\x03F¤û\x03\x06\0%\x05û\x03c\x04û\x011 àd"\x03F£û\x02\x05\x01û\x02Q\0$\x03û\x04\x11@öë2ð¼\0#U÷¹ä\x18 \0à\x18 \0Ù\x18 \0\x03\x01PXa\r\0\x10µ\x04FE÷ø\fI\x02(\bp"j\x11ÐOôq C"b I J h\x12xQC@öë2QCd"±ûòñ\x05J\x11`\x10½!íç\0\0\x19 \0à\x18 \0Ù\x18 \0ä\x18 \0\x10\x01\x0f\0ìÝ\x02\0¢ð\bº\0\0\0\x02\r\0\x10\x01\x0f\x01Ø\0\x03\0 ð»\0\0\x04\b\r\0\x10\x01\x0f\x02$Æ\x02\0¤ð ¹\0\0<\b\r\0\x10\x01\x0f\x03x\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù8s\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù8t©LüÿÃ!\0Ì\x02\0£ðȺ\0\0\f\x02\r\0\x10\x01\x0f\x04(Û\x03\0ðz»\0\0 \x02\r\0\x10\x01\x0f\x05TÜ\x03\0ðìº\0\00\x02\r\0\x10\x01\x0f\x06PÌ\x03\0ðöº\0\0@\x02\r\0\x10\x01\x0f\aÜÒ\x03\0ðº¿\0\0T\x02\r\0\x10\x01\x0f\b,Ï\x03\0ð¹\0\0d\x02\r\0\x10\x01\x0f $¶\x03\0ð*¾\0\0|\x02\r\0\x10\x01\x0f p^[\b\0Nð»\0\0\x02\r\0\x10\x01\x0f\v¼\a\0Vðò¿\0\0¤\x02\r\0\x10\x01\x0f\f\x04\a\0WðÓ¼\0\0®\x02\r\0\x10\x01\x0f\r¼\a\0Wðý¾\0\0º\x02\r\0\x10\x01\x0f\x0eÀ7\b\0p½\0\0\0\0\0\0\0\0\x10\x01\x0f\x0f°7\b\0\x03)øÒ\0\0\0\0\0\0\x10\x01\x0f\x10h<\a\0\ðr¿\0\0P\v\r\0\x10\x01\x0f\x11\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù8Ñ.\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù8ÒPLüÿ¾!\0)\a\0^ð¥¹\0\0â\f\r\0\x10\x01\x0f\x12p9\a\0\ð¬¼\0\0Ì\x02\r\0\x10\x01\x0f\x13t@\a\0\ð3¹\0\0Þ\x02\r\0\x10\x01\x0f\x14E\a\0[ð²¾\0\0ô\x02\r\0\x10\x01\x0f\x15À3\a\0\ð¢¿\0\0\b\x03\r\0\x10\x01\x0f\x16@4\a\0]ðn¼\0\0 \r\r\0\x10\x01\x0f\x17¬¦\x03\0ð0¾\0\0\x10\x03\r\0\x10\x01\x0f\x18p'\x04\0ðÔ½\0\0\x1c\x03\r\0\x06\x01\x04 \x0f\r\0\x10\x01\x0f\x19ÌT\x03\0\x02!\0à\0\0\0\0\0\0\x10\x01\x0f\x1aÈU\x03\0ð¬¾\0\0$\x03\r\0\x10\x01\x0f^[`R\x03\0ðg¸\0\02\x03\r\0\x10\x01\x0f\x1cm\x03\0ðàº\0\0D\x03\r\0\x10\x01\x0f\x1dL\\x03\0ð»\0\0T\x03\r\0\x10\x01\x0f\x1eØP\x03\0ðD¹\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù9.Î\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù9/ÄLüÿ¹!\0d\x03\r\0\x06\x01\x04l\x11\r\0\x10\x01\x0f\x1f<^\a\0Zðº\0\0x\x03\r\0\x06\x01\x04X\x13\r\0\x10\x01\x0f {\a\0Xðø»\0\0\x03\r\0\x06\x01\x04´\x13\r\0\x10\x01\x0f!ÔÍ\a\0Sðàº\0\0\x03\r\0\x10\x01\x0f"¸\r\a\0\0\0I\0\0\0\0\0\0\x10\x01\x0f#Ô\x16\a\0^ðh¾\0\0¨\x03\r\0\x10\x01\x0f$,\a\0Wð½\0\0H\x15\r\0\x10\x01\x0f%ç\a\0SðH½\0\0$"\r\0\x10\x01\x0f&$è\a\0QðȽ\0\0¸\x03\r\0\x10\x01\x0f'hð\a\0Sð\a¹\0\0z"\r\0\x10\x01\x0f(dp\x06\0kð?¹\0\0æ"\r\0\x10\x01\x0f)ük\x06\0iðà»\0\0À\x03\r\0\x10\x01\x0f*Ìl\x06\0kðò»\0\0´$\r\0\x10\x01\x0f+Ôi\x06\0kð\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù9e\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù9\Lüÿ´!\0½\0\0\x0e%\r\0\x10\x01\x0f,Üh\x06\0kðr¾\0\0Ä%\r\0\x10\x01\x0f-`Ï\x05\0sð2º\0\0È\x03\r\0\x10\x01\x0f.D&\a\0`ðH¸\0\0Ø&\r\0\x10\x01\x0f/à\0\x02\0°ðx¹\0\0Ô\x03\r\0\x10\x01\x0f0Ì÷\x01\0°ð\v¾\0\0æ\x03\r\0\x10\x01\x0f1ÔM\x05\0{ð\x14»\0\0\0\x04\r\0\x10\x01\x0f2|ñ\x04\0ðL¹\0\0\x18\x04\r\0\x10\x01\x0f3¸»\x02\0¤ð6¼\0\0(\x04\r\0\x10\x01\x0f4x:\0\0\x01 ¹\0\0\0\0\0\0\x10\x01\x0f5 \x13\0\0Ïð¸\0\0@\x04\r\0\x10\x01\x0f6xB\x02\0¬ðì¸\0\0T\x04\r\0\x10\x01\x0f7`B\x02\0¬ð\x0e¹\0\0\x04\r\0\x10\x01\x0f8x\x01\0·ð\x0e¼\0\0\x04\r\0\x10\x01\x0f9\fÅ\x05\0s\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù9éð\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù9êæLüÿ¯!\0ðÊ¿\0\0¤\x04\r\0\x10\x01\x0f:pÆ\x05\0sð0¿\0\0Ô\x04\r\0\x10\x01\x0f; l\x05\0yð\¼\0\0Ü\x04\r\0\x10\x01\x0f<\x10¾\x04\0F\v0\0\0\0\0\0\0\x10\x01\x0f=°d\x06\0lðE¿\0\0>3\r\0\x10\x01\x0f>øg\x06\0iðx¾\0\0ì\x04\r\0\x10\x01\x0f?üa\x06\0mðî¸\0\0Ü3\r\0\x10\x01\x0f@\x14¬\x03\0ðr¼\0\0ü\x04\r\0\x10\x01\x0fAà\x06\0iðH¼\0\0t4\r\0\x10\x01\x0fB\x1c¡\x06\0fðô¹\0\0\b\x05\r\0\x10\x01\x0fC3\x04\0ð¸\0\0\x18\x05\r\0\x10\x01\x0fD\x04>\x04\0ð»\0\0$\x05\r\0\x10\x01\x0fE8\x04\0ðl¾\0\0l\x05\r\0\x10\x01\x0fFÄe\x02\0©ðÜ¿\0\0\x05\r\0\x10\x01\x0fG L\a\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù:Ga\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù:HVLüÿª!\0[ðº¼\0\0\x05\r\0\x10\x01\x0fHÌï\x03\0ðàº\0\05\r\0\x10\x01\x0fIø\x03\0ð¾\0\0´\x05\r\0\x10\x01\x0fJ\fù\x03\0ð^¾\0\0Ì\x05\r\0\x10\x01\x0fK\fò\x03\0ðî¹\0\0ì\x05\r\0\x10\x01\x0fL õ\x06\0aðt¸\0\0\f\x06\r\0\x10\x01\x0fMÈò\x06\0að©¹\0\0\x1e\x06\r\0\x10\x01\x0fN¤Þ\x04\0ðÄ»\0\00\x06\r\0\x10\x01\x0fO,B\x05\0|ð\bº\0\0@\x06\r\0\x10\x01\x0fPüG\x05\0{ð(¿\0\0P\x06\r\0\x10\x01\x0fQ$ \x03\0¡ðV»\0\0Ô6\r\0\x10\x01\x0fRl \x03\0¡ðY»\0\0"7\r\0\x06\x01\x048\r\0\x10\x01\x0fSÈ\a\0@\x1a²\0\0\0\0\0\0\x06\x01\x04°8\r\0\x06\x01\x04V:\r\0\x10\x01\x0fT\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù:¤Ò\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù:¥ÈLüÿ¥!\0D\x1f\b\0Nð»\0\0\\x06\r\0\x10\x01\x0fU\x1e\b\0Nðï»\0\0b\x06\r\0\x10\x01\x0fVè\x1e\b\0Nð¾»\0\0h\x06\r\0\x10\x01\x0fW°\x1f\b\0Nð\»\0\0l\x06\r\0\x10\x01\x0fX\x14\x1e\b\0Nð,¼\0\0p\x06\r\0\x10\x01\x0fYøÝ\x06\0bð>¼\0\0x\x06\r\0\x10\x01\x0fZ4½\x05\0tð£¼\0\0~\x06\r\0\x10\x01\x0f[¼\x05\0xð¡¸\0\0â=\r\0\x10\x01\x0f\ì»\x05\0xð3¹\0\0V>\r\0\x10\x01\x0f]D·\x05\0tð£¿\0\0\x06\r\0\x10\x01\x0f^^[\x02\0®ð½\0\0¤\x06\r\0\x10\x01\x0f_L@\x03\0 ðº\0\0TE\r\0\x10\x01\x0f`ÐK\x03\0ðl½\0\0¬\x06\r\0\x10\x01\x0fatM\x03\0ð¼\0\0´\x06\r\0\x10\x01\x0f\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù;\x02E\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù;\x03;Lüÿ !\0b\x1cG\x03\0ðп\0\0À\x06\r\0\x10\x01\x0fc45\x03\0ðȸ\0\0È\x06\r\0\x10\x01\x0fd7\x03\0ð¢¿\0\0ä\x06\r\0\x10\x01\x0feì\x17\x02\0³ð¹\0\0\x1cK\r\0\x10\x01\x0ff\\x19\x02\0³ðÞ¹\0\0\x1cM\r\0\x10\x01\x0fg8Ç\x01\0³ðÜ¿\0\0ô\x06\r\0\x10\x01\x0fh\x10D\0\0Ðð\x18½\0\0DN\r\0\x10\x01\x0fi\x04Ç\x01\0³ðù¿\0\0ú\x06\r\0\x10\x01\x0fjÓ\x02\0§ðF¿\0\0\x14R\r\0\x10\x01\x0fkðÒ\x02\0£ð º\0\0\b\a\r\0\x06\x01\x04ªT\r\0\x06\x01\x04¨W\r\0\x10\x01\x0flô×\b\0Bð¿\0\0$\a\r\0\x10\x01\x0fmð¯\x01\0ºð¾\0\0\x18]\r\0\x10\x01\x0fn\f\a\x02\0°ð\x10¸\0\00\a\r\0\x10\x01\x0fod9\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù;_¬\x0e\x04\x01Lü\0\0\0\x01\x02\0\0\x01\x02\0\0\0\x02\0\0\0\0\0âCù;``Lüÿ !\0\b\0Rð\x16º\0\0]\r\0\x10\x01\x0fpdV\x04\0ðl¸\0\0@\a\r\0\x10\x01\x0fq<V\x04\0ð\x03¼\0\0F^\r\0\x10\x01\x0fr°W\x04\0ðÉ¿\0\0F\a\r\0\x10\x01\x0fsÌ-\x05\0}ð¾¼\0\0L\a\r\0\x10\x01\x0ft*\x03\0ðj¾\0\0X\a\r\0\x10\x01\x0fuT¤\x06\0fð¹\0\0\a\r\0\x10\x01\x0fv\x14i\x05\0yð8¿\0\0\a\r\0\x10\x01\x0fwèp\a\0YðR»\0\0\a\r\0\x10\x01\x0fxg\a\0Zð\f¸\0\0 \a\r\0\x10\x01\x0fyT/\0\0Íð,¼\0\0°\a\r\0\x10\x01\x0fzà1\0\0Íðêº\0\0¸\a\r\0\x10\x01\x0f{üµ\x01\0µðè¸\0\0Ð\a\r\0\x10\x01\x0f|üÇ\x01\0³ðî¿\0\0Ü\a\r\0\x10\x01\x0f}d\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù;¼Ý\x0e\x04\x01Lü\0\0\0\0)\0\0\0)\0\0\0\x02\0\0\0\0\0âCù;½ÔLü&¡!\0È\x01\0³ð¿¿\0\0æ\a\r\0\x10\x01\x0f~P´\x01\0µðй\0\0ô\a\r\0þ\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù;Ð\x0e\x04\x01Lü\0\0\0\0\x0f\0\0\0\x0f\0\0\0\x02\0\0\0\0\0âCù;Ò\x06Lü\f\x14\f!\0\x13\0\0\0\x13\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù;Ü*\x0e\x04\x01Lü\0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0âCù;Ý Lü\x05Ý\v!\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù;ä§\x0e\x04\x01Lü\0\0\0\0\a\0\0\0\a\0\0\0\x02\0\0\0\0\0âCù;åNü\x04ÿÿÿÿ\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù;ìÐ\x0e\x04\x01Nü\0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCù?ðÁ\x18ü\x06\0\0\0Â\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù?ùt\x0e\x04\x01\x18ü\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCù?úà\x03\f\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCù@\bõ\x0e\x04\x01\x03\f\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùAÅS\x01\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCùAÎ\x0e\f\x01\x01\x10\0\ah\x01\a\x0f\0 "\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùAÏì \x10\0\0\0\0\f\0\0\0\f\0\0\0\x03\0\0\0\0\0âCùAØ0\x0e \x01 \x10\0«ë'¸\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùAÙ1\x03\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCùAâT\x0e\f\x01\x03\x10\0¿þÏþÛÿ{\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùAã\x06\x01\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCùA÷ì\x0e\f\x01\x01\x10\0\ah\x01\a\x0f\0 "\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùAø \x10\0\0\0\0\f\0\0\0\f\0\0\0\x03\0\0\0\0\0âCùB\x02\r\x0e \x01 \x10\0«ë'¸\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùB\x03¦\x05\x10\0\0\0\0\r\0\0\0\r\0\0\0\x03\0\0\0\0\0âCùB\f}\x0e\v\x01\x05\x10\0ý\x03@\b\0\x01\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùB\r\x0e#\f\0\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0âCùB\x14\x0e\a\x01#\f\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùB\x15f\x14\f\0\0\0\0þ\0\0\0þ\0\0\0\x03\0\0\0\0\0âCùBr¹\x0eü\x01\x14\f\0BCM43438A1 37.4MHz Raspberry Pi 3-0062\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùBs¨%\f\0\0\0\0\b\0\0\0\b\0\0\0\x03\0\0\0\0\0âCùBz½\x0e\x06\x01%\f\0`\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùB{y8\f\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0âCùB\x01\x0e\x05\x018\f\0\x04\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùBs9\f\0\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0âCùBj\x0e\b\x019\f\0\x013\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0âCùB\v\x05\f\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùB/\x0e\x04\x01\x05\f\0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCùBÉ\x16\f\x02\0}\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùB\x05\x0e\x04\x01\x16\f\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùB\x02 \0\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0âCùB¡\r\x0e\a\x01\x02 \0û\0\b\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùB¡ª\x03 \0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCùBªÁ\x0e\f\x01\x03 \0\x1f\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùB«W\x1c \0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCùB´z\x0e\f\x01\x1c \0ÿÿÿÿÿ\x03\0\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùBµ^[\x02\x10\0\0\0\0F\0\0\0F\0\0\0\x03\0\0\0\0\0âCùBѶ\x0eD\x01\x02\x10\0ÿÿÿ\x03Ìÿïÿÿÿì\x1fò\x0fèþ?÷ÿ\x1c\0\x04\0a÷ÿÿ\x7føÿÿÿ?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0âCùBÒTR\fñ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùC*ë\x0e\x04\x01R\f\0\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0âCùC+E\f\x01\x02\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùC2\x0e\x04\x01E\f\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùC3<X\f\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0âCùC8ó\x0e\x05\x01X\f\0\0\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0âCùC9\x04\x10\x01\x01\0\0\0\x10\0\0\0\x10\0\0\0\x03\0\0\0\0\0âCùCC\x0e\x0e\x01\x04\x10\0\x01\x02\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0âCùCDj\x01\f\bÿÿûÿ\aø¿=\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùCM\x0e\x04\x01\x01\f\0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCùCOx\r\f\a\0\0\0\0\0\0\x01\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0âCùCYé\x0e\b\x01\r\f\0\x01\0\0\0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCùCZ\x0f\b\x02\x05\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùCaÕ\x0e\x04\x01\x0f\b\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùCbs^[\f\0\0\0\0 \0\0\0 \0\0\0\x03\0\0\0\0\0âCùCj(\x0e\b\x01^[\f\0\0\b\x12\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùCjÄF\f\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0âCùCpu\x0e\x05\x01F\f\0\0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0âCùCq<\x01 \b?\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùCzw\x0e\x04\x01\x01 \0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùC{\x10\a \0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0âCùCÎ\x0e\x05\x01\a \0\f\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùCf\x0f \0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0âCùC#\x0e\x05\x01\x0f \0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùCº\x10 \0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùCA\x0e\x04\x01\x10 \0\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0âCùCÙ\x04\x10\x01\x02\0\0\0\x10\0\0\0\x10\0\0\0\x03\0\0\0\0\0âCùC\x03\x0e\x0e\x01\x04\x10\0\x02\x02\x13\x03\0\0\0\0\0\0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCùC{\x12\f\a\0\0\0\0\0\0\x01\0\0\0\b\0\0\0\b\0\0\0\x03\0\0\0\0\0âCùC¤ \x0e\x06\x01\x12\f\0\0\0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0âCùC¤©c\f\b\0À¿\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùCÝ\x0e\x04\x01c\f\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùC®u\v\x10\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCùC·\x0e\f\x01\v\x10\0\x06\0\x01\x02\x03\x04\x05\0\0\0\0\x03\0\0\0\x03\0\0\0\x02\0\0\0\0\0âCùC¸2\f\x14\0\0\0\0\x11\0\0\0\x11\0\0\0\x03\0\0\0\0\0âCùCÂV\x0e\x0f\x01\f\x14\0\x01\x02\x01ÀÆ-\0ÀÆ-\0\0\0\0\b\0\0\0\b\0\0\0 \0\0\0\0\0âCùCÄù«ë'¸\x0f\0\0\0\0\x06\0\0\0\x06\0\0\0\x11\0\0\0\0\0âCùCÅ/\x02\0\0\0\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x11\0\0\0\0\0âCùCÅ/\x01\0\0\0\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x10\0\0\0\0\0âCùCÇ \x02\0\0\0\x04\0\0\0\x01!\0\0\x01!\0\0\0\x11\0\0\0\0\0âCùCÇT\x02\0\0\0\x01\0\x04\0\0«ë'¸\a\x0f\0ÿÿ\0\0\0\0\0\0\0\0BCM43438A1 37.4MHz Raspberry Pi 3-0062\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0K\0\0\0Kÿÿ\0\r\0\0\0\0\0âCùD\bÅ\x03\vbluetoothd\0Failed to obtain handles for "Service Changed" characteristic\0\0\0\0/\0\0\0/ÿÿ\0\r\0\0\0\0\0âCùD-~\x03\vbluetoothd\0Sap driver initialization failed.\0\0\0\05\0\0\05\0\0\0\r\0\0\0\0\0âCùD/\x06\x03\vbluetoothd\0sap-server: Operation not permitted (1)\0\0\0\0\x16\0\0\0\x16\0\0\0\x10\0\0\0\0\0âCùD*G\x02\0\0\0\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âCùD* \x02\0\0\0\x01\0\x11\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x10\0\0\0\0\0âCùD,d\x02\0\0\04\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0âCùD6 \x02\0\0\0\x01\04\0\0\0\0\0\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCùD8ì\x02\0\0\0\v\0\x01\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âCùD9#\x02\0\0\0\x01\0\v\0\0À\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùD92\x01\0\0\0\x06\0À\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCùD;\x16\x02\0\0\0\r\0\x01\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âCùD;J\x02\0\0\0\x01\0\r\0\0À\x02\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùD;Z\x01\0\0\0\x06\0À\x02\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCùD={\x02\0\0\0-\0\x01\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âCùD=±\x02\0\0\0\x01\0-\0\0À \0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùD=Å\x01\0\0\0\x06\0À \0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âCùD?»\x02\0\0\0/\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âCùD@\x1e\x02\0\0\0\x01\0/\0\0À \0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âCùDAÿ\x02\0\0\0\x10\0û4_\0\0\0\x10\0\0\0\x18\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âCùDB9\x02\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âCùDD\x02\0\0\0\x10\0û4_\0\0\0\x10\0\0\x01\x18\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âCùDDË\x02\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCùDFÓ\x02\0\0\0\x05\0\x01\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0âCùDHV\f\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùEäE\x0e\x04\x01V\f\0\0\0\0\x04\0\0\0\x04\0\0\0\x02\0\0\0\0\0âCùEäöz\f\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùEð\x14\x0e\x04\x01z\f\0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCùEð°m\f\x02\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùEü\x0e\x0e\x04\x01m\f\0\0\0\0#\0\0\0#\0\0\0\x02\0\0\0\0\0âCùEü¦\b \x03\x02 \f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùF\x12\x0e\x04\x01\b \0\0\0\0#\0\0\0#\0\0\0\x02\0\0\0\0\0âCùF\x13# \r\f\bBCM43438A1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùF(ó\x0e\x04\x01 \0\0\0\0û\0\0\0û\0\0\0\x02\0\0\0\0\0âCùF)\x13\føBCM43438A1 37.4MHz Raspberry Pi 3-0062\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùFè\x0e\x04\x01\x13\f\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0âCùFR\fñ\0' BCM43438A1 37.4MHz Raspberry Pi 3-0062\x02 \0\x05\x03\0\x18\x01\x18\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùFç;\x0e\x04\x01R\f\0\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âCùFê×\x02\0\0\0\x01\0\x05\0\0Á \0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùFë\x1a\x01\0\0\0\x06\0Á \0\0\0\0\x01 \0\0\x01 \0\0\0\x10\0\0\0\0\0âCùFíÔ\x02\0\0\0\x0f\0raspberrypi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0û\0\0\0û\0\0\0\x02\0\0\0\0\0âCùFî\x13\føraspberrypi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùGI°\x0e\x04\x01\x13\f\0\0\0\x01 \0\0\x01 \0\0\0\x11\0\0\0\0\0âCùGJ6\x01\0\0\0\b\0raspberrypi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0âCùGJR\fñ\0\f raspberrypi\x02 \0\x05\x03\0\x18\x01\x18\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùG©¥\x0e\x04\x01R\f\0\0\0\x01\r\0\0\x01\r\0\0\0\x11\0\0\0\0\0âCùGª.\x02\0\0\0\x01\0\x0f\0\0raspberrypi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âCùG±\x1c\x02\0\0\0\x10\0û4_\0\0\0\x10\0\0\x0e\x11\0\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0âCùG±ÌR\fñ\0\f raspberrypi\x02 \0\a\x03\0\x18\x01\x18\x0e\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùH W\x0e\x04\x01R\f\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âCùH Ú\x02\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âCùH\x11û\x02\0\0\0\x10\0û4_\0\0\0\x10\0\0\f\x11\0\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0âCùH\x12¨R\fñ\0\f raspberrypi\x02 \0 \x03\0\x18\x01\x18\x0e\x11\f\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùHk)\x0e\x04\x01R\f\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âCùHk¬\x02\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x10\0\0\0\0\0âCùHr£\x02\0\0\0'\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âCùHrï\x01\0\0\0\x15\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0âCùHs\x13\x02\0\0\0\x01\0'\0\0\0\0\0\0\0\0\0\0\0\0 \0\0\0 \0\0\0\x10\0\0\0\0\0âCùHtú\x02\0\0\0\x12\0\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùHu+\x02\0\0\0\x01\0\x12\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0âCùHw*\x02\0\0\0\x13\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùHw\\x02\0\0\0\x01\0\x13\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0âCùHy)\x02\0\0\00\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùHy\\x02\0\0\0\x01\00\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0âCùH{¿\x02\0\0\05\0\0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùH{ö\x02\0\0\0\x01\05\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âCùH}³\x02\0\0\0\x10\0û4_\0\0\0\x10\0\0\0\x12\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âCùH~)\x02\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x10\0\0\0\0\0âCùH+\x02\0\0\0(\0\x02\0k\x1dF\x02+\x05\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùHa\x02\0\0\0\x01\0(\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0âCùHìR\fñ\0\f raspberrypi\x02 \0 \x10\x02\0k\x1dF\x02+\x05 \x03\0\x18\x01\x18\x0e\x11\f\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0âCùH¥\x03\x02\0\0\0\x0e\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âCùH¥;\x02\0\0\0\x01\0\x0e\0\0\0\0\0\0\0\x01 \0\0\x01 \0\0\0\x10\0\0\0\0\0âCùH¦ù\x02\0\0\0\x0f\0raspberrypi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\r\0\0\x01\r\0\0\0\x11\0\0\0\0\0âCùH§4\x02\0\0\0\x01\0\x0f\0\0raspberrypi\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCùH©r\x02\0\0\0 \0\x01\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âCùH©¨\x02\0\0\0\x01\0 \0\0Ñ \0\0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùH©¸\x01\0\0\0\x06\0Ñ \0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùHÙn\x0e\x04\x01R\f\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCùÐN\x04\x02\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCùÐQÐ\x05 \x06ð\x1aMÎ\x0f\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùÐ\×\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCùÐ]k\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùÐg\x15\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCùÐg¶\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCùÐpè\x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCùÐq¢\x02\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCùÐqÔ\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCùÐqÔ\x01\0\0\0\x13\0\a\x01\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCùÑ9ë>^[\x02\x01\x03\x01e²:.:'\x0f\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a¶\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCùÑ:n\x02\0\0\0\x12\0e²:.:'\x02¶\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCùÑ:n\x01\0\0\0\x12\0e²:.:'\x02¶\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCùѳõ>\x1a\x02\x01\0\0ðרÀË@\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l·\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCùѽ>>\f\x02\x01\x04\0ðרÀË@\0·\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCùѽ·\x02\0\0\0\x12\0ðרÀË@\x01·\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCùѽ·\x01\0\0\0\x12\0ðרÀË@\x01·\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCùÕ\x13y>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v§\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCùÕ\x13û\x02\0\0\0\x12\0ܰ˶@\r\x02§\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCùÕ\x13û\x01\0\0\0\x12\0ܰ˶@\r\x02§\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCùÛB~>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾¨\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCùÛM·>\f\x02\x01\x04\0Y\x18]ÍiÈ\0¨\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCùÛN:\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCùÛN:\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCú#Kó\f \x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCú#^¹\x0e\x04\x01\f \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0âCú#_»\x01\x04\x053\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCú#i(\x0f\x04\0\x01\x01\x04\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0âCúq\x01\x01\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCúq·\x02\0\0\0\x13\0\a\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCúq·\x01\0\0\0\x13\0\a\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCúÄÌ\x02\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCúÄ\x05 \x06Oô\x1a¼\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCúÄü\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCúÄ\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCúÄ£¥\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCúĤ;\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCúįô\x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCúݽ\x02\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCúİñ\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCúİñ\x01\0\0\0\x13\0\a\x01\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCúÄÞa>\x1a\x02\x01\0\0ðרÀË@\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l·\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCúÄãÚ>\f\x02\x01\x04\0ðרÀË@\0·\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCúÄäF\x02\0\0\0\x12\0ðרÀË@\x01·\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCúÄäF\x01\0\0\0\x12\0ðרÀË@\x01·\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCúÅ\ac>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v¥\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCúÅ\b$\x02\0\0\0\x12\0ܰ˶@\r\x02¥\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCúÅ\b$\x01\0\0\0\x12\0ܰ˶@\r\x02¥\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCúÆÀ\x01>^[\x02\x01\x03\x01e²:.:'\x0f\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a·\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCúÆÀ\x02\0\0\0\x12\0e²:.:'\x02·\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCúÆÀ\x01\0\0\0\x12\0e²:.:'\x02·\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCú˰\x0e>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾¦\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCú˵>\f\x02\x01\x04\0Y\x18]ÍiÈ\0§\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCú˶\x1a\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01§\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCú˶\x1a\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01§\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCû\x17oì\f \x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCû\x17?\x0e\x04\x01\f \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0âCû\x17?\x01\x04\x053\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCû\x17\x0f\x04\0\x01\x01\x04\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0âCûe¶m\x01\x01\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCûe¶û\x02\0\0\0\x13\0\a\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCûe¶û\x01\0\0\0\x13\0\a\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCû¸ª!\x02\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCû¸Õ\x05 \x06+£Ë\x1cÑ\x04\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCû¸¹Ó\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCû¸ºn\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCû¸ÈN\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCû¸Èä\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCû¸Ô \x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCû¸ÕN\x02\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCû¸Õ\x7f\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCû¸Õ\x7f\x01\0\0\0\x13\0\a\x01\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCû¹\x7f¦>^[\x02\x01\x03\x01e²:.:'\x0f\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a·\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCû¹(\x02\0\0\0\x12\0e²:.:'\x02·\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCû¹(\x01\0\0\0\x12\0e²:.:'\x02·\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCûºÉ>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v¦\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCûºJ\x02\0\0\0\x12\0ܰ˶@\r\x02¦\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCûºJ\x01\0\0\0\x12\0ܰ˶@\r\x02¦\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCûº¯j>\x1a\x02\x01\0\0ðרÀË@\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l¶\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCûº´Ì>\f\x02\x01\x04\0ðרÀË@\0¶\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCûºµ6\x02\0\0\0\x12\0ðרÀË@\x01¶\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCûºµ6\x01\0\0\0\x12\0ðרÀË@\x01¶\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCû»|h>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾¦\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCû»ô>\f\x02\x01\x04\0Y\x18]ÍiÈ\0¦\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCû»_\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01¦\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCû»_\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01¦\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCü\vÖ\f \x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCü\v¢É\x0e\x04\x01\f \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0âCü\v£º\x01\x04\x053\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCü\v«Ë\x0f\x04\0\x01\x01\x04\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0âCüYÕÎ\x01\x01\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCüYÖU\x02\0\0\0\x13\0\a\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCüYÖU\x01\0\0\0\x13\0\a\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCü¬Í«\x02\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCü¬Ñl\x05 \x06éd\x7f\x0eí6\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCü¬Þ.\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCü¬Þä\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCü¬çÐ\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCü¬èV\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCü¬ú4\x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCü¬û\b\x02\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCü¬û<\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCü¬û<\x01\0\0\0\x13\0\a\x01\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCü\x0fè>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v¦\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCü\x10f\x02\0\0\0\x12\0ܰ˶@\r\x02¦\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCü\x10f\x01\0\0\0\x12\0ܰ˶@\r\x02¦\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCüÐ\x10>\x1a\x02\x01\0\0ðרÀË@\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l·\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCüÕ >\f\x02\x01\x04\0ðרÀË@\0¶\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCüÖ\r\x02\0\0\0\x12\0ðרÀË@\x01¶\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCüÖ\r\x01\0\0\0\x12\0ðרÀË@\x01¶\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCü¯[µ>^[\x02\x01\x03\x01e²:.:'\x0f\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a¶\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCü¯\9\x02\0\0\0\x12\0e²:.:'\x02¶\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCü¯\9\x01\0\0\0\x12\0e²:.:'\x02¶\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCü±RE>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾£\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCü´\x16>\f\x02\x01\x04\0Y\x18]ÍiÈ\0¨\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCü´\x17\x04\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCü´\x17\x04\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCüÿ·à\f \x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCüÿÇd\x0e\x04\x01\f \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0âCüÿÈX\x01\x04\x053\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCüÿÐi\x0f\x04\0\x01\x01\x04\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0âCýMúE\x01\x01\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCýMúË\x02\0\0\0\x13\0\a\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCýMúË\x01\0\0\0\x13\0\a\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCý òB\x02\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCý õú\x05 \x06\x06×`k\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCý¡\x02>\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCý¡\x02ý\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCý¡\x10ö\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCý¡\x11\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCý¡\x1dz\x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCý¡\x1ek\x02\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCý¡\x1e¡\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCý¡\x1e¡\x01\0\0\0\x13\0\a\x01\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCý¢Q\x02>^[\x02\x01\x03\x01e²:.:'\x0f\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a¶\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCý¢Q\x02\0\0\0\x12\0e²:.:'\x02¶\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCý¢Q\x01\0\0\0\x12\0e²:.:'\x02¶\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCý£\fv>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v©\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCý£\fõ\x02\0\0\0\x12\0ܰ˶@\r\x02©\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCý£\fõ\x01\0\0\0\x12\0ܰ˶@\r\x02©\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCý£|Ï>\x1a\x02\x01\0\0ðרÀË@\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l²\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCý£@>\f\x02\x01\x04\0ðרÀË@\0²\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCý£¬\x02\0\0\0\x12\0ðרÀË@\x01²\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCý£¬\x01\0\0\0\x12\0ðרÀË@\x01²\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCý§\x1dÁ>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾¨\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCý§#H>\f\x02\x01\x04\0Y\x18]ÍiÈ\0¨\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCý§#³\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCý§#³\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCýóÛ\f \x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCýóëÝ\x0e\x04\x01\f \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0âCýóìÛ\x01\x04\x053\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCýóö\r\x0f\x04\0\x01\x01\x04\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0âCþB\x1eÕ\x01\x01\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCþB\x1f\\x02\0\0\0\x13\0\a\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCþB\x1f\\x01\0\0\0\x13\0\a\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCþ\x15ª\x02\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCþ\x19ä\x05 \x06²\fýu\x17\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCþ'\0\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCþ'\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCþ0¡\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCþ1*\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCþ8|\x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCþ9\x1f\x02\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCþ:"\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCþ:"\x01\0\0\0\x13\0\a\x01\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCþJ\x11>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v¦\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCþJ\x02\0\0\0\x12\0ܰ˶@\r\x02¦\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCþJ\x01\0\0\0\x12\0ܰ˶@\r\x02¦\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCþe5>\x1a\x02\x01\0\0ðרÀË@\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l¶\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCþjÆ>\f\x02\x01\x04\0ðרÀË@\0·\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCþk2\x02\0\0\0\x12\0ðרÀË@\x01·\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCþk2\x01\0\0\0\x12\0ðרÀË@\x01·\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCþå\x1f>^[\x02\x01\x03\x01e²:.:'\x0f\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a·\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCþå¿\x02\0\0\0\x12\0e²:.:'\x02·\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCþå¿\x01\0\0\0\x12\0e²:.:'\x02·\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCþË>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾¨\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCþÑ\x05>\f\x02\x01\x04\0Y\x18]ÍiÈ\0¨\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCþÑm\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCþÑm\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCþçÿØ\f \x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCþè\x10]\x0e\x04\x01\f \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0âCþè\x11\x01\x04\x053\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCþè\x19ß\x0f\x04\0\x01\x01\x04\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0âCÿ6CP\x01\x01\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCÿ6CÕ\x02\0\0\0\x13\0\a\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCÿ6CÕ\x01\0\0\0\x13\0\a\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âCÿ9\x02\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCÿ=6\x05 \x06\x1cÑ«WÙ\x14\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCÿIÿ\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âCÿJ¶\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCÿS\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCÿT"\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCÿ[ò\x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âCÿ\®\x02\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCÿ\ã\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âCÿ\ã\x01\0\0\0\x13\0\a\x01\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCÿÃÊ>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾¨\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCÿÉ@>\f\x02\x01\x04\0Y\x18]ÍiÈ\0¨\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCÿÉ\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCÿÉ\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âCÿ×\x14>\x1a\x02\x01\0\0ðרÀË@\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l³\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âCÿÜ>\f\x02\x01\x04\0ðרÀË@\0³\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCÿÜØ\x02\0\0\0\x12\0ðרÀË@\x01³\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âCÿÜØ\x01\0\0\0\x12\0ðרÀË@\x01³\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCÿjä>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v§\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCÿk\x02\0\0\0\x12\0ܰ˶@\r\x02§\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCÿk\x01\0\0\0\x12\0ܰ˶@\r\x02§\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âCÿÌý>^[\x02\x01\x03\x01e²:.:'\x0f\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a³\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCÿÍ\x02\0\0\0\x12\0e²:.:'\x02³\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âCÿÍ\x01\0\0\0\x12\0e²:.:'\x02³\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âCÿÜ#Ô\f \x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCÿÜ4û\x0e\x04\x01\f \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0âCÿÜ5ñ\x01\x04\x053\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âCÿÜ>\x11\x0f\x04\0\x01\x01\x04\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0âC\0*gÓ\x01\x01\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âC\0*hz\x02\0\0\0\x13\0\a\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âC\0*hz\x01\0\0\0\x13\0\a\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âC\0}]\x02\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âC\0}aQ\x05 \x06ÚïÙ=ª-\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âC\0}n\x17\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âC\0}nÊ\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âC\0}x\x06\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âC\0}x\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âC\0}²\x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âC\0}¨\x02\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âC\0}æ\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âC\0}æ\x01\0\0\0\x13\0\a\x01\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âC\0~\x18Z>^[\x02\x01\x03\x01e²:.:'\x0f\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a¸\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âC\0~\x18Ù\x02\0\0\0\x12\0e²:.:'\x02¸\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âC\0~\x18Ù\x01\0\0\0\x12\0e²:.:'\x02¸\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âC\0~ã>\x1a\x02\x01\0\0ðרÀË@\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l¸\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âC\0~ ^>\f\x02\x01\x04\0ðרÀË@\0¹\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âC\0~ Ê\x02\0\0\0\x12\0ðרÀË@\x01¹\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âC\0~ Ê\x01\0\0\0\x12\0ðרÀË@\x01¹\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âC\0\x7fÕ>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾§\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âC\0\x7f]>\f\x02\x01\x04\0Y\x18]ÍiÈ\0§\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âC\0\x7fÇ\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01§\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âC\0\x7fÇ\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01§\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âC\0 K>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v¦\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âC\0 Kñ\x02\0\0\0\x12\0ܰ˶@\r\x02¦\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âC\0 Kñ\x01\0\0\0\x12\0ܰ˶@\r\x02¦\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âC\0ÐGÌ\f \x02\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âC\0ÐY`\x0e\x04\x01\f \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0âC\0ÐZT\x01\x04\x053\x04\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âC\0ÐgF\x0f\x04\0\x01\x01\x04\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0âC\x01\x1eo\x01\x01\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âC\x01\x1e÷\x02\0\0\0\x13\0\a\0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âC\x01\x1e÷\x01\0\0\0\x13\0\a\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âC\x01q\f\x02\0\0\0#\0\a\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âC\x01qÊ\x05 \x06p>Àý\x1c\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âC\x01qÛ\x0e\x04\x01\x05 \0\0\0\0 \0\0\0 \0\0\0\x02\0\0\0\0\0âC\x01qu\v \a\x01\x12\0\x12\0\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âC\x01q]\x0e\x04\x01\v \0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0âC\x01qõ\f \x02\x01\x01\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0âC\x01q«É\x0e\x04\x01\f \0\0\0\0 \0\0\0 \0\0\0\x11\0\0\0\0\0âC\x01q¬\x02\0\0\0\x01\0#\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âC\x01q¬È\x02\0\0\0\x13\0\a\x01\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0âC\x01q¬È\x01\0\0\0\x13\0\a\x01\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âC\x01r\x17>^[\x02\x01\x03\x01ܰ˶@\r\x0f\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v¨\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âC\x01r\x02\0\0\0\x12\0ܰ˶@\r\x02¨\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âC\x01r\x01\0\0\0\x12\0ܰ˶@\r\x02¨\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03§À¨\0\v\0\0\0\x1d\0\0\0\x1d\0\0\0\x03\0\0\0\0\0âC\x01sÌ\0>^[\x02\x01\x03\x01e²:.:'\x0f\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1aµ\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âC\x01sÌ¢\x02\0\0\0\x12\0e²:.:'\x02µ\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0#\0\0\0#\0\0\0\x11\0\0\0\0\0âC\x01sÌ¢\x01\0\0\0\x12\0e²:.:'\x02µ\x04\0\0\0\x0f\0\x02\x01^[\vÿL\0 \x06\x03\x03À¨\0\x1a\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âC\x01tyÓ>\x1a\x02\x01\0\0ðרÀË@\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l²\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âC\x01wA>\f\x02\x01\x04\0ðרÀË@\0®\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âC\x01wB\x17\x02\0\0\0\x12\0ðרÀË@\x01®\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âC\x01wB\x17\x01\0\0\0\x12\0ðרÀË@\x01®\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10v\x12l\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0âC\x01xK¬>\x1a\x02\x01\0\0Y\x18]ÍiÈ\x0e\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾¨\0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0âC\x01xQ8>\f\x02\x01\x04\0Y\x18]ÍiÈ\0¨\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âC\x01xQ£\x02\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0âC\x01xQ£\x01\0\0\0\x12\0Y\x18]ÍiÈ\x01¨\0\0\0\0\x0e\0\x02\x01\x1a ÿL\0\x10\x05\x01\x10t¾ ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-23 13:40 ` Stefan Wahren @ 2018-02-26 8:13 ` Marcel Holtmann 2018-02-26 9:36 ` Stefan Wahren 0 siblings, 1 reply; 20+ messages in thread From: Marcel Holtmann @ 2018-02-26 8:13 UTC (permalink / raw) To: Stefan Wahren, Johan Hedberg Cc: Eric Anholt, Frédéric Danis, Bluez mailing list Hi Stefan, >>>>> After enabling bluetooth scanning i will see these error messages periodically: >>>>> >>>>> [ 815.939839] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>> [ 831.302476] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>> [ 847.303953] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>> [ 863.305284] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>> [ 879.306838] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>> >>>> I really need to hook up the error messages into the btmon output since then we can trace where these are coming from. Anyway, can you btmon -w trace.log from before loading the module and this error showing up. >>> >>> I attached the log. According to dmesg this error happend only once during the trace. >> >> I will add bt_dev_err tracing to be include in btmon and that way we can figure out where that error happens. Or do you have a trace.log and dmesg -T where we can correlate it based on time. > > Please look at this attachment and the following output (issue appears every 16 seconds after enabling scanning even if i use a baudrate of 115200): > > 2018-02-23T14:12:52,454443+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:13:08,454601+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:13:24,453167+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:13:40,453414+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:13:56,453859+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:14:12,453864+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:14:28,453966+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:14:44,455381+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:15:00,452972+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:15:16,453733+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:15:32,453318+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:15:48,453495+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:16:04,452430+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:16:20,452531+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:16:36,452813+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > 2018-02-23T14:16:52,453043+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) > > I also noticed a different issue (only tested 4.15 yet), sometimes if i try to unload "modprobe -r hci_uart" the command blocks forever. There is no crash just the command hangs. so it seems that this matched up to the set scan enable command. < HCI Command: LE Set Scan Enable (0x08|0x000c) plen 2 #415 [hci0] 2018-02-23 14:12:52.478963 Scanning: Disabled (0x00) Filter duplicates: Disabled (0x00) > HCI Event: Command Complete (0x0e) plen 4 #416 [hci0] 2018-02-23 14:12:52.483769 LE Set Scan Enable (0x08|0x000c) ncmd 1 Status: Success (0x00) Does this happen with all baud rates or just with 115200? What could be the case is that the start of inquiry is too fast and the processing internally goes bonkers. < HCI Command: Inquiry (0x01|0x0001) plen 5 #417 [hci0] 2018-02-23 14:12:52.484027 Access code: 0x9e8b33 (General Inquiry) Length: 5.12s (0x04) Num responses: 0 > HCI Event: Command Status (0x0f) plen 4 #418 [hci0] 2018-02-23 14:12:52.486440 Inquiry (0x01|0x0001) ncmd 1 Status: Success (0x00) The inquiry command is actually answered with a command status. Johan, any ideas? >>>>> Btw: Linus Wallej applied the GPIO expander driver >>>> >>>> That is awesome. Do you see any difference now if you hook up the GPIO in DT. Mind you to change the resources part to allow using only the shutdown GPIO and not having the device-wakeup GPIO. >>> >>> The RPi Zero W doesn't have a GPIO expander and the RPi 3 also uses the BT_ON line (via GPIO expander). So i don't expect any difference between them. >> >> So on the Zero W the BT_ON GPIO is exposed without the expander? And the 3 needs the expander? Is that how they are designed? > > Yes. Yes. I only have the firmware devicetree file [1] as reference. > > Btw there is another difference between Zero W and 3. The Zero W could uses the hardware flow-control pins, the 3 not. > > How does the Broadcom BT driver know about the flow control? > Is it sufficient to add "uart-has-rtscts"? > > [1] - https://github.com/raspberrypi/firmware/blob/master/extra/dt-blob.dts#L1536 I have no answer for this, but using flow control is required for H:4 operation as far as I remember. Regards Marcel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-26 8:13 ` Marcel Holtmann @ 2018-02-26 9:36 ` Stefan Wahren 2018-02-26 13:59 ` Marcel Holtmann 0 siblings, 1 reply; 20+ messages in thread From: Stefan Wahren @ 2018-02-26 9:36 UTC (permalink / raw) To: Marcel Holtmann, Johan Hedberg Cc: Eric Anholt, Frédéric Danis, Bluez mailing list Hi Marcel, Am 26.02.2018 um 09:13 schrieb Marcel Holtmann: > Hi Stefan, > >>>>>> After enabling bluetooth scanning i will see these error messages periodically: >>>>>> >>>>>> [ 815.939839] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>>> [ 831.302476] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>>> [ 847.303953] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>>> [ 863.305284] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>>> [ 879.306838] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>> I really need to hook up the error messages into the btmon output since then we can trace where these are coming from. Anyway, can you btmon -w trace.log from before loading the module and this error showing up. >>>> I attached the log. According to dmesg this error happend only once during the trace. >>> I will add bt_dev_err tracing to be include in btmon and that way we can figure out where that error happens. Or do you have a trace.log and dmesg -T where we can correlate it based on time. >> Please look at this attachment and the following output (issue appears every 16 seconds after enabling scanning even if i use a baudrate of 115200): >> >> 2018-02-23T14:12:52,454443+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:13:08,454601+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:13:24,453167+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:13:40,453414+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:13:56,453859+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:14:12,453864+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:14:28,453966+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:14:44,455381+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:15:00,452972+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:15:16,453733+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:15:32,453318+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:15:48,453495+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:16:04,452430+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:16:20,452531+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:16:36,452813+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> 2018-02-23T14:16:52,453043+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >> >> I also noticed a different issue (only tested 4.15 yet), sometimes if i try to unload "modprobe -r hci_uart" the command blocks forever. There is no crash just the command hangs. > so it seems that this matched up to the set scan enable command. Hm, i only enabled the scanning once. Does bluetoothctl send this command periodically every 16 seconds? > > < HCI Command: LE Set Scan Enable (0x08|0x000c) plen 2 #415 [hci0] 2018-02-23 14:12:52.478963 > Scanning: Disabled (0x00) > Filter duplicates: Disabled (0x00) >> HCI Event: Command Complete (0x0e) plen 4 #416 [hci0] 2018-02-23 14:12:52.483769 > LE Set Scan Enable (0x08|0x000c) ncmd 1 > Status: Success (0x00) > > Does this happen with all baud rates or just with 115200? I've seen this at 115200 and 2000000 baud. Stefan ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-26 9:36 ` Stefan Wahren @ 2018-02-26 13:59 ` Marcel Holtmann 0 siblings, 0 replies; 20+ messages in thread From: Marcel Holtmann @ 2018-02-26 13:59 UTC (permalink / raw) To: Stefan Wahren Cc: Johan Hedberg, Eric Anholt, Frédéric Danis, Bluez mailing list Hi Stefan, >>>>>>> After enabling bluetooth scanning i will see these error messages periodically: >>>>>>> >>>>>>> [ 815.939839] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>>>> [ 831.302476] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>>>> [ 847.303953] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>>>> [ 863.305284] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>>>> [ 879.306838] Bluetooth: hci0: last event is not cmd complete (0x0f) >>>>>> I really need to hook up the error messages into the btmon output since then we can trace where these are coming from. Anyway, can you btmon -w trace.log from before loading the module and this error showing up. >>>>> I attached the log. According to dmesg this error happend only once during the trace. >>>> I will add bt_dev_err tracing to be include in btmon and that way we can figure out where that error happens. Or do you have a trace.log and dmesg -T where we can correlate it based on time. >>> Please look at this attachment and the following output (issue appears every 16 seconds after enabling scanning even if i use a baudrate of 115200): >>> >>> 2018-02-23T14:12:52,454443+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:13:08,454601+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:13:24,453167+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:13:40,453414+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:13:56,453859+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:14:12,453864+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:14:28,453966+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:14:44,455381+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:15:00,452972+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:15:16,453733+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:15:32,453318+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:15:48,453495+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:16:04,452430+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:16:20,452531+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:16:36,452813+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> 2018-02-23T14:16:52,453043+0100 Bluetooth: hci0: last event is not cmd complete (0x0f) >>> >>> I also noticed a different issue (only tested 4.15 yet), sometimes if i try to unload "modprobe -r hci_uart" the command blocks forever. There is no crash just the command hangs. >> so it seems that this matched up to the set scan enable command. > Hm, i only enabled the scanning once. Does bluetoothctl send this command periodically every 16 seconds? yes, it does interleaved scanning on LE and then BR/EDR. Hence the switch from LE Set Scan Enable to Inquiry etc. >> < HCI Command: LE Set Scan Enable (0x08|0x000c) plen 2 #415 [hci0] 2018-02-23 14:12:52.478963 >> Scanning: Disabled (0x00) >> Filter duplicates: Disabled (0x00) >>> HCI Event: Command Complete (0x0e) plen 4 #416 [hci0] 2018-02-23 14:12:52.483769 >> LE Set Scan Enable (0x08|0x000c) ncmd 1 >> Status: Success (0x00) >> >> Does this happen with all baud rates or just with 115200? > > I've seen this at 115200 and 2000000 baud. This could be well our issue. I need to check if I can reproduce it. I assume you use bluetoothctl for enabling scanning. Wonder what happens if you do it only on LE. So “menu scan” and then “transport le”. I think it is really just the switch from LE to BR/EDR where this happens. Regards Marcel ^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: Problem with re-loading hci_uart.ko on RPi3 2018-02-19 10:10 ` Frédéric Danis 2018-02-19 12:25 ` Stefan Wahren @ 2018-02-19 13:12 ` Marcel Holtmann 1 sibling, 0 replies; 20+ messages in thread From: Marcel Holtmann @ 2018-02-19 13:12 UTC (permalink / raw) To: Frédéric Danis Cc: Stefan Wahren, Bluez mailing list, Eric Anholt, mzoran Hi Fred, >>>> One option is of course to keep the max-speed in the DT at 115200 Mbps. It would work, but seriously slow down the transport. Maybe this should be done until we get access to the GPIOs. >> So I am convinced when we run on hardware that has no GPIO resources exposed (as it is with RPi right now), we should limit the operational speed to the initialization speed. And then my problem actually goes away. It also forces people to get the GPIOs exposed or they have to stick with a slower HCI transport. > > We may also reset to initialization speed on module unload. > This will allow multiple tests on the hardware, even if it does not have GPIOs exposed. you would have to do that on hci_unregister_dev and that is also tricky. If the device is down, we need to spin the transport back up and actually support HCI transaction like within hdev->setup(). It also means that we would have to take care of a lot of struct device lifetime rules etc since this might actually take some time. And if it still fails, the device is still borked. So I had thought about this briefly and looked into adding infrastructure into Bluetooth core for a hdev->cleanup() function, but just adding it for a hardware that actually has a GPIO, but doesn’t expose it right now seems really like a lot of code for nothing. This means limiting it to 115200 baud initially until someone comes along and gets the GPIO integrated seems more encouraging than hacking around it. And this would be hacking around it. Regards Marcel ^ permalink raw reply [flat|nested] 20+ messages in thread
end of thread, other threads:[~2018-02-26 13:59 UTC | newest] Thread overview: 20+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-02-17 21:09 Problem with re-loading hci_uart.ko on RPi3 Marcel Holtmann 2018-02-18 13:54 ` Stefan Wahren 2018-02-18 17:55 ` Stefan Wahren 2018-02-18 19:07 ` Marcel Holtmann 2018-02-19 10:10 ` Frédéric Danis 2018-02-19 12:25 ` Stefan Wahren 2018-02-19 13:16 ` Marcel Holtmann 2018-02-19 18:28 ` Stefan Wahren 2018-02-19 18:38 ` Marcel Holtmann 2018-02-19 18:53 ` Stefan Wahren 2018-02-19 18:58 ` Marcel Holtmann 2018-02-22 14:26 ` Stefan Wahren 2018-02-22 15:43 ` Marcel Holtmann 2018-02-22 18:05 ` Stefan Wahren 2018-02-22 18:50 ` Marcel Holtmann 2018-02-23 13:40 ` Stefan Wahren 2018-02-26 8:13 ` Marcel Holtmann 2018-02-26 9:36 ` Stefan Wahren 2018-02-26 13:59 ` Marcel Holtmann 2018-02-19 13:12 ` Marcel Holtmann
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox