diff --git a/iOS/ANCS/README.md b/iOS/ANCS/README.md
new file mode 100644
index 0000000..45263a1
--- /dev/null
+++ b/iOS/ANCS/README.md
@@ -0,0 +1,88 @@
+# Apple Notification Center Service Demo #
+Original Author: John Gallagher (slackhappy)
+Original location: https://github.com/slackhappy/ble112/tree/master/ancs
+
+Modified: Bob Davidson 2014
+
+
+[Apple Notification Center Service](https://developer.apple.com/library/ios/documentation/CoreBluetooth/Reference/AppleNotificationCenterServiceSpecification/AppleNotificationCenterServiceSpecification.pdf) is a GATT service that will send push notifications to an connected bluetooth device whenever a notification event occurs on the iOS device.
+This code lays out the basic stuff you need to get ANCS working on a project with an embedded device, such as a DIY smartwatch.
+
+## Setting the Correct Advertising Packet ##
+In order to have your device show up in the list of available bluetooth devices in the system settings pane, you need to register your interest. The Punch Through Design [blog post](http://blog.punchthrough.com/post/63658238857/the-apple-notification-center-service-or-wtf-is) on ANCS left a hint about how to do this. You need to use "Service Solicitation" to indicate that you are interested in subscribing to the ANCS service.
+
+Core 4.0 Vol 3 Part C, 18.9 gives the AD identifier, `$15`. I included a local name in my packet so that I could identify my device. In actual byte order, here is the contents of my packet:
+
+`02` AD Field, 2 bytes
+`01` AD Flags
+`02` General Discovery, no BR/EDR, you can change this as needed
+`04` AD Field, 4 bytes
+`09` AD Complete Local Name
+`4C 45 44` LED, not sure why I called it that
+`11` AD Field, 17 bytes
+`15` AD Service Solicitation, 128 bits
+`D0 00 2D 12 1E 4B 0F A4 99 4E CE B5 31 F4 05 79` The ANCS service in LSB to MSB order.
+
+## Pairing ##
+Subscribing to events requires that the devices be paired. Bluegiga has a [doc](https://bluegiga.zendesk.com/entries/22882472--REFERENCE-Bonding-encryption-and-MITM-protection-with-the-BLE112) that I worked from to start encryption when the connection event is fired on the device. You do not need to have a pin.
+
+## Enumerating the iOS Services ##
+Before you can enumerate the ANCS service, you must find its handle range. iOS will only return characteristics for the correct service range, so enumerating `$0000` to `$ffff` will not work.
+
+ANCS is a primary service, so listing all primary services will allow you to find it, as well as give you the start and end handles for attribute enumeration. An excellent bluegiga example [health thermometer collector](https://bluegiga.zendesk.com/entries/23999407--BGScript-htm-collector-Health-Thermometer-collector-BLE-master-), gave me the structure I needed for enumerating the services, enumerating the attributes of the service of interest, subscribing to a notifiable attribute using the Client Characteristic Configuration Descriptor, and receiving new values via an event callback.
+
+## Enumerating the ANCS Service ##
+Here are the attributes of the ANCS service, as returned to my device, in the exact order that the bytes given to the buffer, essentially reverse-documentation order.
+
+`00 28` Primary Service
+
+`03 28` Characteristic Declaration
+`d9 d9 aa fd bd 9b 21 98 a8 49 e1 45 f3 d8 d1 69` ANCS Control Point
+`00 29` Characteristic Extended Properties
+
+`03 28` Characteristic Declaration
+`bd 1d a2 99 e6 25 58 8c d9 42 01 63 0d 12 bf 9f` ANCS Notification Source
+`02 29` Client Characteristic Configuration Descriptor
+
+`03 28` Characteristic Declaration
+`fb 7b 7c ce 6a b3 44 be b5 4b d6 24 e9 c6 ea 22` ANCS Data Source
+`02 29` Client Characteristic Configuration Descriptor
+
+Core 4.0 Vol 3 Part G, 3.4 lists built-in types, and 4.0 Vol 3 Part G, 3.3.3 provides more information on each type.
+
+Save the attribute handles for:
+- The ANCS Control Point
+- The Client Characteristic Configuration Descriptor for the Notification Source
+- The Client Characteristic Configuration Descriptor for the Data Source
+
+## Subscribe to events ##
+At minimum, set the Notification Source CCC for notification (indication is not supported) by writing `01 00` to the Notification Source CCC attribute. If you also want to get textual or other data, first subscribe to the Data Source by setting the Data Source CCC for notification, then set the Notification source after that. When you receive a notification, get the textual data from the notification by writing a message to the ANCS Control Point attribute. You will receive a response from the Data Source attribute with the notification id and data requested.
+
+Example incoming notification:
+
+New incoming call (value source is NS handle):
+
+`00` Event ID - Event Added
+`02` Event Flags - Important
+`01` Category ID - Incoming call
+`01` Category Count - 1
+`15 00 00 00` Notification UID
+
+Get the caller id (write this to the CP handle)
+
+`00` Command ID - GetNotificationAttributes
+`15 00 00 00` Notification UID
+`01` Attribute ID - Title
+`0B 00` Attribute max length (11 bytes)
+
+Response (value source is DS handle)
+
+`00` Command ID - GetNotificationAttributes
+`15 00 00 00` Notification UID
+`01` Attribute ID - Title
+`0A 00` Attribute length (10 bytes)
+`73 6c 61 63 6b 68 61 70 70 79`
+
+
+## Demo ##
+[View video](http://instagram.com/p/jf3HmdQwsb/embed/#)
\ No newline at end of file
diff --git a/iOS/ANCS/ancs.bgs b/iOS/ANCS/ancs.bgs
new file mode 100644
index 0000000..fe27fd7
--- /dev/null
+++ b/iOS/ANCS/ancs.bgs
@@ -0,0 +1,280 @@
+# ANCS Demo
+# Author: John Gallagher (slackhappy)
+# https://github.com/slackhappy/ble112/tree/master/ancs
+#
+# Subscribes to iOS notifications, e.g. incoming calls.
+#
+# Modified from an excellent example:
+# https://bluegiga.zendesk.com/entries/23999407--BGScript-htm-collector-Health-Thermometer-collector-BLE-master- by Jeff Rowberg
+# with help from
+# https://bluegiga.zendesk.com/entries/22882472--REFERENCE-Bonding-encryption-and-MITM-protection-with-the-BLE112
+# and
+# http://blog.punchthrough.com/post/63658238857/the-apple-notification-center-service-or-wtf-is
+
+const STATE_STANDBY = 0
+const STATE_CONNECTING = 1
+const STATE_FINDING_SERVICES = 2
+const STATE_FINDING_ATTRIBUTES = 3
+const STATE_SUBSCRIBING_NS = 4
+const STATE_SUBSCRIBING_DS = 5
+const STATE_LISTENING = 6
+
+const FOUND_NONE = 0
+const FOUND_DS = 1
+const FOUND_NS = 2
+
+dim find_state
+dim device_state
+
+dim att_handle_ns_ccc
+dim att_handle_ns
+dim att_handle_ds_ccc
+dim att_handle_ds
+dim att_handle_cp
+dim att_handlesearch_start
+dim att_handlesearch_end
+
+dim ancs_connection
+
+dim endpoint
+
+dim get_notification_attr_buf(30)
+dim indicate_buf(2)
+
+dim atoi_buf(15)
+dim atoi_buf_pos
+dim atoi_buf_len
+dim num
+
+
+dim adv_data(30)
+
+# Boot event listener
+# 7905F431-B5CE-4E99-A40F-4B1E122D00D0 ANCS Service
+event system_boot(major, minor, patch, build, ll_version, protocol_version, hw)
+ device_state = STATE_STANDBY
+ atoi_buf_len = 15
+ att_handle_ns_ccc = 0
+ att_handle_ds_ccc = 0
+ att_handle_ds = 0
+ att_handle_ns = 0
+
+ # set the value for the attribute find state
+ find_state = FOUND_NONE
+
+
+ adv_data( 0:1) = $02 # ad field length = 2 bytes
+ adv_data( 1:1) = gap_ad_type_flags # ad field type = 0x01 (Flags)
+ adv_data( 2:1) = $02 # 3.C.18.1: 00000110b generaldisc, no BR/EDR
+
+ adv_data( 3:1) = $04 # ad field length = 04
+ adv_data( 4:1) = $09 # Complete local name
+ adv_data( 5:1) = $42 # B
+ adv_data( 6:1) = $4F # O
+ adv_data( 7:1) = $42 # B
+
+ adv_data( 8:1) = $11 # ad field 17
+ adv_data( 9:1) = $15 # Service Solicitation, 128-bit UUIDs
+ adv_data(25:1) = $79
+ adv_data(24:1) = $05
+ adv_data(23:1) = $F4
+ adv_data(22:1) = $31
+ adv_data(21:1) = $B5
+ adv_data(20:1) = $CE
+ adv_data(19:1) = $4E
+ adv_data(18:1) = $99
+ adv_data(17:1) = $A4
+ adv_data(16:1) = $0F
+ adv_data(15:1) = $4B
+ adv_data(14:1) = $1E
+ adv_data(13:1) = $12
+ adv_data(12:1) = $2D
+ adv_data(11:1) = $00
+ adv_data(10:1) = $D0
+
+ # System started, enable advertising and allow connections
+ # set advertisement interval to 1s-2s, use all advertisement channels
+ # (note min/max parameters are in units of 625 uSec)
+
+ call gap_set_adv_parameters(20, 32, 7)
+ call gap_set_adv_data(0, 26, adv_data(0:26))
+ call gap_set_mode(gap_user_data, gap_undirected_connectable)
+
+ # TODO: consider bonding for faster reconnect
+
+ endpoint = system_endpoint_uart0
+ call system_endpoint_tx(endpoint, 11, "\n\rBooted!\n\r")
+
+end
+
+# Connection event listener
+event connection_status(connection, flags, address, address_type, conn_interval, timeout, latency, bonding)
+ call system_endpoint_tx(endpoint, 14, "\n\rConnected!\n\r")
+ ancs_connection = connection
+
+ # start encryption
+ if flags != $03 then
+ call system_endpoint_tx(endpoint, 21, "Starting Encryption\r\n")
+ call sm_encrypt_start(ancs_connection, 0)
+ else
+ # kick off a discovery of ANCS
+ device_state = STATE_FINDING_SERVICES
+ call system_endpoint_tx(endpoint, 15, "Starting Find\r\n")
+ call attclient_read_by_group_type(connection, $0001, $ffff, 2, "\x00\x28")
+ end if
+end
+
+event attclient_group_found(connection, start_handle, end_handle, uuid_len, uuid_data)
+ # TODO, use memcmp with the adv_data(10:16), or something smarter
+ if uuid_len =16 && uuid_data(0:1) = $D0 && uuid_data(1:1) = $00 then
+ # save the handle range for attribute enumeration
+ att_handlesearch_start = start_handle
+ att_handlesearch_end = end_handle
+ call system_endpoint_tx(endpoint, 16, "Found service!\r\n")
+ end if
+ # Actual uuid_data
+ #D0 00 2D 12 1E 4B 0F A4 99 4E CE B5 31 F4 05 79
+end
+
+event connection_disconnected(handle, result)
+ call gap_set_mode(gap_user_data, gap_undirected_connectable)
+end
+
+# Callback for finding characteristics of a service
+event attclient_find_information_found(connection, chrhandle, uuid_len, uuid_data)
+ if uuid_len = 16 then
+ # TODO, memcmp with actual GUID values instead of checking first 2 bytes
+ if uuid_data(0:1) = $fb && uuid_data(1:1) = $7b then
+ find_state = FOUND_DS
+ att_handle_ds = chrhandle
+ call system_endpoint_tx(endpoint, 10, "FOUND_DS\r\n")
+ end if
+ if uuid_data(0:1) = $bd && uuid_data(1:1) = $1d then
+ find_state = FOUND_NS
+ att_handle_ns = chrhandle
+ call system_endpoint_tx(endpoint, 10, "FOUND_NS\r\n")
+ end if
+ if uuid_data(0:1) = $d9 && uuid_data(1:1) = $d9 then
+ find_state = FOUND_NONE
+ att_handle_cp = chrhandle
+ call system_endpoint_tx(endpoint, 10, "FOUND_CP\r\n")
+ end if
+ end if
+ if uuid_len = 2 then
+ # Look for the Client Configuration Characteristic
+ if uuid_data(0:1) = $02 && uuid_data(1:1) = $29 then
+ if find_state = FOUND_DS then
+ att_handle_ds_ccc = chrhandle
+ find_state = FOUND_NONE
+ call system_endpoint_tx(endpoint, 14, "FOUND_DS_CCC\r\n")
+ end if
+ if find_state = FOUND_NS then
+ att_handle_ns_ccc = chrhandle
+ find_state = FOUND_NONE
+ call system_endpoint_tx(endpoint, 14, "FOUND_NS_CCC\r\n")
+ end if
+ end if
+ end if
+end
+
+event attclient_attribute_value(connection, atthandle, type, value_len, value_data)
+ if device_state != STATE_LISTENING then
+ call system_endpoint_tx(endpoint, 12, "bad state!\r\n")
+ # reboot the device state machine
+ device_state = STATE_FINDING_SERVICES
+ call attclient_read_by_group_type(connection, $0001, $ffff, 2, "\x00\x28")
+ else
+ if atthandle = att_handle_ns then
+ # received a notification
+ if value_data(0:1) = $00 then
+ # notification added
+ if value_data(2:1) = $01
+ call system_endpoint_tx(endpoint, 6, "CALL\r\n")
+ end if
+ if value_data(2:1) = $02
+ call system_endpoint_tx(endpoint, 8, "MISSED\r\n")
+ end if
+ if value_data(2:1) = $03
+ call system_endpoint_tx(endpoint, 7, "VMAIL\r\n")
+ end if
+ call system_endpoint_tx(endpoint, 4, "ns\r\n")
+ get_notification_attr_buf(0:1) = $00 # Get attr
+ get_notification_attr_buf(1:1) = value_data(4:1)
+ get_notification_attr_buf(2:1) = value_data(5:1)
+ get_notification_attr_buf(3:1) = value_data(6:1)
+ get_notification_attr_buf(4:1) = value_data(7:1)
+ get_notification_attr_buf(5:1) = $01 # Title
+ get_notification_attr_buf(6:1) = $0b # 11
+ get_notification_attr_buf(7:1) = $00 # bytes max
+ # get the title for this notification from the control point
+ call attclient_attribute_write(connection, att_handle_cp, 8, get_notification_attr_buf(0:8))
+ end if
+ end if
+ if atthandle = att_handle_ds then
+ call system_endpoint_tx(endpoint, 4, "ds\r\n")
+ # received attribute data from the control point via the data source
+ if value_len > 8 then
+ call system_endpoint_tx(endpoint, value_len - 8, value_data(8:value_len - 8))
+ call system_endpoint_tx(endpoint, 2, "\r\n")
+ end if
+ end if
+ end if
+end
+
+event attclient_procedure_completed(connection, result, chrhandle)
+ call system_endpoint_tx(endpoint, 8, "\n\rdone\n\r")
+ num = result
+ atoi_buf_pos = atoi_buf_len
+ while atoi_buf_pos > 0
+ atoi_buf_pos = atoi_buf_pos - 1
+ atoi_buf(atoi_buf_pos:1) = 48 + (num - ((num / 10) * 10))
+ num = num / 10
+ end while
+ call system_endpoint_tx(endpoint, atoi_buf_len, atoi_buf(0:atoi_buf_len))
+ call system_endpoint_tx(endpoint, 2, "\r\n")
+
+ # if result is $0405 (1029) - insufficient authentication
+
+ # finished some attclient operation, so figure out what happened
+ # list each state last to first, since there is no else if
+ if device_state = STATE_SUBSCRIBING_NS then
+ if result = 0 then
+ device_state = STATE_LISTENING
+ call system_endpoint_tx(endpoint, 9, "inited!\r\n")
+ end if
+ end if
+ if device_state = STATE_SUBSCRIBING_DS then
+ if att_handle_ns_ccc > 0 then
+ # change state
+ device_state = STATE_SUBSCRIBING_NS
+ indicate_buf(0:1) = $01
+ indicate_buf(1:1) = $00
+ call attclient_attribute_write(0, att_handle_ns_ccc, 2, indicate_buf(0:2))
+ else
+ call system_endpoint_tx(endpoint, 29, "att_handle_ns_ccc not found\r\n")
+ end if
+ end if
+ if device_state = STATE_FINDING_ATTRIBUTES then
+ if att_handle_ds_ccc > 0 then
+ # change state
+ device_state = STATE_SUBSCRIBING_DS
+ indicate_buf(0:1) = $01
+ indicate_buf(1:1) = $00
+ call attclient_attribute_write(0, att_handle_ds_ccc, 2, indicate_buf(0:2))
+ else
+ call system_endpoint_tx(endpoint, 29, "att_handle_ds_ccc not found\r\n")
+ end if
+ end if
+ if device_state = STATE_FINDING_SERVICES then
+ if att_handlesearch_end > 0 then
+ # change state
+ device_state = STATE_FINDING_ATTRIBUTES
+ call system_endpoint_tx(endpoint, 23, "Finding attributes...\r\n")
+ # found the ANCS service, now get the attributes: CP, DS, NS, DS CCC, NS CCC
+ call attclient_find_information(0, att_handlesearch_start, att_handlesearch_end)
+ else
+ # couldn't find the ANCS service
+ call system_endpoint_tx(endpoint, 24, "Couldn't find service!\r\n")
+ end if
+ end if
+end
diff --git a/iOS/ANCS/attributes.txt b/iOS/ANCS/attributes.txt
new file mode 100644
index 0000000..cf1531b
--- /dev/null
+++ b/iOS/ANCS/attributes.txt
@@ -0,0 +1 @@
+xgatt_led 17
diff --git a/iOS/ANCS/gatt.xml b/iOS/ANCS/gatt.xml
new file mode 100644
index 0000000..5d621c1
--- /dev/null
+++ b/iOS/ANCS/gatt.xml
@@ -0,0 +1,62 @@
+
+
+
+
+ Generic Access Profile
+
+
+
+ LED
+
+
+
+
+ 4142
+
+
+
+ Device Information
+
+
+ Bluegiga
+
+
+
+ 1.0
+
+
+
+ 25
+
+
+
+ BLE112
+
+
+
+
+ LED Control Service
+
+ LED Toggle
+
+ 01
+
+
+
+
+
+
diff --git a/iOS/ANCS/hardware.xml b/iOS/ANCS/hardware.xml
new file mode 100644
index 0000000..b3789ff
--- /dev/null
+++ b/iOS/ANCS/hardware.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/iOS/ANCS/out.hex b/iOS/ANCS/out.hex
new file mode 100644
index 0000000..fbfda82
--- /dev/null
+++ b/iOS/ANCS/out.hex
@@ -0,0 +1,8195 @@
+:020000040000fa
+:100000000200de021003000000000002100b0000de
+:10001000000000021013000000000002101b00008e
+:10002000000000021023000000000002102b00005e
+:10003000000000021033000000000002103b00002e
+:10004000000000021043000000000002104b0000fe
+:10005000000000021053000000000002105b0000ce
+:10006000000000021063000000000002106b00009e
+:10007000000000021073000000000002107b00006e
+:10008000000000021083000000000002108b00003e
+:10009000000000020ce31200f0b900030200d8e4f3
+:1000a00090000278a579018002f0a3d8fcd9fa90db
+:1000b00000a6aa82ab839000f6780979018015e446
+:1000c00093a3ac82ad838a828b83f0a3aa82ab8395
+:1000d0008c828d83d8e9d9e7120306120d0275d000
+:1000e0000075813f75188075931e5392fe0200962d
+:1000f00079015392fe220010000000000200bb01b3
+:1001000002e722c0925392fec082c08389828a8312
+:10011000bb0003e08002e493d083d082d09222bb64
+:100120000015c0925392fec082c0838a838982f0f8
+:10013000d083d082d09222bb0101f722cac0e0e670
+:10014000f30908dafad0e0fa22cac0e0e0f208a324
+:10015000dafad0e0fa22600c08c6c313c618c61338
+:10016000c6d5e0f422700422600d18c6c333c60859
+:10017000c633c6d5e0f41822e4735392fed083d080
+:10018000822518f8c518c39824fbcef208e520f2a2
+:1001900008e9c0e07908e709f208defad0e0f9eff3
+:1001a000f208d0e0fed0e0f208eef208e473a818fe
+:1001b000e2fe08e208f520e9c0e07908e208f70964
+:1001c000dffae208ffd0e0f9e208c0e0e208c0e0b0
+:1001d00088185392fe22e584f208e585f222e208af
+:1001e000f584e2f585227403800474028000c9c09e
+:1001f000e0e518c399f518c912013cd0e0f9227462
+:10020000038000c8c0e0e518c398f518c81201497a
+:10021000d0e0f8227400f5d374022408f5d253928a
+:10022000fe22a2afe433f8c2af5392fe906270e0b8
+:10023000a2e740f5e9c333906272f0906270e0d2b9
+:10024000e0f0e0a2e740fbe8a2e092af2274fa12ed
+:10025000017aa2af33f8c2afed900002f0eca3f048
+:10026000a37462f0a37473f0a3e4f0e9a3f0a374a1
+:1002700012f0a37442f0eb906272f0ea906271f0b7
+:100280007400f5d575d40275d601906270e0d2e1a4
+:10029000f0e0a2e740fbe8a2e092af7f010201aeee
+:1002a0005392fe906276e05470643070047803805c
+:1002b000027807e5c7f988c790ff00e090001af0c0
+:1002c00089c7a2e05004788080027800e8f5c6e58e
+:1002d0009efce86c70f99062707408f02274fa1257
+:1002e000017af9800c8a828b83e029f9a3aa82ab78
+:1002f00083ecfeedffee24ff1cef34fffdee4f70ac
+:10030000e47f010201ae5392fe900001e090001bd9
+:10031000f01202a0e5c7ff75c7007c007d707a006f
+:100320007b901202dde924a5fe8fc77f01e5c7f5aa
+:10033000088fc77c007d807a007b801202dde92e69
+:10034000fe8508c70fefc3940340e2ee7027e59dda
+:1003500054186410700890001be0a2e04017900051
+:10036000017403f005929000a6e0f582a3e0f58306
+:100370000592120178900001e4f012021412060fa7
+:1003800012063f12069f80fb74f812017a151815a9
+:1003900018a8181201d690620ee0fee4f0906211e7
+:1003a000e0f50aa2e450197480f09000237407f07d
+:1003b000120582600612058d120178900023e4f088
+:1003c000e50aa2e2500b906211e4f0900023f08065
+:1003d0006f900023e0f87402687051906216e0ff9d
+:1003e00090003a1201ffeff91205698f0890003d65
+:1003f00012057712059c1205856004744080027412
+:1004000048906211f0e849701012058260061205ea
+:100410008d120178900023e4f0ee90620ef0a8189f
+:100420001201de051805187f030201ae740668701c
+:100430000612058d120178900023e0600302050288
+:10044000e50aa2e050d3750832750900750a0078f4
+:10045000081201e6790812056990003fe4f0a3f064
+:10046000900032e054e0600e24e0606824a0603e1a
+:1004700024e0606f8030a3e014601c24fe6013242d
+:10048000fe600a24fc601524fe601680191209ea39
+:10049000805e1209e580591209e08054120b198020
+:1004a0004f120c47804a9000237404f0804aa3e066
+:1004b000600e24fa600f24fe601024fe601180e6b6
+:1004c00012082b802b120a328026120af380211286
+:1004d0000be9801c90003f74c7f0a37406f012066d
+:1004e000c7800d90003f7481f0a37407f01207815c
+:1004f000900023e064047004746080027440906291
+:1005000011f0900023e0f8740168704c750a0290b5
+:10051000003de0f8a3e0f9c3e89420e99400500717
+:10052000e8ff750a0a80027f2090003a1201ffef6f
+:10053000f97a207b621206660518051805188f08df
+:1005400012059c120577e50a906211f0efc3942022
+:1005500040030204190204097405686003020419c7
+:1005600012058d1201780204197a207b6212064b63
+:1005700005180518051822c3e09508f0a3e09400bb
+:10058000f02290003fe0f8a3e0f9e84922059290bc
+:10059000003fe0f582a3e0f58305922290003ae067
+:1005a000f9a3e0faa3e0fbe92508f9ea3400fa90a0
+:1005b000003ae9f0a3eaf0a3ebf0a322c008c009d7
+:1005c0007800880874242508f58274003400f583c7
+:1005d000e95392fef008e8c3940540e678008808e5
+:1005e00074292508f58274003400f583e9f008e8e1
+:1005f000c3940540e9d009d008225392fe90001c14
+:100600007402f0a3e4f0900023f079030205bcc06b
+:1006100008c00975082175090078081201ea7c00f4
+:100620007d007a417b00120d050518051890001c0d
+:100630007402f090620f04f0e0a2e750fb80b65322
+:10064000f4fed29043fe015392fe22eec0e0120669
+:1006500087600c5392fee012011f12067c70f4d0ea
+:10066000e0fe5392fe22eec0e0120687600c1200fc
+:10067000fe5392fef012067c70f480e3e924010937
+:10068000ea3400fa18e8228a828b83e9f8a918e391
+:10069000fc09e3fd09e3feecf9edfaeefbe822eede
+:1006a000c0e05392fe906206e0f8906202e0fe9095
+:1006b0006204e0e8a2e250031205faeea2e0500361
+:1006c000120388d0e0fe2274f712017a900033e022
+:1006d000700302077114600302076a90001b740123
+:1006e000f0900023e0f87030900038e0f8a3e0f9d3
+:1006f000e84970059000ac807b90003a7462f0a3ea
+:100700007400f0a3e4f0a3e8f0a3e9f090002374f0
+:1007100002f09000ac048063740268704d90003465
+:10072000e02440f508a3e03400f509e508541f7003
+:100730001285080a85090b7405780a120156a90a60
+:10074000120222900038e0240354fcf97c627d0000
+:1007500074047808120165aa08ab0912024d9000d2
+:1007600023e4f09000ac74058011900023740480a1
+:100770000a90001b7402f0900023e4f07f04020151
+:10078000ae5392fe900033e06403701a90003a7406
+:10079000a8f0a37400f0a3e4f0a37406f0a3e4f0bf
+:1007a00090002304f02280009000237404f0225370
+:1007b00092fe9000a2e4f0a3740ff02274fa1201ea
+:1007c0007a15181518a8181201d6eafcebf87a0069
+:1007d0007b00088030e86045a3e493fdec6d603950
+:1007e000e96d700b05929000a2e0faa3e0fb1853ac
+:1007f00092fe9000a2e02efea3e03400ff9000a243
+:10080000eef0a3eff09000a2e0f584a3e0f585e41c
+:10081000059293fe70bfe860047a007b00a818126e
+:1008200001de051805187f010201aec008120bdbbe
+:100830007011a3e0f8a3e0700aa3e064027002a3c1
+:10084000e0600890002374040208fb900032e0246a
+:1008500080600814602a14603780e8e870e5900032
+:100860002fe060047801800278009000a4e8f0a3f3
+:10087000e4f090002ee060689000a4e04402805c08
+:1008800090001ce0640470bb9000a4e4f0a3804fcf
+:10089000e8547ff50890001ce0640470a6e508c3e6
+:1008a0009406509f741c2508f58274003400f5836b
+:1008b000e854806010a3a3a3a3a3a3a3e0640370e0
+:1008c0001578018013e582240cf582e5833400f568
+:1008d00083e0640360eb78009000a4e8f0a3e4f008
+:1008e000900023e06404601490003a74a4f0a374b0
+:1008f00000f0a3e4f0a37402120c3ef0d0082274be
+:10090000f912017a15181518a8181201d6e9fa90eb
+:100910000038120be1701090001ce064046010902d
+:100920000036120be1600890002374040209cf9096
+:100930000032e0541f600814600d14601580e890c8
+:100940000034e06401600579000209d2ea90002ecb
+:10095000807d900036e0547ff508900034e070e729
+:10096000e508c3940650c0e50890620ef0741c259b
+:1009700008f58474003400f585900036e0548060fa
+:1009800021ea6004741080027440906211f0ea6001
+:100990000474038001e40592a3a3a3a3a3a3a3f07b
+:1009a0008026ea6004742080027480906214f0ea69
+:1009b000600474038001e4c0e0e584240cf582e562
+:1009c000853400f583d0e0f05392fe90620ee4f09f
+:1009d0007901a8181201de051805187f020201ae80
+:1009e00079000208ff79010208ff5392fe90003659
+:1009f000120be17018a3120be17012900034e0f8b2
+:100a0000a3e0f9e85480fae9fbea4b6002801ce8b5
+:100a1000906200f090001c6009e06402700c7403a6
+:100a2000f022e0640370037402f022900023740447
+:100a3000f02274f812017a1207af900034e0faa3a2
+:100a4000e0f914600814600d14603080367b007a81
+:100a50000079018032eafb7a007902120adbe9248c
+:100a6000020909ea3400fa89828a83e493f874015e
+:100a700093f990003de8f0a3e98019eafb7a007948
+:100a80000380047b007a00120adba37b801200fe45
+:100a9000a3f0a3e4f090003ae0fca3e0fda3e0fea5
+:100aa000ec4d4e900023700474048029e0640460cf
+:100ab00025900038e0faa3e0fb90003de0f8a3e0c9
+:100ac000f9c3ea98eb99500890003deaf0a3ebf0e7
+:100ad0009000237401f07f030201ae1207bc900066
+:100ae0003aeaf0a3ebf0a37480f090003ae0f9a3a7
+:100af000e0fa22120bdb7010a3120be1700aa3e0e4
+:100b000064017002a3e06003020a2b90003a741d96
+:100b1000f0a37400120c34f02274f812017a9000e1
+:100b20001ce064026014900036120be1700ca312fa
+:100b30000be17006900035e060099000237404f02a
+:100b4000020bca1207af900034e060707b007a009d
+:100b500079021207bc8a088b09ae08af09ee4f6014
+:100b6000d9900034e0f88e828f83a3a3a3a3a3e4db
+:100b700093c0e0e8fad0e06a70d290001c7404f0f0
+:100b8000e8a3f0750a008e828f83a3a3a3a3e49346
+:100b9000f8e50ac3985033850a08741e2508f582c3
+:100ba00074003400f583e4f07b007a00120bcd6012
+:100bb00007a3a3a3e49370f0050a80ca90001df078
+:100bc00090001c7403f0f91205bc020ad6790412d5
+:100bd00007bc8a828b83e5824583225392fe900074
+:100be00034e0f8a3e0f9e8492274f812017a9000a1
+:100bf0001ce064047019900032e064817011120be3
+:100c0000de700c900038e064017002a3e060079091
+:100c100000237404801a900036e0241ef508a3e037
+:100c20003400f50990003ae508f0a3e509120c3408
+:100c3000f0020ad6f0a3e4f0a304120c3e22f0a3c3
+:100c4000e4f0900023042274f912017a15181518a3
+:100c5000a8181201d690001ce064047010900032b5
+:100c6000e064017008900038120be16007900023e7
+:100c7000740480671207af7b007a007902120bcff1
+:100c8000600fa3a3a3a3a3e493f890001de06870f2
+:100c9000e67b007a02120bcd60d30592900034e01f
+:100ca000f8a3e0f9900036e0faa3e0fb85828485a2
+:100cb0008385a3a3e493fcea6c7001eb600f0592bb
+:100cc000a3a3a3e493fce86c7001e970c4741e2a2a
+:100cd000f58274003bf583e85392fef00209d2538b
+:100ce00092fe2274fa12017a15181518eafeebff2b
+:100cf000a818eef208eff2aa18ab937901120cdff4
+:100d000080ee02009374fa12017ae5182406f8e2e4
+:100d1000fe08e2ffecf88a828b83800be8f0a3eefa
+:100d200024ff1eef34ffffee4f70f17f010201ae92
+:100d3000ffffffffffffffffffffffffffffffffc3
+:100d4000ffffffffffffffffffffffffffffffffb3
+:100d5000ffffffffffffffffffffffffffffffffa3
+:100d6000ffffffffffffffffffffffffffffffff93
+:100d7000ffffffffffffffffffffffffffffffff83
+:100d8000ffffffffffffffffffffffffffffffff73
+:100d9000ffffffffffffffffffffffffffffffff63
+:100da000ffffffffffffffffffffffffffffffff53
+:100db000ffffffffffffffffffffffffffffffff43
+:100dc000ffffffffffffffffffffffffffffffff33
+:100dd000ffffffffffffffffffffffffffffffff23
+:100de000ffffffffffffffffffffffffffffffff13
+:100df000ffffffffffffffffffffffffffffffff03
+:100e0000fffffffffffffffffffffffffffffffff2
+:100e1000ffffffffffffffffffffffffffffffffe2
+:100e2000ffffffffffffffffffffffffffffffffd2
+:100e3000ffffffffffffffffffffffffffffffffc2
+:100e4000ffffffffffffffffffffffffffffffffb2
+:100e5000ffffffffffffffffffffffffffffffffa2
+:100e6000ffffffffffffffffffffffffffffffff92
+:100e7000ffffffffffffffffffffffffffffffff82
+:100e8000ffffffffffffffffffffffffffffffff72
+:100e9000ffffffffffffffffffffffffffffffff62
+:100ea000ffffffffffffffffffffffffffffffff52
+:100eb000ffffffffffffffffffffffffffffffff42
+:100ec000ffffffffffffffffffffffffffffffff32
+:100ed000ffffffffffffffffffffffffffffffff22
+:100ee000ffffffffffffffffffffffffffffffff12
+:100ef000ffffffffffffffffffffffffffffffff02
+:100f000012010002000000205824feff0000010230
+:100f1000030109021b0001010480250904000000ef
+:100f2000fe01020409210d03e84000010104030948
+:100f300004120342006c00750065006700690067d9
+:100f400000610016034c006f007700200045006e22
+:100f50000065007200670079000a03310032003337
+:100f6000003400080344004600550000ffffffff67
+:100f7000ffffffffffffffffffffffffffffffff81
+:100f8000ffffffffffffffffffffffffffffffff71
+:100f9000ffffffffffffffffffffffffffffffff61
+:100fa000ffffffffffffffffffffffffffffffff51
+:100fb000ffffffffffffffffffffffffffffffff41
+:100fc000ffffffffffffffffffffffffffffffff31
+:100fd000ffffffffffffffffffffffffffffffff21
+:100fe000ffffffffffffffffffffffffffffffff11
+:100ff000ffffffffffffffffffffffffffffffff01
+:101000000210f70231b7ffffffffff023aa6ffff12
+:10101000ffffff023b45ffffffffff023bf9ffff22
+:10102000ffffff0227d4ffffffffff023946ffff4c
+:10103000ffffff023cdeffffffffff023b9dffffc4
+:10104000ffffff023b14ffffffffffffffffffff5c
+:10105000ffffff02319dffffffffffffffffffffcd
+:10106000ffffffffffffffffffffff023a47ffff0a
+:10107000ffffff023c6cffffffffff023a78ffff1c
+:10108000ffffff0231bb7582fe75837f7400121172
+:1010900012121133b900030210e1e479347802b876
+:1010a00000028004f709d8fce490030278857907f0
+:1010b0008002f0a3d8fcd9fa900986aa82ab83906b
+:1010c000113978c379028015e493a3ac82ad838a89
+:1010d000828b83f0a3aa82ab838c828d83d8e9d9db
+:1010e000e77582a27583e774021211127582f0759a
+:1010f000837f740012111275d00075813f753180a5
+:10110000753202753303759f0075931e5392fe026c
+:101110001091c09ff59fe473d09f225392fed0831d
+:10112000d082c09fe493c0e0740193c0e074029346
+:10113000f59f2279015392fe220300000200007bfa
+:10114000140102030000fb153efe0e00c3a88ee84a
+:10115000b19dcf7f5eb98b9f41efb055f401fa008e
+:10116000960064004b0032001e001400d6be898e2b
+:10117000000106021213151429417671ffc1fbe824
+:101180004c90728be7b3518963ab232302841872ae
+:10119000aa612f3b51a8e53749fbc9ca0c18532c4b
+:1011a000fd45e300400000fffffffffaffffff00e7
+:1011b0000080006200000007000000050006000734
+:1011c0000000000100010000010001020203000212
+:1011d0000000000000020201000240420f0019005e
+:1011e0000000093d0000eafffffffb349b5f800029
+:1011f000008000100000000000005f4b694b734b43
+:101200007d4b874b914b9b4ba54baf4bb94bc34b86
+:10121000cd4bd74be14beb4bf54bff4b094c134cf4
+:101220001d4c274c314c3b4c454c4f4c594c634c5e
+:101230006d4c774c814c8b4c954c9f4ca94cb34cce
+:10124000bd4cc74cd14cdb4ce54cef4cf94c034d3d
+:101250000d4d174d214d2b4d354d3f4d494d534da6
+:101260005d4d674d714d7b4d854d8f4d994da34d16
+:10127000ad4db74dc14dcb4dd54ddf4de94df34d86
+:10128000fd4d074e114e1b4e254e2f4e394e434eef
+:101290004d4e574e614e6b4e754e7f4e894e934e5e
+:1012a0009d4ea74eb14ebb4ec54ecf4ed94ee34ece
+:1012b000851c8b1c911c971c9d1ca31c0d1cc91dff
+:1012c000ab1d7d1e171e1d1e4517031431197b14ff
+:1012d000291ecf1d451d6b1e3b0601ffffff0000b1
+:1012e000000080ffffffff0000000001000000047d
+:1012f00000000003000000c000000012111ba5ae9a
+:101300000212111bbdae0212111bf5ae0212111b0f
+:1013100042af0212111b4eaf0212111b73af021229
+:10132000111b9baf0212111bb7af0212111b2cb085
+:101330000212111b51b00212111baeb00212111b8e
+:101340002cb50212111bfdb50212111b54e802123a
+:10135000111b6ce80212111bd0e80212111b20e9cc
+:101360000212111bf0d10212111b58d20212111bd2
+:101370008fd20212111ba9d20212111bd3d2021258
+:10138000111bedd20212111b21d30212111b4dd3de
+:101390000212111b9ad30212111b33d40212111b19
+:1013a00057d40212111be7d40212111b39d50212b5
+:1013b000111b53d50212111b68d50212111b9ad5ad
+:1013c0000212111bd1d50212111b72d60212111b6f
+:1013d000edc10212111b1ec20212111b4cc20212dd
+:1013e000111b55c20212111bb1c20212111b71c393
+:1013f0000212111bebc30212111b48c40212111b73
+:101400006bc40212111bd5c40212111bdac50212e1
+:10141000111be5c50212111b0ac60212111b6dc673
+:101420000212111bdcc60212111b0ec70212111b85
+:10143000807f0012111ba07f0012111bc97f0012b8
+:10144000111b23ec0212111b63ec0212111bd4ebd3
+:101450000212111bb7ec0212111bceec0212111b6f
+:1014600078ea0212111ba5ea0212111b3274001253
+:10147000111b74740012111b8b740012111bab74be
+:101480000012111bf4740012111b4d750012111b78
+:10149000a1760012111bc9770012111b6b78001284
+:1014a000111b8f780012111bd1780012111b6b7960
+:1014b0000012111bae790012111b057a0012111bcc
+:1014c000187a0012111b087b0012111b2c7c0012d1
+:1014d000111ba07c0012111b00800112111ba7819f
+:1014e0000112111b24820112111b87830112111b8f
+:1014f000fc830112111b36840112111b0b85011292
+:10150000111b92850112111b86860112111b8887ff
+:101510000112111b6f880112111bbc890112111bd2
+:10152000368a0112111b9f8a0112111b138b0112a3
+:10153000111bc48b0112111b1c8c0112111bc08cbe
+:101540000112111b1e8d0112111bb08d0112111bf6
+:10155000078e0112111ba28e0112111b4c8f01125a
+:10156000111b01900112111bbc910112111b2e9431
+:101570000112111b7c940112111b1c950112111bed
+:101580006c950112111bba950112111b5a97011289
+:10159000111bf4970112111b70980112111bcc99a9
+:1015a0000112111b379a0112111b2c9b0112111be6
+:1015b0001e9c0112111b5d9d0112111bae9e01129a
+:1015c000111b88a00112111b51a30112111bdfa3d3
+:1015d0000112111b6da40112111b4ca50112111b4c
+:1015e000c1a50112111b3baa0112111bb8ac0112bb
+:1015f000111b8fad0112111bc4af0112111bf3b0ef
+:101600000112111b32b20112111b49b20112111b3e
+:1016100078d60212111bb6d60212111b1ed7021267
+:10162000111b4ad70212111b21d80212111bf8d824
+:101630000212111beafe0112111b2eff0112111bd7
+:10164000a6ff0112111b23b90112111b41b901128e
+:10165000111b5eb90112111b7bb90112111bcbb911
+:101660000112111b61ba0112111b2bbc0112111bbb
+:101670008dbc0112111bdabc0112111b15bd011228
+:10168000111b48bd0112111b93bd0112111bf9bda5
+:101690000112111b85be0112111b93be0112111bf9
+:1016a000fdbf0112111b2fc20112111b8cc20112ae
+:1016b000111bbec20112111bf3c30112111b31c554
+:1016c0000112111b4fc50112111b80c50112111b04
+:1016d000aac50112111b50c90112111b80c90112a8
+:1016e000111bdec90112111ba6ce0112111b05cf61
+:1016f0000112111b43cf0112111bcccf0112111b80
+:10170000b6d00112111b5cd30112111b78d4011247
+:10171000111bedd40112111bfed60112111b68d74b
+:101720000112111ba6d70112111bf6d70112111bb2
+:1017300043d80112111bd8d80112111b28d901124c
+:10174000111b83d90112111b8dd90112111bc6da8d
+:101750000112111b3edb0112111bffdb0112111bd9
+:1017600093dc0112111b61de0112111b83de0112d9
+:10177000111b81e00112111bb9e10112111b42e2a0
+:101780000112111b8de20112111b02e30112111b48
+:10179000e6e40112111bf7e40112111b01e501122d
+:1017a000111bdbe60112111b4ce70112111b82e732
+:1017b0000112111be6e70112111b82e80112111b35
+:1017c00009e90112111b6ae90112111b94e90112c6
+:1017d000111bcbe90112111b00ea0112111b1eeab9
+:1017e0000112111b86ea0112111b94ea0112111b4e
+:1017f000d3ea0112111b36eb0112111b82e3021214
+:10180000111b26e40212111b4ae40212111b95e47b
+:101810000212111bd4e40212111bf9ea0212111b6d
+:10182000e69a0212111b129b0212111b5e9b0212fe
+:10183000111bb89b0212111b349c0212111b819eba
+:101840000212111b769f0212111bdda10212111b45
+:10185000d4a20212111bb4a30212111b0ba5021277
+:10186000111b86a50212111bc7a60212111b98dbc1
+:101870000212111bc9db0212111b5bdc0212111bcd
+:101880004ddd0212111bed530012111b0a54001200
+:10189000111b35540012111ba8540012111bd454f3
+:1018a0000012111b08550012111b6f550012111b5d
+:1018b00099550012111b00560012111b5e560012a2
+:1018c000111b2f570012111ba1570012111b885911
+:1018d0000012111b1a5a0012111bf65c0012111b88
+:1018e000de600012111b21610012111b74610012d5
+:1018f000111b0b620012111bc9630012111b6d64d6
+:101900000012111bb2640012111bfe640012111ba5
+:1019100066650012111b90650012111be365001231
+:10192000111b17660012111b74670012111bb86897
+:101930000012111bc9680012111b046a0012111b4e
+:101940001a6a0012111b606a0012111b246b00122c
+:10195000111b396b0012111b6b6b0012111bcc6c2d
+:101960000012111b8a6d0012111bbe6d0012111b9b
+:10197000056e0012111ba46e0012111bfb6e0012eb
+:10198000111bf76f0012111b65700012111ba9705b
+:101990000012111b81710012111ba3730012111b85
+:1019a000d3730012111bc97d0012111bd67d0012ca
+:1019b000111bf97d0012111b3c7f0012111b497f86
+:1019c0000012111b777f0012111b6bc70212111b33
+:1019d000dbc70212111b08c80212111b52c80212e7
+:1019e000111b1dc90212111bc0ca0212111b1acbf6
+:1019f0000212111b28cb0212111b33cc0212111b35
+:101a00009ccc0212111b4ce90212111b7ae9021242
+:101a1000111baae90212111befdd0212111b7ade63
+:101a20000212111bb0de0212111b21df0212111b68
+:101a3000c5df0212111bd8df0212111b3ed90212a0
+:101a4000111b54d90212111b00800212111b1580a8
+:101a50000212111b04810212111b1c810212111ba4
+:101a60002b810212111b41810212111b4d810212a6
+:101a7000111b8c810212111bcf810212111b2a82b1
+:101a80000212111b58820212111bbc820212111b7e
+:101a9000d8820212111b14830212111b2c83021212
+:101aa000111bbf830212111b33840212111b7b8492
+:101ab0000212111bb4840212111b34850212111b75
+:101ac0006f850212111b9e850212111bf7850212ef
+:101ad000111b3f860212111b66860212111bb38670
+:101ae0000212111b0e870212111b11870212111b09
+:101af00067870212111bb8870212111bf0870212ae
+:101b0000111b28880212111b5f880212111b878883
+:101b10000212111b90880212111bad880212111bb8
+:101b2000d8880212111b01890212111b418902126d
+:101b3000111b6e890212111bba890212111bf38943
+:101b40000212111b7f8a0212111b2d8b0212111b14
+:101b50007c8b0212111bdc8b0212111be78b021211
+:101b6000111b118c0212111b1f8c0212111bbc8c39
+:101b70000212111b468d0212111b948d0212111bb1
+:101b8000ac8d0212111bca8d0212111bec8d0212b8
+:101b9000111b0d8e0212111b298e0212111b9f8e1a
+:101ba0000212111be28e0212111b5d8f0212111b19
+:101bb000738f0212111bf78f0212111b2690021253
+:101bc000111b35900212111b7d900212111b8c907b
+:101bd0000212111ba4900212111bd0900212111bb1
+:101be00000910212111b31910212111b4491021239
+:101bf000111b7c910212111be2910212111b109217
+:101c00000212111b3e920212111b4a920212111b68
+:101c100050920212111b31940212111bba9402123b
+:101c2000111b23950212111b59950212111b9e952f
+:101c30000212111be2950212111b26960212111bb1
+:101c4000a5960212111b20970212111b7a970212fd
+:101c5000111bfa970212111b42980212111bf498e1
+:101c60000212111bb4990212111ba49a0212111b29
+:101c7000a79a0212111bbc9a0212111bd19a0212ce
+:101c8000111b31e00212111b7de00212111b93e0c7
+:101c90000212111ba9e00212111bbfe00212111b5c
+:101ca000e0e00212111bf6e00212111b0ce102121d
+:101cb000111b29b60212111b48b60212111b8fb656
+:101cc0000212111bd0b60212111beeb60212111b2a
+:101cd0006ab70212111bd7b70212111b0fb80212fa
+:101ce000111b6db80212111b88b80212111bcbb860
+:101cf0000212111b29b90212111b40b90212111b49
+:101d000062b90212111b8db90212111bacb9021279
+:101d1000111bd8b90212111b11ba0212111b38bac9
+:101d20000212111b6bba0212111b7aba0212111b9a
+:101d300083ba0212111bf9ba0212111b21bc021242
+:101d4000111bdbcc0212111bb9cd0212111b9cce50
+:101d50000212111b2ecf0212111b91cf0212111b66
+:101d6000decf0212111b26d00212111b47d0021225
+:101d7000111b68d00212111b80d00212111b98d0c7
+:101d80000212111be8d00212111b3bd10212111bcf
+:101d90008fd10212111bc2e60212111befe60212d2
+:101da000111b0eec0112111b6bf60112111b1ef818
+:101db0000112111b26e50212111b94e50212111be0
+:101dc000b8e50212111b0ce60212111b61e60212a9
+:101dd000111b9fe60212111bb8e60212111be3a6ab
+:101de0000212111b00a70212111b1ba80212111bc9
+:101df0007ca80212111b27a90212111ba6aa02120b
+:101e0000111b29ab0212111b70ab0212111bd7abb5
+:101e10000212111b32ac0212111b8bac0212111bed
+:101e200001ad0212111b79ad0212111b18ae021284
+:101e3000111bb8f80112111b10fb0112111b48fbfa
+:101e40000112111b64fb0112111babfb0112111bd0
+:101e5000c5fb0112111bf1fb0112111b10fc011239
+:101e6000111b38fc0112111b7ffc0112111b9cfc81
+:101e70000112111b61fd0112111b95fd0112111bb5
+:101e8000a6fd0112111bdbe10212111b42e202123c
+:101e9000111ba2e20212111ba4e20212111bbae2f0
+:101ea0000212111b07e30212111be7e90212111bb8
+:101eb00005ea0212111b40bc0212111b19bd0212cd
+:101ec000111bfcbd0212111b04be0212111b0cbe21
+:101ed0000212111b65be0212111b06bf0212111b5a
+:101ee00005c00212111b38c00212111bffc00212e2
+:101ef000111b5dc10212111b86100012111b69eb30
+:101f00000212111b6fec0212111be6ec02e066706c
+:101f10001008a3e066700a08a3e066700408a3e056
+:101f20006622c3e7960809e7960809e7960809e7d5
+:101f300096a2d265d03322c3e09608a3e09608a308
+:101f4000e09608a3e096a2d265d03322c021c3e078
+:101f500096f52108a3e096422108a3e096422108c5
+:101f6000a3e0964221a2d265d033e5217001d3d0ff
+:101f70002122c3e09608a3e09608a3e09608a3e018
+:101f80009622c021c3e096f52108a3e096422108dd
+:101f9000a3e096422108a3e09645217001d3d02109
+:101fa00022bb0102e722c0925392fec082c0838905
+:101fb000828a83bb0003e08002e493d083d082d086
+:101fc0009222bb0015c0925392fec082c0838a83c6
+:101fd0008982f0d083d082d09222bb0101f72208ff
+:101fe0000808eac0e0ebc0e086f0e7a4fa1809862a
+:101ff000f0e7a42afa180986f0e7a42afa18098655
+:10200000f0e7a42afa1986f0e7a4fbe5f02afa190a
+:102010000886f0e7a42bfbe5f03afa190886f0e70a
+:10202000a42bfbe5f03afa18180986f0e7a4c5f0ee
+:102030002bfbe43afa1908e7c5f0c6a426f6e5f04a
+:102040003bfbe43afa1886f0e7a4f6e5f00826f63a
+:10205000e43b08f6e43a08f6d0e0fbd0e0fa22e4ec
+:10206000cfc0e0e4cec0e0e4cdc0e0e4ccc0e07599
+:10207000f020c3e633f608e633f608e633f608e662
+:1020800033f6181818ec33fced33fdee33feef3366
+:10209000ffc3ec9709ed9709ee9709ef9719191906
+:1020a000400fffec97fc09ed97fd09ee97fe19191b
+:1020b00006d5f0beecf709edf709eef709eff719d1
+:1020c0001919d0e0fcd0e0fdd0e0fed0e0ff2212f4
+:1020d000213718181812205f1221261919192212f7
+:1020e0002126191919080808e618181820e7e0121f
+:1020f000205f12213718181822090909e719191940
+:1021000020e7dc080808e618181820e70302205f1b
+:1021100012213718181812205f12213718181812b8
+:10212000212619191922e4c397f709e497f709e45e
+:1021300097f709e497f722e4c396f608e496f608c1
+:10214000e496f608e496f6226017080808c6a2e7a7
+:1021500013c618c613c618c613c618c613c6d5e0cc
+:10216000e9226016080808c6c313c618c613c618a5
+:10217000c613c618c613c6d5e0ea227009080808b7
+:10218000226016181818c6c333c608c633c608c658
+:1021900033c608c633c6d5e0ea22e627f60809e6c4
+:1021a00037f60809e637f60809e637f622e026f69c
+:1021b00008a3e036f608a3e036f608a3e036f622d8
+:1021c000e026f008a3e036f008a3e036f008a3e02c
+:1021d00036f022c3e697f60809e697f60809e6976f
+:1021e000f60809e697f622c3e0c696f608a3e0c60d
+:1021f00096f608a3e0c696f608a3e0c696f622c3b4
+:10220000e096f008a3e096f008a3e096f008a3e0bb
+:1022100096f022e056f608a3e056f608a3e056f63c
+:1022200008a3e056f622e056f008a3e056f008a313
+:10223000e056f008a3e056f022e647f60809e64724
+:10224000f60809e647f60809e647f622e046f008f0
+:10225000a3e046f008a3e046f008a3e046f022e041
+:1022600066f608a3e066f608a3e066f608a3e06653
+:10227000f622e066f008a3e066f008a3e066f00846
+:10228000a3e066f022e0f608a3e0f608a3e0f60873
+:10229000a3e0f622e493f608740193f6087402931f
+:1022a000f608740393f622e6f008a3e6f008a3e626
+:1022b000f008a3e6f022e0faa3e0fba3e0fca3e031
+:1022c000fd22eaf0a3ebf0a3ecf0a3edf022cac0ec
+:1022d000e0e6f0a308dafad0e0fa22cac0e0e0a310
+:1022e0000592f0a30592daf6d0e0ca22cac0e0e473
+:1022f00093a30592f0a30592daf5d0e0ca22539297
+:10230000fefae9fb7921e7f0a309dafae8f0a3eb9a
+:10231000f9f0a3ecf0a3edf0a3eef0a3eff0a3e54a
+:1023200020f0a3e5f0f0a3e592f0a3e584f0a3e5a7
+:1023300085f0a3e581f0a3e531f0a3e532f0a3e554
+:1023400033f0a3d0e0fad0e0f0a3caf0eac0e0e0b6
+:10235000c0e07a007b00225392fecac0e0ebc0e0ee
+:102360007921e0f7a309dafae0f8a3e0f9a3e0fca9
+:10237000a3e0fda3e0fea3e0ffa3e0f520a3e0f5ca
+:10238000f0a3e0c0e0a3e0f584a3e0f585a3d0e0ee
+:10239000f592d0e0fbd0e0fae0f581a3e0f531a3bf
+:1023a000e0f532a3e0f533a3d0e0d0e0e0c0e0a355
+:1023b000e0c0e0ea4b70027a0122c3e498f8e499a5
+:1023c000f91223fb8026c3e49afae49bfbe920e799
+:1023d000e91223fbe498f8e499f922c3e498f8e4bd
+:1023e00099f91223fbe498f8e499f9c3e49afae422
+:1023f0009bfb22eb20e7cfe920e7e0b90010bb0010
+:1024000008e88af084f8aaf022e4fbc8fa22eb700c
+:10241000227b10c833c8c933c9335007c39ac3db02
+:10242000f280069a50012adbeac833f4c8c933f4b3
+:10243000c9fa2275f008e4c833c8c933c933c99a48
+:10244000c99b5004c92ac93bd5f0ecfbc833f4c87a
+:10245000e4c9fa22600d08c6a2e713c618c613c65f
+:10246000d5e0f322600c08c6c313c618c613c6d540
+:10247000e0f422700422600d18c6c333c608c633c8
+:10248000c6d5e0f41822253210af08f53240021507
+:10249000338008f53240021533d2af22c0d0253246
+:1024a00010af08f532500205338008f532500205ae
+:1024b00033d2afd0d0222532f58210af08f53240aa
+:1024c0000215338008f53240021533d2af853383cd
+:1024d00022c5822532c582c583353310af07f53357
+:1024e0008582328007f533858232d2afc5832225bb
+:1024f00032f582e43533f583222532f584e4353331
+:10250000f58522e473c0e0e8c0e0e58124fcf8e64c
+:10251000a2e7d0e0f8d0e0225392fe2532c582c077
+:10252000e0e53334ffc583c0e0e532c3958224f88b
+:1025300010af088583338582328008858333858296
+:1025400032d2afcef0a3e520f0a37821e608f0a3c5
+:10255000defaeff0a3e58124faf8e608f0a3e60836
+:10256000f0a3e608f0a30808e608f0a3e608f0a345
+:1025700015811581d0e0fed0e0f815811581158117
+:10258000e8c0e0eec0e0225392fe2532c582c0e0f2
+:10259000e53334ffc583c0e0e532c3958224f910ea
+:1025a000af08858333858232800885833385823204
+:1025b000d2afcef0a3e520f0a37821e608f0a3dea9
+:1025c000faeff0a3e58124fbf8e608f0a3e608f0b3
+:1025d000a30808e608f0a3e608f0a315811581d04a
+:1025e000e0fed0e0f815811581e8c0e0eec0e02201
+:1025f0005392fe853383853282e0a3fee0a3f5206b
+:102600007821e0a3f608dffae0a3ffe0a3c0e0e052
+:10261000a3c0e0e0a3c0e0e0a3c0e0e0a3c0e010fe
+:10262000af08858232858333800885823285833383
+:10263000d2afd083d0825392fe0211185392fe85fe
+:102640003383853282e0a3fee0a3f5207821e0a366
+:10265000f608dffae0a3ffe0a3c0e0e0a3c0e0e0fb
+:10266000a3c0e0e0a3c0e010af08858232858333c9
+:102670008008858232858333d2afd083d082539253
+:10268000fe22c0925392fec0d02532c582c0e0e542
+:102690003334ffc583c0e0e532c3958224f210af26
+:1026a000088583338582328008858333858232d2e0
+:1026b000afc8f0a3e9f0a3eaf0a3ebf0a37921e718
+:1026c00009f0a3d8faecf0a3edf0a3eef0a3eff03d
+:1026d000a3d0e0f0a3d0e0f0a3d0e0f0a3e520f099
+:1026e000a3e5f0f0a3d0e0f0225392fe853383857a
+:1026f0003282e0c0e0a3e0f9a3e0faa3e0fba37814
+:1027000021e0f608a3dffae0fca3e0fda3e0fea3ce
+:10271000e0ffa3e0c0e0a3e0c0e0a3e0f5d0a3e0c9
+:10272000f520a3e0a3f5f0e0a3c0e010af08858397
+:10273000338582328008858333858232d2afd0e000
+:10274000d082d083f592d0e0f8d0e032e584f0a3d7
+:10275000e585f022e0a3f584e0f585227404800687
+:10276000740280027401c0e0f4041224b6d0e012b6
+:1027700022ce227404800a740380067402800274dc
+:1027800001c0e0f4041224b6d0e01222db22d08390
+:10279000d082e9c0e0e493a3c386f0c5f095f0f9d8
+:1027a00008e493a386f0c5f095f0700be493a3c3ff
+:1027b000994005e9048002a3e475f002a42582f59e
+:1027c00082e5f03583f583d0e0f9e493a3c0e0e43b
+:1027d00093c0e022c0e074f1122682759800e5a84b
+:1027e000f8c2af9004c6e0d2e1f0753400e8a2e789
+:1027f00092af1213377f010226e9c082c083539241
+:10280000fe906059e0f8900497e028f0906058e05e
+:10281000f8900498e028f090605a12283390605e97
+:1028200012283390605ce0f890049ae028f0d0839e
+:10283000d08222e0f8900499e028f022c082c08380
+:102840005392fe900497e4f0a3f0a3f0a380de740b
+:10285000f712258779001219a39003e912305bea79
+:10286000c398f8eb99f9e82404fee93400ff9003db
+:10287000f4e0fca3e0fdc3ee9cef9d402e9003f23c
+:10288000e0fca3e0fd9003f6e02af8a3e03bf9e8c2
+:10289000c39cf8e99df99003e9123046a3ecf0a33c
+:1028a000edf09003f4ecf0a3ed80289003e91230f2
+:1028b0006c9003f4c3e098f0a3e099f09003f41255
+:1028c000305b9003eb1230469003f0e0700474022a
+:1028d000800114f07ae77b031237a102312674f7e6
+:1028e000122587e9600924fe601c1460198030906d
+:1028f00003eee0a2e350099003f1e0602214801e91
+:1029000054fb440880189003eee0a2e2500c9003c0
+:10291000f1e064086009e004800454f74404f09096
+:1029200003efe070089003ed74fff0804890600ab8
+:10293000122d2c703d90618fe0c0e09003f1e0f823
+:102940007408c398f8d0e0b800028004c313d8fc20
+:10295000f52174ff6521700990600ae4f0a30480fa
+:1029600010e5212401f8e43400f990600ae8f0a3ae
+:10297000e9f012284f02312674f712258774fe12ef
+:1029800024b612274ce924fc600624fe6029800d41
+:102990009004b0e06401705f12170f805a90040c2d
+:1029a000e064017012900406e4f07b09123105fa2c
+:1029b00079001219eb8040900406e070089004043e
+:1029c00074fff0803279001219a38a218b22a8218a
+:1029d000a922900408e028faa3e039fb90618fe077
+:1029e000541ff8ea28f8eb3400f99004001230463e
+:1029f0007afe7b031237a102311874f7122587740f
+:102a0000fe1224b612274c90045512305be82410b5
+:102a1000fce93400fd90605ce060088c828d83e00e
+:102a2000d2e1f0e8242efae93400fbe82430f58402
+:102a3000e93400f58590605ae0700690605ee060d1
+:102a4000318c828d83e0d2e1f0e40592f0a3f0e8ce
+:102a50002420f582e9122d08122eaf74037821127a
+:102a600024738a828b83e521f0a3e522f0790002aa
+:102a70003118e8241cf582e9122d11fea3e0ff8530
+:102a80008482858583e02ef0a3e03ff08a828b83e9
+:102a90000592e0faa3e0fbc30592e09aa3e09b5005
+:102aa000cc88828983a3a3a3a3a3a3a385828485bf
+:102ab00083858c828d83e0a2e150047408800274c7
+:102ac0003e0592f07b02888289830592a3a3a3a38b
+:102ad000a3a3122d1e809874f512258774fe12246c
+:102ae000b612274c900455e0fea3e0ff8e848f853c
+:102af0000592a3a3a3a3a3a3a3a3e0fc7003022caa
+:102b0000dcee242cf582ef122d0812305b8e828fc2
+:102b100083a3a3a3a3a3a38582218583228e828f6f
+:102b200083a3a3a3a3a3a3a3aa82ab83ee243212fd
+:102b30002d0e687003a3e069701b74026c700302b1
+:102b40002c7d74016c607374096c60348a828b8391
+:102b50007422f0801dec146061147003022c7d243b
+:102b6000fa602a14601a146009147003022cbc0263
+:102b70002cdc7b02852182852283122d1e022cde15
+:102b8000906008e0a2e65003022cdc80e5ee2437da
+:102b9000122d01801388828983a3a3a3e0640370ac
+:102ba00003022cdc88828983122d2c70e88a828ba8
+:102bb00083e0641370bc74168098ee2453122d15b4
+:102bc000ee244afcef3400fdea24fff523eb34ff4a
+:102bd000f524e523687003e524697063ee244bf562
+:102be00082ef122d328e828f83a3a312306c8c82df
+:102bf0008d83e0c333f8e433f9e82403080808e9d7
+:102c0000340012303d90049fe4f0a3f0a3f0a3f051
+:102c1000900485e0a2e04003022cdc8c828d83e0ee
+:102c2000f875f0e2a4c8aaf075f004a42af9e82423
+:102c3000c0f8e93437f9906064123046022cdceabf
+:102c4000687002eb696003022cdc752309752400af
+:102c50007823122760ee2419122cf412249c90047d
+:102c600085e0a2e05007eefaeffb12165be4059256
+:102c7000f07b088521828522830592805ce824010f
+:102c800008e93400f9ee245a122d0e687003a3e00f
+:102c90006970497521057522007821122760ee249c
+:102ca00055fcef3400fdee2422122cf412249cee8d
+:102cb000faeffb121709e40592f08020eefaeffb21
+:102cc00012133de40592f00592900485e0a2e050d5
+:102cd0000b7b07852182852283122d247900853282
+:102ce000828533835392fe122754740212249c7ff0
+:102cf0000402263cfaef3400fb121f017402222466
+:102d00001cf582ef1235c5221235c5059222f582d7
+:102d1000ef123630221235c2e0faa3e0fb22122d68
+:102d200024790122e0fa79001219eb2212305fe8cf
+:102d300049221235c5122d392212305fe8c333f80b
+:102d4000e933f92274f812258774fe1224b612278b
+:102d50004c900455e0f584a3e0f585122ad7e9707c
+:102d6000481229fae97042e584242cf582e585129f
+:102d70002d112401f0a3e03400f0906008e0c0e0e1
+:102d8000e5842434f582e585122d04d0e0f0e58455
+:102d9000241cf582e585122d320592a3a3e028f0cc
+:102da000a3e039f0059212304c85328285338312cc
+:102db0002754740212249c7f0102263c74f71225ca
+:102dc0008774fe1224b612274c9004a4ea241cf542
+:102dd00084eb123035f8a3e0f9e8c333f8e9331295
+:102de0002e9dacf08522f0a42cfc8521f0e9a42cca
+:102df000f90592e028f8a3e039f98a828b83a3a32e
+:102e0000858284858385e80592f0a3e9f090049f8c
+:102e1000e0faa3e0fb900487e0f521a3e0f522eac5
+:102e20008521f0a4caacf08522f0a42cfc8521f009
+:102e3000eba42cfbe8c39af8e99bf9e824ff18e916
+:102e400034fff9858284858385e8f0a3e9f0900456
+:102e5000a1e0f8a3e0122e9d122e8d7a207b4e1257
+:102e600023fb882189220592e09521f0a3e0952299
+:102e7000f09004a612305b900487122eafe88521f3
+:102e8000f0a4c8122e8de8123026023117aaf08560
+:102e900022f0a42afa8521f0e9a42af922f9900463
+:102ea00087e0f521a3e0f522e88521f0a4c822e01f
+:102eb000f521a3e0f5222274f712258774fe12246f
+:102ec000b612274c900455e0fea3e0ffee2410f567
+:102ed00084ef123035a2e35008c2e3f005920230cd
+:102ee000208e828f830592a3a385822185832290e1
+:102ef0006062e0601079101219a385218285228317
+:102f0000eaf0a3ebf0122ad7e9600302302312297a
+:102f1000fae96003023023906008e0c0e0ee243458
+:102f2000122d01d0e0f09061d5e0f89061d7e06813
+:102f300005926005e0d2e28003e0c2e2f0059290e3
+:102f400004a1e024c0faa3e03437fb906062e060a3
+:102f50000e1239cb9004a61235ab12302680121215
+:102f600039b59004a6122d35906064e028f0a3e0f6
+:102f700039f0ee2429122d0e9004a3f0ee241e1237
+:102f80002d01122d2c60498e828f83a3a3a3a3a3ae
+:102f9000a3a3a3e0703aee2430122d15ea4b703053
+:102fa000ee2437122d15ea4b7026e8240108e93487
+:102fb00000f99004871230468521828522831230e1
+:102fc0005b9004a4123046eefaeffb122dbc804455
+:102fd0009004877401f0a3e4f0ee122cff12305b32
+:102fe000e8c333f8e93312306585218285228305f1
+:102ff0009290049fe0f8a3e0f90592e0c398f8a34b
+:10300000e099f9e824ff18e934fff9852182852247
+:1030100083123046123058ee242c122d0112306cdf
+:1030200012304c0231182440f8e93438f9906064c9
+:10303000e8f0a3e9223400f5850592e022f98e82ba
+:103040008f83a3a3a3a3e8f0a3e9f022900455e0a3
+:10305000faa3e0fb1237a12290048712305f22e02e
+:10306000f8a3e0f922f9852182852283e028f0a3e4
+:10307000e039f02274f712258774fe1224b6122765
+:103080004c803dc2e5f01230f3e0f808089004ae41
+:10309000e028f0123105c0e005921230f3d0e0f0e4
+:1030a0009004aee004f0a3e004f0a3e004f0900488
+:1030b000b2e0700c7401f07b007a0079001219eb19
+:1030c0009004afe0f890605ae06860259004aee0ac
+:1030d00004547ff52174802521f874603400f912be
+:1030e0003105a2e7888289830592e05096d2e58077
+:1030f0009480259004aee0547ff8748028f58274a3
+:10310000601235c522900455e02406f584a3e0340e
+:1031100000f5850592e022f08532828533831227ff
+:1031200054740212249c7f0202263c74f5122587f7
+:1031300074fe1224b612274c892105929004551270
+:103140003577858284858385a3a3a3a3a3a3e0a267
+:10315000e740479004b1e0f8906054e0c398f5224e
+:103160009004b1e02522f0ae82af838012ee2437c6
+:10317000faef3400fb121631ea4b60031218118586
+:10318000222374ff2523f5220470e2e521a2e64004
+:10319000097900eefaeffb121787022cdec0e0740b
+:1031a000f11226828535c675a70075a100795012e7
+:1031b00019c17f010226e975bf0032c0e0c0d07599
+:1031c000d008c092c082c084c083c085c0f085355d
+:1031d000c6e591fe759b00f4f591eea2e050031256
+:1031e0003074eea2e55004f912312beea2e7502024
+:1031f000e5a8f8c2af5392fe9004c6e0d2e01239bf
+:1032000035e594a2e24009759403e594a2e250faf0
+:10321000eea2e640030232a55392fe906061e0f90f
+:103220009004afe4f09004b1f0900455122d188a88
+:10323000828b83a3a3a3a3a3a3e024046010146040
+:103240000814700f1228de8054122978804f12164d
+:1032500055804a906060e064806032e0c0e0ea241b
+:1032600011f582eb122d04d0e0f0906060e0c0e038
+:10327000900455e0242af584a3e0123035fa7460f6
+:103280002af5827404122d04d0e00592f090048592
+:10329000e0a2e05005122eb78003122d441227fa47
+:1032a0001216438004a2e750031237e0d0f0d08515
+:1032b000d083d084d082d092d0d0d0e03274f712b4
+:1032c000258774fe1224b612274c900455e0fca307
+:1032d000e0fd123058ec2427f582ed122d04ec2489
+:1032e00029f584ed3400f5857401687001e97017e3
+:1032f0000592e0f80592e028fac39425400474dbb7
+:103300002afaea05928025e0f521e88521f0a4f863
+:10331000aaf08521f0e9a42af90592e0fae82af852
+:10332000e93400f97a257b001223fbeaf074075a8e
+:10333000f87401b800028004c333d8fcc0e0ea137b
+:103340001313541ff8ec28f8ed3400f9e82422f5a3
+:1033500082e9122d04d0e0f80592e058702a800529
+:10336000e0cac39afaec24e3f582ed122d11f8ead3
+:10337000c39850ec8a21ec2521f8ed3400f9e824bb
+:10338000bef582e9122d11faec242af582ed122df8
+:1033900004ea02311774f612258774fe1224b6125d
+:1033a000274c900407e0906001f09009b91222b612
+:1033b0009061951222c212179390040ce0fe7401e2
+:1033c0006e9004057040e05402f97a0d7b041216e9
+:1033d00079900405e0a2e050097a917b04752140c0
+:1033e00080077a8b7b04752100a2e150047e8080e7
+:1033f000027e0075230678231227647c0d7d04e588
+:10340000214e44018064e0a2e050087a917b047868
+:103410004080067a8b7b0478000592900432122754
+:103420007f7c137d048e2174bd2521f582740912e1
+:103430002d08e048f912167f740112249cee6005f5
+:1034400074026e702e900405e0a2e050087a917b21
+:1034500004784080067a8b7b0478000592900452b1
+:1034600012277f7c337d04e84404f912167f74012f
+:1034700012249c900405e0a2e0e433f9121673755f
+:10348000910090618274c0f0853282853383122767
+:1034900054740212249c7f0302263cc082c08353d2
+:1034a00092fe9003f0e004f064037002e4f0e02484
+:1034b00025906000f09009b91222b6906195122211
+:1034c000c29003eee05420f9121673121793900382
+:1034d000eee0a2e15004d2f08002c2f0a2f0e433a8
+:1034e00090600cf09003eee0a2e1503575d90da28a
+:1034f000e55004784080027800e84403f5d9e0a262
+:10350000e550067a917b0480047a8b7b047906125d
+:103510001649740675d9001470fae5e170fc75e17e
+:103520009575910090618274c102282d74f812255e
+:103530008774fe1224b612274c1235b01222b690b0
+:1035400061951222c21235e3f584ef3400f58585ca
+:1035500084828585831235ca2410122d0ea2e25072
+:10356000111235750592a3a3e02402f89061d5e00d
+:1035700028f0022da90592e0f582a3e0f5832274dc
+:10358000f81225871235b01222b69061951222c228
+:103590001235e3122d011235ca122cff1235ab245d
+:1035a000fcf8e934ff12303d022db7122d39e82224
+:1035b000900455e0fea3e0ff121793ee241212359b
+:1035c000c222f582ef3400f5832212305fee2435fb
+:1035d0001235c2e8f0a3e9f07900eefaeffb12171a
+:1035e00087ee22ee243412362d906008f0ee241679
+:1035f00012362d906005f0ee241712362d906006dd
+:10360000f0ee241812362d906007f0906060748000
+:10361000f01232bdee242a12362d906000f0759122
+:10362000009004bbe0906182f0ee243722f582ef37
+:103630003400f583e02274f412258774fe1224b658
+:1036400012274ceafcebfd7e007f007a5c7b048c49
+:10365000828d83a3a3858221858322800ce5232488
+:1036600004f8e52434001230658a828b83e0f58407
+:10367000a3e0f585e58445857003023779a884a920
+:103680008588828983a3a38521848522850592e08c
+:10369000f523a3e0f5240592e0c39523f523a3e0e9
+:1036a0009524f524c3e5239404e52412391e4039fa
+:1036b0008c828d831230468c828d83a3a3a3a38535
+:1036c000828485838512305bc3e52398e524995075
+:1036d0000d858482858583e523f0a3e524f08a8225
+:1036e0008b83ecf0a3ed023789c3e52394fde52439
+:1036f00094ffa2d265d03340478c828d83a3a3a3cd
+:10370000a3a3a3e0a2e7500302365d88828983a3c6
+:10371000a3a3a3a3a3e0a2e7502688828983e0f5b0
+:1037200023a3e0f5248a828b83e523f0a3e524f02c
+:1037300088828983eef0a3eff0e8fee9ff023669a4
+:1037400088828983a3a3a3a3858284858385c3e418
+:103750009523fae49524fbe0f523a3e0f524c3eade
+:103760009523eb9524500b858482858583eaf0a30d
+:10377000ebf0e8fae9fb0236698a828b83ecf0a36e
+:10378000edf08c828d83e4f0a3f0eefaeffb85324e
+:1037900082853383122754740212249c7f050226eb
+:1037a0003c74f712258774fe1224b612274cea4b9c
+:1037b000602ba2afe433fec2af1236368a828b830f
+:1037c0008010aa82ab838582848583851235751229
+:1037d0003636e582458370eaeea2e092af023118f8
+:1037e00074f512258779001219a38a238b2479771f
+:1037f0001219c19061b1e4f0e070f87401f0e06476
+:103800000170f890045c12305b900455123046e869
+:10381000497012123926e594a2e250037594001201
+:10382000187d022cef88828983122d1890045cea9f
+:10383000f0a3ebf088828983a3a3122eaf8882893c
+:1038400083a3a3a3a3e02521faa3e03522fbea2466
+:10385000fdfeeb34ffff88828983a3a3a3a3a3a368
+:10386000e024046012146005146007804712339549
+:10387000805212349b804de521c39523e522952487
+:10388000c312391e5029e5232401f521e524340013
+:10389000f522c3e5219ee5229f400ae5212401fe91
+:1038a000e5223400ff9003e9e521f0a3e522f012c0
+:1038b00017998010900485e0a2e0500512352c8005
+:1038c0000312357faa21ab2279301219b5eefaef37
+:1038d000fb79401219b579541219c1e521c395231a
+:1038e000f8e5229524f9c3e89401e912391e500d38
+:1038f0001217abe5e170fc75e12102381f900369f6
+:10390000e0a2e04013aa21ab221219af90049b124f
+:1039100022c212392602381f1217ab02381f940038
+:10392000a2d265d03322e5a8f8c2af9004c6e0c2a7
+:10393000e012393522f0753400e8a2e792af220098
+:10394000853487c2af22c0e0c0d075d010c092c00d
+:1039500082c083c0f074fc1224865392fe9004c788
+:10396000e0601712166d900369e05411700375c67c
+:10397000879004c7e4f0c2c78026c2c7853282851b
+:103980003383aa82ab831217a5e9640170129004f5
+:10399000c77401f08532828533831222b612187102
+:1039a000753400740412249cd0f0d083d082d0925d
+:1039b000d0d0d0e03275c3007420c39afa744e9b05
+:1039c000fbeaf5a2ebf5a35392fe22c02175c301d9
+:1039d000e5a2f521e5a375c300f9e5212420f8e966
+:1039e000344ef9e8c39af8e99bf9e8f5a2e9f5a3a2
+:1039f000d0215392fe22c082c08374fc122486e53b
+:103a0000a8f8c2afe5958532828533835392fef0e4
+:103a1000e596c0e074011224efd0e0f0e597c0e035
+:103a200074021224efd0e0f0e8a2e792af74031220
+:103a300024efe4f08532828533831222b6740412b7
+:103a4000249cd083d08222c0e074f11226821239e5
+:103a5000f690060c1222c2e58955ab900610f0e5ef
+:103a600080900613f07b007a0079061219eb7589b5
+:103a700000c2c57f010226e9c0e074f1122682125d
+:103a800039f690060c1222c2e58a558d900611f087
+:103a9000e590900614f07b017a0079061219eb7517
+:103aa0008a00c2eb80cdc0e074f01226829061a93a
+:103ab000e4f090061ae0640f7012e5c7f890036a0c
+:103ac000e0f5c790ff1ce0f4f5ae88c7e5bbf9e56b
+:103ad000bafae9fb90061ae0c333f8e433f9741b31
+:103ae00028f582740639f583eaf0a3ebf090061a04
+:103af000e02410fb7a0079061219ebe5a8f8c2afb2
+:103b00009004c6e0c2e2f0753400e8a2e792af7f0d
+:103b1000020226e9c0e0c0d075d008c092c082c0c1
+:103b200083c0f0e5d1f875d100c2c0a2e350097b93
+:103b3000037a0079041219ebd0f0d083d082d092ae
+:103b4000d0d0d0e032c0e0c0d075d018c092c02133
+:103b5000c022c082c083c0f05392fe9007f9123c8d
+:103b60005e602b9007b4e0700c7401f07b007a006b
+:103b700079041219ebee9007f9f0e5c1c0e074fb8f
+:103b80002521f58274073400f583d0e0800be5c46d
+:103b9000a2e650069007b37401f0023c4dc0e0c0ad
+:103ba000d075d018c092c021c022c082c083c0f09e
+:103bb000c2e95392fe9007b6e0fa9007b5e09a5436
+:103bc0003ff860258a2174b72521f5827407123cdd
+:103bd000d29007b6f089c19007f7e06870197b02b0
+:103be0007a0079041219eb800ee5a8f8c2af9004b0
+:103bf000c6e0c2e3123cc88054c0e0c0d075d01803
+:103c0000c092c021c022c082c083c0f05392fe90f7
+:103c10000883123c5e602a90083ee0700b7401f04d
+:103c20007b00fa79041219ebee900883f0e5f9c0f5
+:103c3000e074852521f58274083400f583d0e08096
+:103c40000be5fba2e6500690083d7401f0d0f0d0e1
+:103c500083d082d022d021d092d0d0d0e032e0f5f3
+:103c60002174012521543ffea3e06e22c0e0c0d0a4
+:103c700075d018c092c021c022c082c083c0f0c2db
+:103c8000ea5392fe900840e0fa90083fe09a543fd1
+:103c9000f860258a2174412521f5827408123cd2ee
+:103ca000900840f089f9900881e06870197b027ae9
+:103cb0000179041219eb800ee5a8f8c2af9004c692
+:103cc000e0c2e4123cc88085f0753400e8a2e792b7
+:103cd000af223400f583e0f974012a543f22c0e09a
+:103ce00074f0122682906206e0f89008dbe048f05b
+:103cf000906202e0543ff52175220074047821128d
+:103d000024739008dbe04521f0a3e04522f09062a7
+:103d100004e0543ef52175220074097821122473c1
+:103d20009008dce04522f09008dbe054046007e0f6
+:103d300054fbf0121e3b9008dce054016013e05489
+:103d4000fef09008eae060097b037a007907121917
+:103d5000eb121e659008dce05420600de054dff0ab
+:103d60007b027a0079071219eb758b00c2e87f029b
+:103d70000226e9033f0000030004280d980890077d
+:103d8000900194011b0195111b08f00939821f0e47
+:103d9000a4fecd82210622fb381818162118f0ef58
+:103da0003818f2ed3828f2eb3868f003392a1fe7ab
+:103db0003f08f00428ba3868f0393c08f1053c881f
+:103dc000f1173ca8f10e3ce09f2c1f0128104a2956
+:103dd0001fd63f15d0033827d00938009004289ffc
+:103de0003f0128154101980128014a25d01f3804b8
+:103df0001f831f0ea4fecd0422053814212028079e
+:103e0000a0083f0628681527d0e939202807d0f2f6
+:103e100038832178f10238042188f1083d0628a171
+:103e20004001f004288438042807a005284d1528ef
+:103e3000f1163c68f1143d77cf1240599202d80f29
+:103e40003912d00739699222d00439799242d004cc
+:103e5000380528ef151e3fc09f04286c3f08f1234a
+:103e60003c88f1203d094028f1103d4540f7c759f5
+:103e7000f2083d9303131183e1b9f00f3c23e00de9
+:103e80003f09d8ea38f9c30b3f68f1033d59f2f214
+:103e90003c09d8f9390528bd150528f01501900110
+:103ea00028214a051f48f00c3c08f10a3868f10344
+:103eb0003c98f106390c960528f9150228843f47ed
+:103ec000a00c960528f315531f0528e31507288c29
+:103ed000ed0528ec1501280195711b01280ce4055e
+:103ee00028e515511f88f10b3808f1073868f109ea
+:103ef000390128214201f00b3947d0093835210614
+:103f00003f28f1033838f10339351f341f04280cda
+:103f1000e047d0033903280ce80528c815571f28a7
+:103f2000f00638561f811f021f38f0063930215b1a
+:103f30009005283b15fd3f88f1033d0428f7150542
+:103f400028811547d0133808f10f392c470cf00c95
+:103f500038c403b4125c110c3e04f00a38c103806b
+:103f60002801a0411b063f3021043f07284ced4c9f
+:103f70001b5b9047d0173827d00328e8390ea4fee2
+:103f8000cd02220d39002208381021002914e00347
+:103f900028dd3c4c1bf13f05289e15ee3f461812cc
+:103fa00021033f0528021588f13039052811150134
+:103fb00028fb41302100291be00a3d0428f61505a5
+:103fc000280715f6c35192166a3b906b080428ed3a
+:103fd000150428fe150bf0fb3917d004382d1f01ee
+:103fe00028c43f0328214701f0083903283147013d
+:103ff000f00439a2958090033fc29500920328b641
+:1040000015201b54900128b33f08f10539052111f3
+:10401000900128214a38f103390021023f30211054
+:10402000216a030428c2156b033141224128f1099a
+:104030003d02f00239f29101f00b39ff28f19108ad
+:104040003f02f00239529201f00339ff28f193f751
+:10405000cb1b06023907a4b20c073d47d003286edc
+:104060003824900328753f1690b6080428b115a689
+:10407000030428ae153be0f7ce28f1703c01280779
+:10408000a0f090a00668f1323d149030f005393868
+:10409000f103285e38073f50f003285a3958f103de
+:1040a00028573838f104380328ab15033f03288913
+:1040b0001503287515012807d0033907a1563f427b
+:1040c0004130f00c3907a112d0033807d84e388799
+:1040d000a0c14041d04a38f7ce483f38f1033822da
+:1040e000d0443807d8423907a1403f78f112384709
+:1040f000d02d3800f0033860f00639c14011d007e8
+:104100003887a0113f10f0033820f0ab3977cf0b80
+:104110003f00f0033810f0a539414181d004390344
+:10412000285015093f03286c1568f10539414141b4
+:10413000d0023907b810f0063903283115012807d5
+:10414000d0033807d8123907a1103f40f00228fced
+:10415000390328141507d8f838083fa103834031e4
+:1041600012310511d0023907a14bf0063c04281d7d
+:104170001504282e15fa3f042818151bf0fd3d38ac
+:10418000f103380328a115f7cd0328214701f005d5
+:10419000390328314701f0033807a2f7ce224082c5
+:1041a000d00a3806030428141506937606261196bd
+:1041b0000404280e1571034112002871c021070460
+:1041c00038e7cf4198043f17d00439519807282188
+:1041d0004817d00538f295202800901d3f07d204db
+:1041e00038c2950092183f07d10438d29500941335
+:1041f0003f07d40438e29500980e3f809028f10ada
+:104200003d3190a10631f0063903a4b2950228aae7
+:104210001500a1a2950228a615201b28f1633d08d0
+:10422000f10a39012807d00739072851411128c15f
+:104230004a012807a017d20539e3cf8ad0023813e4
+:10424000a007d20539b3cf4ad0023843a083d01e8d
+:104250003931031112310521d0073931990728214d
+:1042600048002915e0133f529502287c154540036c
+:10427000d10d39429502287615281f21990728214a
+:104280004803d20438629502286d1573cf8348081d
+:10429000f1093977cf17d0063907d203390ad1028d
+:1042a0003887a0349007d2073807d80338309054a5
+:1042b0003f07a8023ff7c718f15a3927d04c3931c8
+:1042c0004011d0493987d0073917d0453907d20373
+:1042d000390ad1413805f04b39414001f048385096
+:1042e000903b3f68f1153878f13938149017d03d7c
+:1042f0003907d23d3987d003383490393f07d13759
+:104300003911900128214a409003286e15253f4716
+:10431000d01c38249007d30c3911900128214a87ea
+:10432000d008385144002911e0043a514c02387742
+:10433000cf17d01b3987d003383490193f07d317d4
+:1043400039c14021d01438073f17d00f3907d303a4
+:10435000383090023f009044900a3f249017d005d7
+:104360003907d305393490033fa09f44900221c1ff
+:1043700090511b8121342124f0083927d004390cb5
+:104380009cfd2bae3f10904490b7cf34f00e3953c4
+:10439000210328e195711b541f0f28cc9506282175
+:1043a00041f1c081111c09143f0190511b0728f1f4
+:1043b0009f711b802114f00128863854f0fd2b0ad0
+:1043c000380128ad3f541f032864151028cced0395
+:1043d000286d1576217821501f0128a29a2170019d
+:1043e000b2218001b221802ce303286015742101e1
+:1043f00028ace408f1073c88f1033d022897150337
+:10440000282115011f0128349d03285015201f0065
+:104410002168f0093d069058f0033907283641021b
+:10442000289315fa3f0728504078f10439331f329a
+:104430001f0421500000dc01287c3828f1103d8346
+:1044400040f7cb31031112310521d0033903d103d9
+:104450003900d8103807a41b901a90163f00d801d5
+:1044600028683998f107394b700128e2412b080080
+:10447000288e3f102807a04b701bf0fc2bed3c4a08
+:1044800070224128f1303d02f00239f29112e0b27f
+:104490000cfc2be23c419031061111ff2be29f32c4
+:1044a00004520022111a042a043240002862c01863
+:1044b000f1033927d00d3922f0093907280141b11c
+:1044c00009002921e0093a0aa1073f42f00339fa1d
+:1044d000ce033f62f0f93818f1253977cf0ad1229f
+:1044e0003887a0203f02f00239529212e0b20cfc51
+:1044f0002bb33c68f1123d38f1153887d0133901e0
+:1045000028314201f00f38402807a0072891423196
+:10451000c0c1a00728914a063f02280190710621d8
+:10452000121a04ff2bf29fb2084be0a60302280cdc
+:104530001526030228091568f1293cfbf0273c6287
+:1045400090467002280115d2370428609662904682
+:1045500070062d0128f915c23778f11839d04000be
+:10456000d81538dbf0133c829046700128ed15d247
+:1045700037764400d40338060e023f060d41700121
+:1045800028e315417086120128df153290b20c0520
+:104590003d46700128d915fb3f08f10639417211db
+:1045a00028c14a012807a0ef28f7cf28f11e3d8334
+:1045b000403090a00631031112310521d003398219
+:1045c00095043f30f0043972950028cc1553c84348
+:1045d000d0023823a007d4023803a130f0023903f7
+:1045e000a2834892950028be1506900bf00538016d
+:1045f00028ab15591ffb3f0ea4fecd012204390242
+:10460000286a15fa3f551f1121031f249008f10f46
+:10461000390ad1033987d02438314011d0213905e6
+:10462000f02139414001f01e3850901b3f48f107fe
+:104630003828f1033858f1063987d0143877cf1469
+:1046400090113f78f1053911900128214a093f98ce
+:10465000f10939829500288a15281f5490033f00dc
+:104660009044900ea4fecd0322043902283415fa9a
+:104670003f13212c1801210321741ff1900000f138
+:10468000370190511b0728f19f711b8021322107b0
+:1046900028914231c00728914abf28f7cf28f10658
+:1046a0003c88f1043d92955e15281f44f03838147b
+:1046b000f00a3854f0fb2b8e3801280ce40128f660
+:1046c00015fc2b023f01289015009027d0283902b5
+:1046d000d8083838f12439329001289215e2371978
+:1046e0003f19e089f2043c38f11a39599238f10344
+:1046f000390128861512409103002951e2120e1249
+:10470000d0f038012886150128b9151240012891ea
+:10471000153199072821482c18fe2b553f012810e8
+:104720004a0028a915fb2b2b3ff09f043fd09f0286
+:104730003fb09f0028d0152c1ff23f28f1053c68a0
+:10474000f1033d1490053f2090023f1090449041aa
+:10475000980728214838f1fe2b0a380028b515fea5
+:104760002b063f217011e021800200012821410722
+:10477000282148217811e021880200f7c7761571b9
+:10478000033112a10501d4023907a8042864963127
+:10479000150238f7c70428c4f6fb3c0200fe28f7d0
+:1047a000cf641551417111a10501d80339012807c2
+:1047b000a064911f150338fe28f7cfc4f1fb3c021b
+:1047c00000f7c753155141022807a00ad40339fd49
+:1047d00028f7cf5111a10501d4023907a8c49104cb
+:1047e00028659607150238f7c7563124f2fb3c02bc
+:1047f000000028db150028ec15412d160c0200f7ef
+:10480000c73415d032d332234268f109394141907f
+:104810004041d0043850000306023f0303314202f6
+:104820002807a00ad404395100fd28f7cf13064405
+:1048300092042865960028b9150028ca155631ff3c
+:1048400028e19f4070060c023813068ea081006498
+:10485000e044f5f83c0029f4e2a4f2ed3c03f00258
+:104860003807a8d32fd02f02009bf0023c0200078c
+:10487000a12de0020098f10938102807d00339086b
+:10488000f1043831990728214808f10c390128072b
+:10489000d00938072851411128c042010c033807bc
+:1048a0002850491190082807d005380628b148f744
+:1048b00028f7cf042807d005380628a148fb28f799
+:1048c000cf3021291f0200311fff28f19f411b30eb
+:1048d0001f3121020002210121032153230938063f
+:1048e00028d14001d112384198072821480b3f5464
+:1048f000230c385021f1910000f137741ff1900022
+:1049000000f13768f0023c2b1f0190511b812107f9
+:1049100028f19f711b80210728914231c0072891ff
+:104920004abf28f7cf322134210200082807d007d8
+:10493000390628b14001f00438082807a002000415
+:10494000280d98fe2bf43f402807d00d390ea4fe09
+:10495000cd012204390028bf15fa3f661b11210042
+:10496000291be002000728a64a0ea4fecd0122045e
+:10497000390028b115fa3f01283142b10941e0055b
+:104980003a08384bf00c38ea3d0728a142611be792
+:104990003f0728914271cf0728914af73f07289196
+:1049a0004281a20728914ada3f0ea4fecd022204da
+:1049b0003900289115fa3f4618122100291be01be7
+:1049c000f00639581f0628e0400128004a02001767
+:1049d000d00a393122063817a04198072821480308
+:1049e0003f0728a6480200124038f1093802d807cc
+:1049f000399103002941e2120e120d1248020047bc
+:104a0000a07b280c9c10215215ff2b5e15b7cf02fe
+:104a10000059f203396391083f69f20339e39204c4
+:104a20003f79f203394396020004280d98fa2b14bb
+:104a30003f02d407389103002901e2117006286172
+:104a400048020088f10a3c012831410728814ab117
+:104a5000460328314fa1460f3f0728894a28f1060f
+:104a60003d31440328314f5140053f5528519503ae
+:104a700028314f81110328214f0200e3f3033cf159
+:104a800090033f23e051920628614a0628434802da
+:104a9000007b21772141900000f137702175217a48
+:104aa000218cee0415521f801f02004c1b001f4773
+:104ab000d0033827d009390ea4fecd002203390bcc
+:104ac00015f73f1021020004280d9838f1fe2b271e
+:104ad00038fe2b3c3fd23202180119210601d41aac
+:104ae000381218162162f003392a1f2d3f12f215d1
+:104af0003822f22838fe2bef1568f0063c61900151
+:104b000028114afe2bb8153021280304280d98f9e6
+:104b10002b373f01d114381421202807d00d3878c5
+:104b2000f1123904231038714401f0023981440034
+:104b30002911e0714c083f202807a0053f01d2054c
+:104b400038152127a0d22f020011d00638102104d9
+:104b5000280d98fd2bf33ff2ce5200121bf43f00bc
+:104b600001000002000000e11a0000000100000046
+:104b7000000b1b00000002000000001d1b000300d2
+:104b80000324000000ff1a000200040400000005d6
+:104b90001b00000005000000004d1b000000060087
+:104ba000000000b31b0005000726000000651b0085
+:104bb00000000800000000ef1b0002000982000056
+:104bc00000471b0007000a2a000000f51b00070031
+:104bd0000b2a000000fb1b0000000c00000000017d
+:104be0001c0002000d220000003b1b0003000e22ef
+:104bf000020000411b00000100000000005f1b00dc
+:104c000000010100000000e31b00000102000000a1
+:104c100000531b0003010384000000711b0002010c
+:104c200004040000006b1b00020105040000005991
+:104c30001b0001010602000000111b000301078494
+:104c4000000000171b0004020024080000bf1b0026
+:104c500004020144000000991a000202020400004c
+:104c6000009f1a00030203220800008d1a000202ae
+:104c70000422000000931a00010300020000007be0
+:104c80001a0001030102000000e91b0009030242af
+:104c9000440400751a0001030302000000f91a0021
+:104ca00001030402000000e71a000203058200006d
+:104cb00000ed1a0001030602000000f31a000103d0
+:104cc00007020000006f1a0002030882000000457e
+:104cd0001a0008040042440800811a000604014238
+:104ce000840000a51a0006040242840000b11a00e4
+:104cf00005040342040000ab1a0003040442000050
+:104d000000b71a0004040542080000c31a00040496
+:104d10000642080000db1a000104070200000087b9
+:104d20001a0003040842000000bd1a0006040942ec
+:104d3000840000c91a0002040a22000000cf1a00f1
+:104d400002040b82000000d51a00020500220000b8
+:104d500000351b0001050102000000c51b00010514
+:104d60000202000000d11b0003050322020000cb59
+:104d70001b0005050462000000d71b0000050500ac
+:104d8000000000ad1b00010506080000007d1b00af
+:104d900002060022000000771b000206012200002c
+:104da00000891b00010602020000008f1b000f0695
+:104db000032a444400a11b0000060400000000a7d1
+:104dc0001b0008060544440000951b00030606224c
+:104dd0000200009b1b0005060744020000291b007f
+:104de000050608440200002f1b000206098200008d
+:104df00000231b0007060a2a000000831b0003078c
+:104e00000022020000191c000607012602000025ee
+:104e10001c00030702220200001f1c0002070322dd
+:104e20000000002b1c0002070422000000311c00bf
+:104e300003070522020000371c00030706220200b8
+:104e4000003d1c0002070722000000431c0006076b
+:104e50000822222200551c00020709820000005b84
+:104e60001c0003070a22020000491c0003070b2252
+:104e70000800004f1c0001070c02000000b91b00d5
+:104e800005070d22420000611c00030800220200f9
+:104e900000511a0001080102000000571a00000822
+:104ea00002000000005d1a0000080300000000631b
+:104eb0001a0000080400000000691a000108050833
+:104ec0000000004b1a0001090002000000671c00ee
+:104ed000040901060000006d1c0001090208000021
+:104ee00000731c0000090300000000791c00000092
+:104ef0000000000000071c00000001000000000787
+:104f00001c000600020a000000071c000200030447
+:104f1000000000071c0003000424000000071c0020
+:104f200005000522220200071c0001000602000005
+:104f300000071c0005000786000000071c000c008d
+:104f40000844442402071c00020009040000000772
+:104f50001c0002000a04000000071c0002000b04f1
+:104f6000000000071c0000000c00000000071c00ef
+:104f700003000d84000000071c0002000e04000066
+:104f800000071c0000010000000000071c000001d9
+:104f90000100000000071c000001020000000007e3
+:104fa0001c0002010304000000071c00030104842c
+:104fb000000000071c0000010500000000071c00a5
+:104fc00002010604000000071c00000107000000a9
+:104fd00000071c0002020004000000071c0007027a
+:104fe0000144840000071c00050202440800000779
+:104ff0001c0000020300000000071c000002040067
+:10500000000000071c0003030042000000071c0012
+:1050100002030132000000071c00030302420000eb
+:1050200000071c0003030342000000071c000203ea
+:105030000482000000071c00030305420000000773
+:105040001c0003030642000000071c0001030702c6
+:10505000000000071c0001030802000000071c00fc
+:1050600003040042000000071c000304014200008a
+:1050700000071c0003040242000000071c00030498
+:105080000342000000071c00030404420000000764
+:105090001c0003040542000000071c000304064234
+:1050a000000000071c0002040704000000071c00a9
+:1050b00003040842000000071c000304094200002a
+:1050c00000071c0003040a42000000071c00030440
+:1050d0000b42000000071c0003050042000000070f
+:1050e0001c0000050100000000071c00020502046e
+:1050f000000000071c0000050300000000071c0062
+:1051000002050404000000071c0001050502000060
+:1051100000071c0000050600000000071c00000638
+:105120000000000000071c00020601040000000748
+:105130001c0002060204000000071c0003060324f2
+:10514000000000071c0002060404000000071c0009
+:1051500003060524000000071c00020606040000e8
+:1051600000071c0002060704000000071c000206de
+:105170000804000000071c000206090400000007e4
+:105180001c0002060a04000000071c0002070004bd
+:10519000000000071c0002070104000000071c00bb
+:1051a00002070204000000071c00020703040000bd
+:1051b00000071c0002070404000000071c0002078f
+:1051c0000504000000071c00020706040000000799
+:1051d0001c0004070724020000071c000207080443
+:1051e000000000071c0004070924080000071c0039
+:1051f00003070a84000000071c0001070b020000df
+:1052000000071c0000070c00000000071c0002073c
+:105210000d04000000071c0000080000000000074b
+:105220001c0000080100000000071c000208020426
+:10523000000000071c0000080300000000071c001d
+:1052400001080408000000071c0001080508000010
+:1052500000071c0000090000000000071c000209f4
+:105260000104000000071c000209020400000007fe
+:105270001c0002090304000000071c800c0000440d
+:10528000442402071c8001000108000000071c8064
+:1052900002000222000000071c800200032200001e
+:1052a00000071c8004000444000000071c8000006c
+:1052b0000500000000071c800301008400000007b7
+:1052c0001c8007020022440800071c8006020142dd
+:1052d000240000071c8003020224000000071c8039
+:1052e000100300222a4424071c80060301224400e4
+:1052f00000071c8002030282000000071c800203da
+:105300000382000000071c80030304420000000722
+:105310001c8003040042000000071c8005040142b9
+:10532000040000071c8006040242840000071c8061
+:1053300007040342240800071c80040404420800f8
+:1053400000071c8005040542820000071c8002043f
+:105350000682000000071c800305002208000007e9
+:105360001c8003050142000000071c800505026245
+:10537000000000071c8001050302000000071c80dc
+:1053800004050422220000071c800b0600232a8249
+:1053900000071c8002060122000000071c8007078e
+:1053a0000026220000071c80010701020000000700
+:1053b0001c8003070252000000071c80040900063d
+:1053c000000000071c000000000000000000004773
+:1053d0000a0f650a08750a057f0a09910a0ca90acd
+:1053e00007b70a0bcd0a0ee90a06f50a0474f7128c
+:1053f00025189004d1e0f5217900800774ff25215c
+:10540000522109e52170f5026a5b74f6122518e94c
+:105410009004d37006e054fbf08017e04404125966
+:105420007e122760eafcebfd7ad57b04126d6d12cb
+:10543000249c02597974f712251874fe1224b612ae
+:10544000274ce975f075a4f8a9f012549924691253
+:1054500060201255faea4b703de584246712602003
+:10546000e4f0a3f0900365e028faa3e039fbea2416
+:1054700069f582eb1260247431f0a37419f01254b0
+:10548000992467fce5853400fde584246ffae58501
+:105490003400fb121637026a4d900365e028f5844c
+:1054a000a3e039f585e5842274f612251879007594
+:1054b0002101752200e978211224739004d1e0556e
+:1054c00021600709e9c3940840e57408697002790e
+:1054d000ff025979c021e9faa2e050057521038045
+:1054e00003752100a2e15004780c80027800e842a4
+:1054f00021eaa2e25004781080027800e84521f900
+:10550000d0215392fe02111874f512251874fe1260
+:1055100024b612274c8921740d1224efe0f8a3e081
+:10552000f9752300802f852382ae82e82ef582e96b
+:10553000126024ec2ef584ed3400f5850592e0f53b
+:10554000220592e06522c0e0ea2ef582eb1260248b
+:10555000d0e0f00523e523c3952140ca853282853a
+:105560003383122754740212249c7f030225f074a3
+:10557000f71225187521008017852182ae82ec2e46
+:10558000f582ed1269eaf8ea2e1269e768f0052162
+:10559000e521c39940e3026a5b74f612251874fe94
+:1055a0001224b612274c8a848b8575210875220037
+:1055b00078211227607ae57b04126d6d12249c78a5
+:1055c000211227607c007d007aed7b04125cc412fe
+:1055d000249c7521e575220478211227607ce57de5
+:1055e00004aa84ab85126cc612249c9004e5125563
+:1055f000fa02596b853282853383e0faa3e0fb22fd
+:1056000074f412251874fe1224b612274c8a848b67
+:1056100085740e1224efe0f8a3e0f974101224ef61
+:10562000e0f521a3e0f5229004e5ecf0a3edf0a372
+:10563000e8f0a3e9f075230c7524007823122760a5
+:105640007c007d007ae97b04125cc412249c7821e2
+:105650001227607ce57d04aa84ab85026ca974f4f2
+:1056600012251874fe1224b612274ceafeebff74c2
+:105670000e1224efe0f521a3e0f5228c238d24788f
+:10568000231227607910900361e024021268b1aa06
+:1056900021ab221218a1740212249c7821122760d7
+:1056a000ac21ad22126cc212249c900489e0a2e0cd
+:1056b00050067c917d0480047c8b7d04900485e001
+:1056c000a2e050047a0080027a067906e5212afadf
+:1056d000e5223400fb1218a7900485e0a2e05005f3
+:1056e00075230680037523007906900363e075f047
+:1056f000e4a4faabf00592900453e02af582a3e00b
+:105700003bf5830592a3a3a3a3a3a3a3a3a3ac8266
+:10571000ad83e5212523fae5223400fb1218a77892
+:1057200021122760ac21ad22eefaeffb026ca974c6
+:10573000f612251874fe1224b612274ceafeebff6f
+:10574000740c1224ef125cee75210375220078218f
+:105750001227607ae57b04126d6d12249c75210d71
+:1057600078211227607c007d007ae87b04125cc4fb
+:1057700012249c7521e575220478211227607ce5ae
+:105780007d04126cc212249c7521037522007821bd
+:105790001227607ce57d04aa84ab85126d6d026ed4
+:1057a0006374f612251874fe1224b612274c127078
+:1057b00047640a7521107522000592782160030262
+:1057c000585c122760900361e024421260d21224d8
+:1057d0009c7521e5752204782112276012688c12cd
+:1057e000249c7521107522007821122760125cd646
+:1057f0007ae57b04121efb740212249c8b22ea457c
+:105800002260117904eefaeffb1218e3126037e41c
+:10581000f00258fb126c77eefaeffb12194f75216c
+:105820000875220078211227601259161260d212d0
+:10583000249c1259068a218b220592782112276016
+:10584000125a10126cc612249c12593d1227601273
+:10585000592012249c126037740b80b41227609078
+:105860000361e024321260d212249c7521e5752276
+:10587000047821122760900361e0243212689212aa
+:10588000249c75211075220078211227601268abc4
+:105890007ae57b04121efb740212249c8b22ea45db
+:1058a000226003025803752108752200782112270f
+:1058b000601259161260d212249c0592900361e086
+:1058c0002453125cca7821122760125a10aa21ab05
+:1058d00022126cc612249c12593d122760125920c4
+:1058e00012249c1260377406f07c007d00059290b3
+:1058f0000363e0f9eefaeffb121769853282853314
+:10590000835392fe806b0592900361e024531269e9
+:10591000efaa82ab8322126c7b900361e0244a22bf
+:105920007c007d00900361e02af8a3e03400f9e8f0
+:105930002453fae93400fb121f07740222126c96fa
+:10594000f52195e0f5220592782122126db51259c4
+:105950007e1227608a828b83a30a126d6b12249cad
+:105960007c067d00aa84ab8512160d8532828533b4
+:1059700083122754740212249c7f020225f0f075d2
+:10598000211075220078212274f612251874fe1257
+:1059900024b612274c12704764047521107522003a
+:1059a000059278217021122760900361e024221271
+:1059b00060d212249c125a10eefaeffb12194f1209
+:1059c00060377405f08046122760900361e024126e
+:1059d0001260d212249c12705c64097026059290a9
+:1059e0000361e02422f521a3e03400f5227821129e
+:1059f0002760900361e0243212689212249c12689e
+:105a00008080c17408f0eefaeffb1218110258fb07
+:105a1000900361e024421268b12274f012251874d8
+:105a2000fe1224b612274c74fa122486853282851f
+:105a30003383eaf0a3ebf08532848533850592e069
+:105a40002409125ccaa3a3a3a3e0f974fc5970143f
+:105a5000852182852283a3a3a3a3a3ae82af83e083
+:105a600054fc6010790a853282853383e0fa12187b
+:105a7000e3025cbf12607f1260750592f07a0053fa
+:105a800092fe90618fe0c0e01260282442f582e926
+:105a9000126024d0e0f00aeac3941040e2752306b5
+:105aa0007524007823122760ac21ad22900361e0b9
+:105ab000240c1260d212249c900361e0240b12612a
+:105ac00018740205921260b6c0e012603bd0e0127a
+:105ad0006016c0e0126037a3d0e0f07e108521820e
+:105ae0008522830592a3a3a3e0f894105002e8fe58
+:105af00074f928c3940a400879061255f4025a6ec4
+:105b00009004d3e0f8852182852283a385822585b0
+:105b10008326e07009e854046004790280dc852162
+:105b200082852283a3a3858223858324e8a2e0c003
+:105b3000d0e0a2e092f0122505158182f050081203
+:105b400060b17003125ce01260419004d3e0f8543d
+:105b500004600d852582852683e060047f04803003
+:105b6000852382852483e0a2e250239004d0e0fcc8
+:105b7000852182852283e075f005a4faabf0740ece
+:105b80002afa740a3bfbea2c1269e7ff80027f00c5
+:105b90009004d2e0faeec39a5003025af8e8540295
+:105ba0006008ef70057903025afa12606bee0592f5
+:105bb000f0ef70047a0080027a011260960592f08c
+:105bc000a3e9f012590874046f75211075220005bd
+:105bd00092782170101227607cd57d04126d6d12b1
+:105be000249c025c951227607c007d00125cc4122c
+:105bf000249cef7003025c9514600f1460321460f3
+:105c000009147003025c95025cbf1260377403f0e4
+:105c10000592900363e0fff9121cdf900363e06fcd
+:105c20006005eff91214271255f4121811025cbf27
+:105c3000790474021224efaa82ab83121a0f740241
+:105c40001224ef7825122285900a277821122285c6
+:105c50007825792112205f74021224ef7821122214
+:105c6000a77521047522007821122760740412247c
+:105c7000ef1260c812249c900363e0ff74021224a8
+:105c8000ef1222b6eff9121ce5900363e06f600596
+:105c9000eff9121427900361e02412f521a3e034f8
+:105ca00000f522782112276012688c12249c125c65
+:105cb000d6853282853383e0faa3e012685bf07404
+:105cc00006026b0b121f077402221269ef858221f4
+:105cd000858322059222900361e024121268b1228a
+:105ce000121895125cebe90592f022900361e0f541
+:105cf00084a3e0f5852274f012251874fe1224b6f0
+:105d000012274c74fb1224868a238b248a828b836d
+:105d1000a3a3a3a3a3a3a3a3a3ae82af83126fcd18
+:105d200012673ffb74ff6b6011126748400c7905e6
+:105d3000aa23ab241218e3026011853282853383d3
+:105d400074105392fef08e828f83a3a3a3e0f8c356
+:105d500094105008e8853282853383f074f928c3a3
+:105d6000940a4004790680c89004d3e0f88e828fac
+:105d700083a3e07009e854046004790280b28e8243
+:105d80008f83a3a3858225858326e8a2e0c0d0e087
+:105d9000a2e092f0122505158182f0500874ff6b85
+:105da0007003125ce01260411260b160198e828f44
+:105db000830592a3a3a3a3e0f912607fa3a3a3a3e7
+:105dc000a312607580150592900361e0246312614f
+:105dd000050592e0c0e0127163d0e00592f07521f4
+:105de0000675220005927821122760eefceffd90e7
+:105df0000361e024051260d212249c900361e02428
+:105e00000412611874010592126016c0e012603b22
+:105e1000d0e01260b6c0e0126037a3d0e0f07a00a4
+:105e20005392fe90618fe0c0e01260282432f58228
+:105e3000e9126024d0e0f00aeac3941040e2900432
+:105e4000d3e0f85404600d8e828f83a3e060057563
+:105e500021048038852582852683e0a2e24005e87a
+:105e6000540260258e828f83e0fa9004d0e075f0b2
+:105e700005a4f8a9f0740e28f8740a39f9e82af58f
+:105e800082e91269eaf52180037521008532828555
+:105e90003383e0c0e012606bd0e00592f0e5217042
+:105ea000047a0080027a0112609685848285858357
+:105eb000f0a3e9f0852582852683e0fa1260b170af
+:105ec00004eac2e0fa05929004d3e054026004eac6
+:105ed000d2e2fa8e828f83a3a3a3a3a3e0fd8e82d6
+:105ee0008f83a3a3a3a3e0fceaf9aa23ab2412198e
+:105ef000430592900361e0f582a3e0f5830592a348
+:105f0000a882a9839004d2e0fa853282853383e0a7
+:105f1000c39a500a12605a74060592026010125910
+:105f200006e521701105929004d3e054026023121b
+:105f3000605a740380e3740465217016752310752c
+:105f40002400059278231227607cd57d04121f015e
+:105f500080157523107524005392fe782312276054
+:105f60007c007d00121f07740212249c900363e0e2
+:105f7000fee521700302600b14602d14600c1460a8
+:105f80000914700302600b0260111260377407f08d
+:105f90000592900363e0f9121cdf900363e06e60ea
+:105fa00070eef91214278069790474011224efaaa3
+:105fb00082ab83121a0f74011224ef782512228506
+:105fc000900a2778211222857825792112205f7482
+:105fd000011224ef78211222a7752104752200787e
+:105fe0002112276074031224ef1260c812249c74db
+:105ff000011224ef1222b6900363e0f9121ce5901f
+:106000000363e06e6005eef912142712603774091d
+:10601000f07405026b0bf00592900489e0540122a4
+:10602000f582e5851269f322eaf8900361e028f829
+:10603000a3e03400f9e82212686522126865a3a380
+:106040002279025392fe900361e02465126050228f
+:10605000faa3e03400fb121a0f2288828983740ca1
+:10606000f0900361e0245212611822900361e02451
+:106070006b12611822e0f912189b126112e92212c8
+:10608000189b900361e02464126118e90592f08e78
+:10609000828f830592220592900361e0246c126145
+:1060a00018858482858583e054fef8a3e0f9e84ae8
+:1060b00022126743f422f01267572410f582e91286
+:1060c00069f3e0a2e0e43322ac82ad83900361e0a7
+:1060d0002453faa3e03400fb121f0174022274f768
+:1060e00012251874fe1224b612274c900361e02486
+:1060f00064126105e40592f00592126037e4f01233
+:106100001937026a4d126118e40592f00592126186
+:106110001222900361e02463f584a3e03400f58546
+:106120002274f712251874fe1224b612274c8a84a2
+:106130008b85e9fe1218dd900363e0ffeefa12731f
+:106140008a6f6005eff9121427858482858583a301
+:10615000a3aa82ab837405126ae7a3a3a3a3a882b0
+:10616000a983f08a828b83e004f0ee88828983a37e
+:10617000f0026a4274f712251874fe1224b6122730
+:106180004c74ea1224869004d27407f09004d1e48f
+:10619000f09004d074031265561218598532848524
+:1061a0003385900a0874061222dbf521e521c333fa
+:1061b000f8e433f9853282853383e58228f582e578
+:1061c0008339f583e0fea3e0ff79007c007d00eedb
+:1061d000faeffb121859e9f47020791074061224b2
+:1061e000efaa82ab831217bd791074061224efacac
+:1061f00082ad83eefaeffb1218410521e521c3942d
+:106200000340a9741612249c026a4d74f2122518d8
+:1062100074fe1224b612274c74f41224868532823e
+:10622000853383eaf0a3ebf0e9fe8c238d24900301
+:1062300063f075f075a4f8a9f0900365e028f8a361
+:10624000e039f9900361e8f0a3e9f012687b740b80
+:10625000686005740668700d059212689eeef9126a
+:10626000176302639cee75f0e4a4f521e5f0f522d6
+:106270000592900485e0a2e0400302637d7525024b
+:10628000752600782512276074021224efac82adc7
+:106290008374041224ef126d6912249c752508780a
+:1062a00025122760ac23ad2474061224ef126d6909
+:1062b00012249c7c0a74021224efaa82ab83798692
+:1062c0001264a670057a0002639ea3a3e0c0e012e8
+:1062d0005cebd0e00592f0791074021224efac82ee
+:1062e000ad837a067b00121859ac23ad24740212d8
+:1062f00024ef126c4d853282853383e068f8a3e089
+:1063000069f90592900361e02465f582a3e01260cb
+:1063100024e80592f0a3e9f0791074021224efac9e
+:1063200082ad837a057b001218591263bb247ef577
+:1063300023e9126854122760e4f523f52478231228
+:106340002760126c5dfca3e0fd74061224efaa82a4
+:10635000ab831218b3740412249c126c8812276049
+:106360007c007d001263bb2af8e93400f9e8247e42
+:10637000fae93400fb125cc412249c801f7910904f
+:106380000453e02521faa3e03522fbea247efceb4e
+:106390003400fd12673ffb7a801218597a01eef93a
+:1063a00012172d740c12249c853282853383122798
+:1063b00054740212249c7f060225f0900453e025b9
+:1063c00021f8a3e03522f9e82274f412251874edbf
+:1063d000122486eafeebff75210075230175240067
+:1063e000e52178231224739004d1e055236072795b
+:1063f0001074031224efac82ad83ab217a831218a0
+:1064000059e9f4700779ff7413026cba85328285fa
+:1064100033838582238583247823122760ee240327
+:10642000fcef3400fd74051224efaa82ab8312182e
+:10643000bf740212249c752303752400782312274d
+:1064400060eefceffd74021224efaa82ab83121ef1
+:10645000fb740212249c8b24ea45247004a9218039
+:10646000a60521e521c39408509b0263da74f61255
+:106470002518e9701079817c061264a6601fa3a319
+:10648000e0f90259798a828b83a3a3a3a3a3e054e2
+:10649000c024c0600c24807004798280da79ff8087
+:1064a000e11218f580dc1218538a828b83e582454d
+:1064b000832274f712251874fe1224b612274c1288
+:1064c000676512549c241012602012739ce584248a
+:1064d00009fae5853400fb1218fb125ce31264f440
+:1064e000600612716f121859853282853383539278
+:1064f000fe026a530592126743f874ff682274f62d
+:10650000122518e9fe74ff6e70157c807df07a808c
+:106510007b0012185f9004d1e412655cfb802f753c
+:106520002101752200ee7821122473af219004d14d
+:10653000e05f70047900801b7c807dff7a80e9fb3e
+:1065400012185feff4f89004d1e058126556121853
+:1065500041790102597912655c7b0022f079017c56
+:10656000d17d047a0222c082c083e960047c01806c
+:10657000027c005392fe9004d3e054fefaa3e0fba9
+:10658000ea4c9004d3f0a3ebf0d083d08202111830
+:1065900074f7122518e960047c0180027c009004e5
+:1065a000d3e054fdfea3e0ffecc333fce433fdee87
+:1065b0004cfcef4dfd9004d3ecf0a3edf0ea940712
+:1065c00050047a078008eac3941140027a10ea90d6
+:1065d00004d2f0ebc3940540027b03eb9004d0f0af
+:1065e000026a5b74f6122518eaff121427e9700696
+:1065f0007a867b01801e12180bea4b70047a828027
+:10660000f17c01eff912191fe96005fa7b038004a0
+:106610007a007b0002597974f512251874fe122451
+:10662000b612274c74f61224868a218b22e9ffecdd
+:10663000fe12705c600812181179050267377b0042
+:1066400012674840010b12673ffa74ff6a7005ef4a
+:1066500060027b010592900361e0246c12715fa2dd
+:10666000e0401105929004d3e054026007ee60040c
+:106670007b0180125392fe9004d2e0f812606b0509
+:1066800092e0c39840ea5392fe900485e0a2e0ebca
+:10669000501ca2e040057900026737ef60051273d5
+:1066a0009980027900aa21ab2212197380e8a2e036
+:1066b000502f74ff6a702aef600512739980027977
+:1066c000007523107823122764752303782312277b
+:1066d000647d03aa21ab2212197f740212249c80cc
+:1066e00056790a853282853383ac82ad83eafb7aa0
+:1066f00084121859e9640a6020ef600512739980ca
+:1067000002790075231078231227647523037823f8
+:106710001227647d03eefc80ba853282853383ac18
+:1067200082ad83900363e0f9aa21ab22121769e9d5
+:1067300070030266967908740a12249c02555c1252
+:1067400067432212686ee022126757240ff582e930
+:106750001269f3e0a2e7220592126765e028f8a328
+:10676000e039f9e822900363e075f0e4a4f8a9f0b9
+:106770009004532274f412251874fe1224b61227c2
+:106780004c74fc122486853282853383eaf0a3ebb5
+:10679000f0a3ecf0a3edf0121427e970077a867be2
+:1067a0000102683112687b740368600e74076860c8
+:1067b0000974086860047a8180e5752304752400f3
+:1067c0000592782312276074021224ef1260c81217
+:1067d000249c12705c24fd600924fc602b14602c46
+:1067e000804b12684270047a8280b4900361e02486
+:1067f0001212685012276012688c12249c125cd608
+:10680000eefaef12685b80247409802012684260ff
+:10681000d6900361e0242212685012276090036131
+:10682000e0243212689212249c126880f07a007b75
+:1068300000740412249c8532828533835392fe02b5
+:106840006cb512180b8a238b24ae23af24ee4f2293
+:10685000f523a3e03400f524782322126861740440
+:1068600022fb1219491268692212686ea322900352
+:1068700061e0f584a3e0f585059222127060f822ac
+:106880001268abeefaef126861740a22900361e0bd
+:1068900024421268b112689e1218b9740222900341
+:1068a00061e02453faa3e03400fb22900361e0246a
+:1068b00022fca3e03400fd2274f7122518e97b07bf
+:1068c000fa79021219d9026a5b74f212251874fe61
+:1068d0001224b612274c8923e9900363f0fe75f069
+:1068e00075a4f521e5f0f52205929003651269f88b
+:1068f000900361e582f0a3e583f00592a3ea24fe0c
+:10690000601024fd60321470030269dc1460090217
+:1069100069e412192b0269e47401f07a0512175127
+:10692000a923121cf1900363e0652370030269e45c
+:10693000a9231214270269e41264f670030269d7ce
+:10694000752501752600e8782512247305929004b8
+:10695000d1e045251265561218419003651263beb9
+:106960002463f584e93400f585900485e0a2e00510
+:1069700092e0405254096401705dee75f0e4a4f5b4
+:1069800021e5f0f5229004531269f8e5822410f510
+:1069900084e5833400f585e0a2e040307a01790691
+:1069a000e5822409fce5833400fdeefbea4480fa2d
+:1069b0001218411263bb2410f582e91269eaa2e0c1
+:1069c000500e7804800ca2e040b0800b7a0280ce9a
+:1069d0007802126d8048f012198b8008e024f3c30e
+:1069e000940a40f30263a8f582eb1269f3e022f502
+:1069f00082a3e03400f58322e02521f582a3e0356f
+:106a000022f58322c082c0837b075392fe900363ea
+:106a1000e0fa79021219d902658974f712251874ff
+:106a2000fe1224b612274c05929009951227737b0b
+:106a3000070592900363e0fa79021219df740402e9
+:106a400062057c067d00aa84ab8512160d85328214
+:106a5000853383122754740212249c7f010225f08f
+:106a600074f012251874fe1224b612274c8a278b54
+:106a70002889218c258d22126af37402126fd98520
+:106a80008482858583a3a3f074055521858482853e
+:106a90008583a3a3a3126ae77410f0e9a2e050046f
+:106aa000ae2580027e00ee858482858583a3a3a324
+:106ab000a3a3f0e9a2e05004af2280027f00126f8e
+:106ac000b6122760ac84ad85900361e0240b1260a0
+:106ad000d212249c7c067d00aa27ab2812160d85b5
+:106ae00032828533838030126aeb22126c45a3a375
+:106af000a3a3228a828b83a3a37405f08a848b8547
+:106b00000592a3a3a3a3a3a3a3a32212249c85322b
+:106b1000828533835392fe122754740212249c7f81
+:106b2000080225f074f612251874fe1224b61227f6
+:106b30004c126b4d740302594b74f612251874fef7
+:106b40001224b612274c126b4d1402594b8a848bb7
+:106b500085858482858583a3a3a882a98374051271
+:106b60006aeba3a3a3a3aa82ab832274f412251811
+:106b700074fe1224b612274c74f01224868a218bdc
+:106b8000227908900361e024321260507910853236
+:106b900082853383ac82ad837a067b00121859124a
+:106ba0006c77853282853383126c4d126c5d68f888
+:106bb000a3e069f90592126d73e80592f0a3e9f07c
+:106bc000852184852285a3a37405f08521828522f1
+:106bd000830592a3a3a3a3a3a3a3a3ae82af83041d
+:106be000126c45126e857a057b001218598e828fc1
+:106bf00083a38582238583247823122760e4f523e9
+:106c0000f5247823122760126e9a1224efaa82ab21
+:106c1000831218b3740412249c126c881227607caf
+:106c2000007d00ee2af582ef126024a3aa82ab83d6
+:106c3000125cc412249c7c067d00aa21ab22121691
+:106c40000d74108067f085848285858322aa82abcb
+:106c5000831218ad8a238b24a823a92422126c61e5
+:106c600022900361e02465126c6b22f584a3e0346a
+:106c700000f5850592e022126c7b22900361e024ee
+:106c800032fca3e03400fd22126c96f52395e0f56a
+:106c9000240592782322900361e0246b126c6bf838
+:106ca0008882aa827410c39a22126cc612249c8510
+:106cb0003282853383122754740212249c7f04028b
+:106cc00025f0eefaeffb12132574022274f412255c
+:106cd0001874fe1224b612274ceafeebff8e848f46
+:106ce000850592a3a37405f08e828f830592a3a3da
+:106cf000a3a3a3a3a3a3aa82ab837407126c45e04a
+:106d0000240af08a828b83a3858221858322126dd7
+:106d1000730592e0f8a3e0f9852182852283e805d6
+:106d200092f0a3e9f07523087524007823122760f8
+:106d3000126c77ea24030a0a0aeb3400fb126d6d29
+:106d400012249c1264f6600d790aac21ad22e8fb96
+:106d50007a86121841126d7dd2e6f07c067d00ee37
+:106d6000faeffb12160d026cafaa82ab83121f0161
+:106d7000740222900361e02442126118225392feb1
+:106d8000900361e0246e126c672274f71225187468
+:106d9000fe1224b612274c126b4d7408126db5f01a
+:106da00079108a828b83a3ac82ad837a077b001231
+:106db0001859026a42f088828983e024102274f60e
+:106dc00012251874fe1224b612274c126e6974092b
+:106dd000f00592e02407f075210675220078211253
+:106de00027607c8b7d04e5842402fae5853400fb72
+:106df000126d6d12249c0592a3e4f07c06fdeefa60
+:106e0000effb02596874f612251874fe1224b612ac
+:106e1000274c74f0122486126e69740af0059212df
+:106e20006e857a077b001218590592a38584218507
+:106e3000852205927821122760752101752200783c
+:106e400021122760126e9a1224efaa82ab831218c5
+:106e5000b3740412249c7c067d00eefaeffb12163c
+:106e60000d741012249c02596beafeebff8e828f88
+:106e700083a3a37405f08e848f850592a3a3a3a397
+:106e8000a3a3a3a322e02410126e8c22f079108514
+:106e90003282853383ac82ad8322126c61fca3e025
+:106ea000fd74042274f712251874fe1224b61227fa
+:106eb0004ce9feecff8a828b83a3a3a882a98312ec
+:106ec0006af9858482858583740b0592f0888289ae
+:106ed00083e004f0ee60047c0180027c009004d327
+:106ee000e054026007ef6004780480027800ec4808
+:106ef0000592a3f07c067d00026a4a74f012251800
+:106f000074fe1224b612274c8a278b2889218c25df
+:106f10008d2274121224efe0f874131224efe0f9ba
+:106f2000126af37401126fd9fc858482858583a36c
+:106f3000a3f0e52160047d0180027d0085848285c7
+:106f40008583a3a3a3aa82ab83edf0e5256013ecb0
+:106f500070089004d0e0640360088a828b83e0d2da
+:106f6000e2f0e9858482858583a3a3a3a3f0e521cc
+:106f70006004ae2280027e00ee858482858583a334
+:106f8000a3a3a3a3f0e5216004e8ff80027f001221
+:106f90006fb6122760ac84ad85900361e0240412c3
+:106fa00060d212249c7c067d00aa27ab2812160d05
+:106fb000126fcd026adfef858482858583a3a3a348
+:106fc000a3a3a3f0752307752400782322900363fd
+:106fd000e0f912188f12193d22f00592e02406f014
+:106fe0009004d0e0858482858583a3f09004d3e06b
+:106ff0001313543f54012274f612251874fe122400
+:10700000b612274ce9ff740c1224efe0f9740d124c
+:1070100024efe0f812705c600712181179058024e3
+:10702000e8f52205927822122764e9f522782212e7
+:107030002764eff9121979740212249c12603774d4
+:1070400002f079000258fbeafeebff8e828f83a3e9
+:10705000a3a3a3a3a3a3a3a3ac82ad8312706022b6
+:10706000126869e02274f6122518e9fe12180bea7c
+:107070004b70047901802fee600e146010146012c2
+:107080001460141460168019121955801712195bb8
+:107090008012121961800d121967800812196d8013
+:1070a00003121811790002597974f612251874fe2a
+:1070b0001224b612274c12705cc3940d5034740d18
+:1070c000802f74ee28f97521017522007821122491
+:1070d000731271630592e05521601005929004854a
+:1070e000e0a2e04077121985e970715392fe1273a5
+:1070f00094f0059212687b7417686038e8c39412a4
+:1071000050c074f328fa75210175220078211224e9
+:10711000730592900361e0246312715f552160cb87
+:107120000592900485e0a2e05032eaf9121985e94f
+:10713000702a80b71264f4602012716f12184190a7
+:107140000363e0fe12673ffaeef9121ceb90036353
+:10715000e06e6005eef91214271218dd02596b1269
+:107160006c67220592900361e02464126118227911
+:10717000040592900361e0246b1268b1e8fb7a8702
+:107180002274f312251874fe1224b612274c8a2199
+:107190008b228a828b83127050fa74016a700aaa59
+:1071a00021ab221218110273748c828d830592a375
+:1071b000ae82af838c828d83e0f8146038146076e1
+:1071c00014700302724b1470030272701460431443
+:1071d00070030272821470030272821470030272ce
+:1071e000821470030272821470030272821470039c
+:1071f00002732e80aaea7010900485e0a2e0500885
+:10720000aa211218d70273747908aa211218e3026e
+:1072100073741218dd900363e0f5238e828f83e090
+:10722000fa90036312738a6523700302719fa92386
+:1072300012142702719f74026a70cd900485e0a237
+:10724000e040c5aa211218d102737474096a600a59
+:1072500074076a600574046a7008aa211218cb02c8
+:107260007374740c6a70a11260610592e0f9809adf
+:10727000740a6a600574056a708eaa211218c50224
+:107280007374eac3940d500302719f12673ff9743f
+:10729000ff69700302731e89257900ab25e824fa83
+:1072a000600e14601914605714602114605f8069c7
+:1072b00079100ceffd7a801218417901805b790a10
+:1072c0000ceffd7a841218417910804d8e828f83e5
+:1072d0000592e0700575230180037523027906eca1
+:1072e00024020c0ced3400fde5234480fa12184111
+:1072f0008e828f83e070047902801e7904801a796f
+:10730000100ceffd7a831218417908800c79100c6b
+:10731000effd7a851218417920126d7d49f0aa217e
+:10732000ab22121811127394f012198b804690043c
+:1073300085e0a2e0500302719f9004d3e0a2e0b385
+:10734000c0d08e828f83e0a2e092f01225051581d5
+:1073500082f0500a1260b17005790502720aea7073
+:10736000138e828f835392fee05404fc12739caa06
+:107370002112191f8532828533835392fe122754be
+:10738000740212249c7f050225f0e0f9121cf7908c
+:107390000363e02212706004229004d3e0a2e0e4d0
+:1073a00033f92274f6122518e9fe752101752200c1
+:1073b00078211224739004d1e05521700479008063
+:1073c0000f7904eafcebfdeefb7a8712185979017c
+:1073d00002597974f612251874fe1224b612274c3d
+:1073e00074f01224868a218b228a848b850592a3cd
+:1073f000a3a37903aa84ab85121a0f852182852263
+:1074000083a3a3a3a3a3e0543f4440126e8c7a0746
+:107410007b001218597821122760ac84ad85740264
+:107420001224efaa82ab831218bf740212249c02aa
+:107430006e6174f612251890039112749f90038e5a
+:10744000e054bffaa3e0fbe9a2e0e433f5217522a2
+:107450000074067821122473ac21ea4c90038ef05c
+:10746000a3eb1277c38008122754740212249c7f66
+:10747000020225f0c082c0835392fe90038ee03357
+:10748000335401f9d083d082021118c082c08353d3
+:1074900092fe90039512749fe9a31277c380e5eae8
+:1074a000f0a3ebf0a3ecf0a3edf02274f712251893
+:1074b000e9feea24fc602b24fd7034ee900363f0b7
+:1074c00075f075a4f8a9f0900365e028f8a3e039f9
+:1074d000f9900361e8f0a3e9f07a0079001214c38f
+:1074e000800d90038ce4f090038bf090038df07f7f
+:1074f000010225f074f712251874ff1224869003f8
+:107500008de4f07c8a7d097a677b0312163775213a
+:107510000078211227647c327d007a4b7b00900337
+:107520008ee012795d12249c790185328285338345
+:10753000ac82ad837a047b00121859e9f46007909d
+:10754000038ee04480f0740112249c80a274f21235
+:10755000251874fe1224b612274c8a218b228a82a7
+:107560008b83a3a3ae82af83e4f08a848b850592dc
+:10757000a3a3a3a3740212768614f0858482858562
+:1075800083a3a3e9146005146006800874058006cf
+:10759000740680027404127691f8ea28f584eb12de
+:1075a000766e79011276797a077b2a1215e9e960fd
+:1075b0000a7402127684740a1276918e828f83e0a6
+:1075c000f8e52128f584e52212766e7904127679a1
+:1075d0007a047b2a1215e9e9600a7405127684742c
+:1075e00012127691aa21ab2212155f852182852283
+:1075f00083a3a3a3a38582258583268e828f83e020
+:10760000f9aa25ab261216c18e828f83e4f085215c
+:10761000848522850592a3a3a3a3791d1276797a86
+:10762000007b2a1215e9e9f8858482858583a3c346
+:10763000941d500a7401280592f074098007741e85
+:107640000592f074080592127691f96007aa25abad
+:10765000261216c7aa21ab22121811853282853351
+:1076600083122754740212249c7f060225f03400f2
+:10767000f5850592a3a3a3a322e5842402fce58556
+:107680003400fd220592f08584828585830592a3ce
+:1076900022f00592e004f88e828f830592e028f0b4
+:1076a0002274f012251874fe1224b612274c74f7b7
+:1076b000122486e9853282853383f074011224ef27
+:1076c000ecf0a3edf08a848b85741b1224efe0f5b7
+:1076d00025a3e0f526741d1224efe0f523a3e0f5c1
+:1076e00024741f1224efe0f521a3e0f52274211287
+:1076f00024efe0fea3e0ff121a33e970077a897bda
+:10770000010277ab90038de0f8c3940440047a81c2
+:1077100080ede8600312149f90038ee0a2e0501801
+:1077200074031224efaa82ab8312199d74031224ee
+:10773000efaa82ab831216d3e58445856006aa843e
+:10774000ab8580047a007b008e278f28782712274c
+:10775000607821122760782312276078251227602d
+:1077600090038ee05401f5217821122764740a12e7
+:1077700024efe0fca3e0fd74091224efe0f91216f7
+:107780009d740912249ce96005fa7b02801d740136
+:107790001224efe0f584a3e0f5850592e0059290d0
+:1077a0000390f090038d74071277c3740912249c20
+:1077b000853282853383122754740212249c7f08f9
+:1077c0000225f0f07a007b002274f012251874ff75
+:1077d000122486e9853282853383f08a278b288cb0
+:1077e000238d2474111224efe0f521a3e0f5227417
+:1077f000131224efe0fea3e0ff121427e970067acb
+:10780000867b018061900485e0a2e0402b8e258f6d
+:107810002678251227607821122760ac23ad24aa90
+:1078200027ab28900363e0f912175d740412249cbf
+:10783000e9602ffa7b02802e12180bea4b70047a53
+:107840008280be8e258f2678251227607821122708
+:10785000607823122760ac27ad2812161f74061219
+:10786000249c7a007b0074010277bb74f712251800
+:10787000eafe121427e970067a867b01800eeefa82
+:10788000900363e0f91217517a007b000274ef74e1
+:10789000f612251890038de014600a146007146036
+:1078a0000424fc70267b00a3e0c3135401fa790082
+:1078b0001216b5e9600ffa7b024402700590038d41
+:1078c000e4f002746f7a007b0080f27a817b0180a1
+:1078d000f174f412251874fa1224868921121a33cd
+:1078e000e970067a897b01806a90038de060047af2
+:1078f0008180f2a3e0a2e05003127be790038ee0c8
+:10790000fe5401f5227822122764900391e0fca333
+:10791000e0fda3e0faa3e0fbee12795d12249c9057
+:10792000038ee0f8c4540f5401fbe8c3135401fa6a
+:1079300079011216b5e96005fa7b028016852123cc
+:10794000748e2523f58274093400f583e090038d4d
+:107950001277c3740612249c7f040225f0c413130b
+:1079600054035401f912174b74012274f6122518ae
+:10797000e9fbc39402501590038ee0547f1279f610
+:1079800074077821122473a8211279e8eac39402bb
+:10799000501990038ee054fef8a3e0f9eaa2e0e467
+:1079a00033fce84c90038ef0a3e9f002746f74f698
+:1079b000122518e9fe90038ee054e11279f6740462
+:1079c0007821122473a821ec48fceea2e0e43333c2
+:1079d000f8ec48fc8a2174027821122473e52154c2
+:1079e0000cf81279e802746fec48f8edf990038e08
+:1079f000e8f0a3e9f022fca3e0fdeba2e0e433f51c
+:107a00002175220022c082c0835392fe90038de430
+:107a1000f090038cf002748474f612251874fe1230
+:107a200024b612274c74fa1224868a848b85e9fec8
+:107a3000121a33e970077a897b01027ae47f009099
+:107a4000038de060047a8180efa3e05480605f7969
+:107a500006853282853383ac82ad837a037b2a121a
+:107a600015e9e9604974051224efe0f974c0597012
+:107a70003d7800127af2700708e8c3940540f47468
+:107a800005687005743f5960257800127af2f47029
+:107a90000708e8c3940540f37e0185328485338569
+:107aa000853282853383aa82ab831216d30faa84d0
+:107ab000ab85eef91216a9eff52178211227641291
+:107ac0007c021227647521017821122764127c112f
+:107ad00012249c79011216afe96005fa7b0280043a
+:107ae0007a007b00740612249c85328285338302df
+:107af00074678821853282853383e5822521f5826a
+:107b0000e5833400f583e02274f512251874fe1223
+:107b100024b612274c74f6122486e9feeaff121ae4
+:107b200033e970077a897b01027bcf74061224f94e
+:107b300090098674041222db90038ee05480600862
+:107b4000127be77523018003752300ee7014ef703c
+:107b50001190038be4f0a3f0f91216af7a007b00ca
+:107b6000806d90038be07004a3e06005790012162d
+:107b7000afee14600614600314701012180bea4b79
+:107b800070047a8280a0eef9121487e523f521783b
+:107b900021122764127c021227648f217408122498
+:107ba000efe5822521f584e5833400f58505921201
+:107bb000277f0592127c1112249c79011216afe9dd
+:107bc000700aee90038bf0efa3f08090fa7b0274c2
+:107bd0000a12249c85328285338312275474021240
+:107be000249c7f030225f0853282853383aa82abf1
+:107bf0008312199d853282853383aa82ab83121644
+:107c0000d32290038ee01313543f5403f5217821bf
+:107c100022900399e0f9900397e0fca3e0fd900324
+:107c200095e0faa3e0fb1216a374032274f6122562
+:107c30001874fe1224b612274c78008003e928f845
+:107c40008a828b835392fea3a3e0f9e8c39950364e
+:107c50008821ea2521f582eb3400f583858284852d
+:107c600083850592a3a3a3a3e0f9601ac3942150ce
+:107c700015858284858385a3a3a3a3a3e0640170f3
+:107c8000bc74016970047900800a0592a3a3a3a3c0
+:107c9000a3a3e0f98532828533835392fe02746791
+:107ca00074f012251874fe1224b612274ceafeeb6b
+:107cb000ff8c278d288e828f83a3a3a385822185a5
+:107cc0008322e0540f601c14600914601624fc60c9
+:107cd00012807990038be06401700890038ee05469
+:107ce000df80681214c9e9f890038de0146008146d
+:107cf000602d14605280e4a3e054dffaa3e0fbe8b7
+:107d0000a2e0e433f523752400740578231224736c
+:107d1000ea4523f8ebf990038ee8f0a3e9802c7490
+:107d2000035860057523018003752300752400a3a3
+:107d3000e054dffaa3e0fb74057823122473ea45cc
+:107d400023f8eb452480cea3e04420f090038ee09e
+:107d50005420606b852182852283e0a2e65004d204
+:107d6000f08002c2f0a2f0e433f5238e828f83a369
+:107d7000a3a3a3858225858326f9aa25ab261218fd
+:107d8000fb78251227608e848f850592a3a3122786
+:107d90007fe9f52405927824122764ab23ac27ad44
+:107da00028852182852283e0540ffaee2425f5826e
+:107db000ef3400f583e0f9121d2d740412249ceebb
+:107dc000faeffb1218110277b0c02189c3e5a4f5c0
+:107dd00021e5a5027f3174f612251879001219a346
+:107de0008a218b22ae21af2279301219a3eac39ed9
+:107df000faeb9ffb7f020225f074f012251874fe47
+:107e00001224b612274c74f812248674071224ef39
+:107e1000e4f0a2af33f8c2af75c300e594a2e2501c
+:107e200003759402e594a2e240fa439408e595c0f4
+:107e3000e074041224efd0e0f0e596c0e07405127f
+:107e400024efd0e0f0e597c0e074061224efd0e014
+:107e5000f0e5a2853282853383f0e5a3c0e07401aa
+:107e60001224efd0e0f0e5a4c0e074021224efd0b9
+:107e7000e0f0e5a5c0e074031224efd0e0f05394e5
+:107e8000f7e8a2e092af74041224ef74021224f90e
+:107e90000592e0f8a3e0f9eac398f521eb99f52201
+:107ea000e4f523f5247409782112217b900a2b78bc
+:107eb000251222857821792512205f0592782112da
+:107ec00021adc021c022c023c024853282853383e6
+:107ed000e0f525a3e0f526e4f527f52874047825d8
+:107ee00012217b900a2f7821122285782579211280
+:107ef000205fd024d023d022d021782179251221cf
+:107f0000d3900a3378211221ad900b2878211222c8
+:107f100013aa21ab22ac23ad24740812249c853211
+:107f200082853383122754740212249c7f08022511
+:107f3000f0fbaa21d0215392fe02111889c3eaf561
+:107f4000a4ebf5a575a60080edc082c083797712f9
+:107f500019c175c32275a22075a34e75a40075a51d
+:107f60000075a6017a007b0079001219b575a7008b
+:107f7000d083d082021118899c75a100c2c280b63c
+:107f8000c082c083121439e990036af079017c0041
+:107f90007dff7a697b03121433d083d082021118db
+:107fa00074f6122518e9ffe5c7fe90036ae0f5c7ed
+:107fb0008f217522007821122760121f017402128e
+:107fc000249c8ec77f020225f074f6122518906259
+:107fd00076e075210f752200c4540f5407782112e2
+:107fe0002473a821a9227a20fb1223f3e8f980d474
+:107ff000c082c083121ef5d083d08202111880fe89
+:1080000074f012251874fe1224b612274c74f01264
+:108010002486e5c7f52875c70375211075220078f9
+:10802000211227607cd77d0374021224efaa82ab51
+:10803000831291b612249c78211227607c007d0067
+:108040007ad77b0312821e12249c752100804f85f3
+:108050002182a882e875f075a4faabf0900365124e
+:1080600081902474f582eb129733a2e0502e7f00aa
+:108070008f82ac82e875f03ba4faabf09003cd128e
+:1080800081902c12a9fd12a52074d72cf5827403bf
+:108090001297334af00fefc3941040d40521128198
+:1080a0009d40ac752100852182a88274d728f58275
+:1080b000740312a520853282853383e58228f582f8
+:1080c000e5831297336af00521e521c3941040d669
+:1080d000752100852182ae827f00853282853383bf
+:1080e000e5822ef582e583129d38a3a3a3a38532f2
+:1080f00084853385e5842ef584e58512a5250592d2
+:10810000e048f52260768f27e522a2e0505b7523d8
+:10811000018f24e5277823122473a82374d72ef522
+:1081200082740312973358600479018002790074d5
+:10813000df2ef5827403129733586004e9d2e1f917
+:108140008e238f2474037823122473852725e52337
+:108150002525fae5243400fb74a02af58274f73b48
+:10816000f583e0fa7b00121d390527e522c313f5dc
+:1081700022e527c394085004e522708c0521e521ef
+:10818000c3940850030280d38528c77410029d5100
+:1081900012819422e02afaa3e03bfbea22900364d6
+:1081a000e0f8e521c3982274f6122518e975f03b32
+:1081b000a4faabf01213559003cd12a96fe5c7ffd7
+:1081c00075c70390f79e129e83e4c39af521741f2e
+:1081d0009bf52278211227607c007d0012821e12fe
+:1081e000249c8fc77c917d097a677b0312163779af
+:1081f000087ccf7d037a007b00121859e96408607f
+:108200001975210875220078211227607c007d00f5
+:108210007acf7b0312821e12249c028a31fb121f2a
+:108220000774022274f012251874fe1224b6122765
+:108230004c8a278b2812a5320592a385822185833b
+:1082400022129e83ea4b60158e828f83a3a3a3859f
+:108250008223858324c3e09aa3e09b50087901120e
+:1082600014e70283490592900995122773128bb384
+:1082700012249c8e828f83a3a3a3a3a3858225852a
+:1082800083268e828f83e014605d14607214603ade
+:1082900014600d14602b24fe7003028326028349b0
+:1082a000852384852485059212277b85218285225a
+:1082b0008305921283641213a9740212249c028310
+:1082c0005012835e1213a302835078251227608513
+:1082d0002384852485059212277b12835312139dd4
+:1082e000740412249c806978251227608523848574
+:1082f0002485059212277b12835312137380e17831
+:1083000025122760ee2417f584ef128a0e12277bc0
+:1083100085238485248512277b128353121361746d
+:108320000612249c802aee2417f582ef129733f56b
+:1083300023a3e0f524e523452460867823122760f3
+:1083400012835e1213790282b9aa27ab2812181180
+:10835000029d54ee2415f582ef12950ce0f985216b
+:1083600082852283129e77aa27ab282274021224c8
+:108370009c8532828533835392fe122754740212f5
+:10838000249c7f080225f074f612251874fe12242e
+:10839000b612274ceafeebff892112897bf584a3f4
+:1083a000e039f585e584242af582e5851297336066
+:1083b000220592e024fd600f24fc700674076521fd
+:1083c0007011752100800c740a652160f5740165d7
+:1083d0002160efe4439201f00592f0900363e0f531
+:1083e00022ac21eefaeffbe0f9121d03900363e0eb
+:1083f00065226005a922121427028a2374f6122529
+:1084000018e9ff8c218d22740a1224efe0fd9003fd
+:1084100063e0fe7821122760effc900363e0f9121d
+:108420001cb5740212249c900363e06e6005eef9a3
+:10843000121427028a3174f212251874fe1224b61f
+:1084400012274c8a258b268c218d22e9fe128a1454
+:108450001284ef900363e0ff858482858583a38582
+:1084600082238583247821122760eefd7c048523f6
+:108470008285248312858412249c900363e06f60bc
+:1084800005eff9121427e5842417f8e5853400f97f
+:108490008e2188828983e02521f0a3e03400f074e6
+:1084a000166e701788828983c3e09416a3e0940047
+:1084b0004009aa25ab261214e18019790085238290
+:1084c000852483129e831214e7e40592f0aa25ab5b
+:1084d000261218118532828533838022ea2409f816
+:1084e000eb3400f9853282853383e8f0a3e9f07b31
+:1084f00007128984228532828533835392fe1227a4
+:1085000054740212249c7f060225f074f41225187c
+:1085100074fe1224b612274c8a238b248c218d22c0
+:10852000e9fe1294717407687010eef9ac21ad2267
+:10853000aa23ab241214f3029a2e740a68059290af
+:1085400003637026e0ffeefcaa21ab22e0f9121cc7
+:10855000bb900363e06f6005eff9121427e4059206
+:10856000f0aa23ab2412181180cde0ff7821122746
+:1085700060eefd7c00858482858583a3128584124c
+:10858000249c80cd12b87c900363e0f9121cb57472
+:10859000022274f012251874fe1224b612274c74ad
+:1085a000fc12248612a9698532848533850592e000
+:1085b000240912a5a98582258583267b07059212a9
+:1085c00084f185328285338312a06f24faf5210568
+:1085d00092129d4674021224ef12af728525828595
+:1085e0002683a385822785832874021224ef1289ab
+:1085f0006f7e00804b12877fe5272402f523e52854
+:10860000128868122760852582852683e024fefd76
+:108610007c0385278285288312858412249c9003fd
+:1086200063e06f6005eff9121427852582852683a4
+:10863000e02efee0f8e52728f527e5283400f528a8
+:10864000eec3952140af8525828526835392fe1285
+:1086500081a0f895e0f9e52528f582e52639f5832e
+:1086600012867b74021224f9059212970c12af6fd6
+:10867000129e7d1214e17404029d51a3e02401f8be
+:10868000a3e03400f92274f012251874fe1224b607
+:1086900012274c74fe1224868a238b241284dc85d4
+:1086a0002382852483a3a3e024faf522128a148569
+:1086b0008427858528e527242af582e52812a5ad9b
+:1086c0007401f085328285338312a98b64017004b2
+:1086d0007e0280027e107521008010e06f6005ef41
+:1086e000f912142774022e2521f521e521c39522c4
+:1086f000504f12877fa82185328285338312b89a22
+:10870000eef5257825122764e5842403fce58534fd
+:1087100000fd0592a3e01289b0121ccd7401122451
+:108720009ce990036370b4e06f6005eff9121427c1
+:10873000852782852883e4f0aa23ab2412181180b0
+:108740003b852221e52124fef8e434fff98e21e85f
+:10875000c39521f8e99400f98532828533835392d9
+:10876000fe12a3c92401f8a3e03400f9852782850d
+:10877000288312af6faa23ab241214e1029d4f533a
+:1087800092fe900363e0ff2274f012251874fe122b
+:1087900024b612274c74fe1224868a278b28128452
+:1087a000dc852782852883a3a3e024fbf521128d95
+:1087b0009c05929003cd129721858225858326e51d
+:1087c00025242af582e5261295b17f00800de06e02
+:1087d0006005eef912142774042fffefc3952150a2
+:1087e00058eff88532848533850592e02812a5a9d3
+:1087f0008582848583850592900363e0fe7522025d
+:108800007822122764e5252417f523e526128868c7
+:1088100012276012899c12249ce990036370afe0d8
+:108820006e6005eef9121427852582852683e4f013
+:10883000aa27ab28121811802ca8218532828533f3
+:1088400083e028f8a3e012b82f24fef582e934ff74
+:10885000f58312867c85258285268312af71aa272f
+:10886000ab281214e1029d4f3400f52478232274c2
+:10887000f012251874fe1224b612274c74fe12242e
+:10888000868a278b288a828b83a3a3a3a3a3a3a36f
+:10889000a3a38582218583228a828b83a3a3e024dc
+:1088a000faf52512897bf8a3e039f9853282853300
+:1088b0008312af7285328285338312896f7f008085
+:1088c00012e06e6005eef91214278521828522835d
+:1088d000e02fffefc39525505c8f23e5212523fa78
+:1088e000e5223400fb8a828b835392fea385828427
+:1088f000858385900363e0fe852182852283e024c1
+:10890000fcf5237823122764ea2405f523eb12886b
+:108910006812276012899c12249ce990036370a15d
+:10892000e06e6005eef912142712afb6aa27ab2845
+:1089300012181180378521828522835392fee0f838
+:10894000e525c398f895e0f9e52128f582e5223977
+:10895000f583a3a312867b85328285338312a99483
+:10896000e8f0a3e9f0aa27ab281214e1029d4fe03a
+:10897000242a12b89c74010592f02212898212896d
+:108980008f227b07900363e0fa79011219d9221232
+:10899000899322128da49003cde0282285848285bc
+:1089a0008583a3a31299c31289b0121cc774032232
+:1089b000faa3e0fb0592900363e0f92274f6122516
+:1089c0001874fe1224b612274c128b0e70067a868b
+:1089d0007b01802f128a14e5842416f584e5851224
+:1089e0008a0ee0a2e040047a8180e5128d8770064d
+:1089f0007a827b01800d0592e0c2e0f01213b57a15
+:108a0000007b008532828533835392fe801b12b82f
+:108a1000a0059222128a1822128993f584a3e039c4
+:108a2000f5852285328285338312275474021224fd
+:108a30009c7f020225f074f012251874fe1224b6f1
+:108a400012274c8a258b268c278d2874121224ef2e
+:108a5000e0f521128b0e70067a867b01803e128d26
+:108a60009260047a8180f3128d8770067a827b018e
+:108a7000802ae521c394145004af2180027f14851d
+:108a800027218528227821122760eff9ac25ad2611
+:108a9000121397740212249c7a007b000283717473
+:108aa000f012251874fe1224b612274c8a278b2840
+:108ab000ec128b0d70067a867b01804b128d9260d2
+:108ac000047a8180f3efa2e04005c3940450047a55
+:108ad0008080e5128ff670047a8280dcefc39416f2
+:108ae0005004effe80027e16740a128c1012277357
+:108af000128bb312249ceef9ac27ad28aa25ab2625
+:108b000012138b7a007b00028371eafeebff1214d2
+:108b100027e92274f012251874fe1224b612274c8d
+:108b200074fe1224868a238b24ecfeedff74161249
+:108b300024ef128cb870067a867b018073128d92b6
+:108b400060047a8180f3e523452470047a8080e90b
+:108b500012b8dd70047a8280e0e522c394125005d9
+:108b6000852221800375211274080592f0a3e52364
+:108b7000f0a3e524f0900995122773128bb3122409
+:108b80009c74141224f9059212277b8e278f2805d6
+:108b9000927827122760a921ac23ad2474041224f3
+:108ba000ef129e8312137f740412249c7a007b00c0
+:108bb00002836c7b070592900363e0fa7901121936
+:108bc000df74042274f412251874fe1224b61227de
+:108bd0004c8a22128b0e70067a867b01802f128db2
+:108be0009260047a8180f3129bf470067a827b0192
+:108bf000801b7409128c10122773128bb312249ce1
+:108c0000a922eefaeffb1213857a007b00028d7128
+:108c10000592f0a3e4f0a3f09009952274f01225d8
+:108c20001874fe1224b612274c74fe122486853264
+:108c300082853383ecf0a3edf0eafeebff741412af
+:108c400024ef128cb870067a867b018068128d92b0
+:108c500060047a8180f3ee4f70047a8080eb121802
+:108c60000b8a278b28ea452870047a8280dbe5226c
+:108c7000c3941450058522218003752114740605c0
+:108c800092f0a3eef0a3eff0900995122773128be8
+:108c9000b312249c853284853385059212277ba9e3
+:108ca00021eefceffdaa27ab2812139174021224c7
+:108cb0009c7a007b0002836ce0f522121427e922e3
+:108cc00074f412251874fe1224b612274c128b0a63
+:108cd00070067a867b018044128d9260047a8180ce
+:108ce000f3ee4f70047a8080eb128d8770047a82e5
+:108cf00080e27407128d8deef0a3eff085848285fb
+:108d00008583a3a3a3eef0a3eff0e5842417f582f7
+:108d1000e58512a5ade4f0a3f0128f2f805374f413
+:108d200012251874fe1224b612274c128b0a7006f4
+:108d30007a867b01803b128d9260047a8180f3ee0b
+:108d40004f70047a8080eb128d8770047a8280e203
+:108d50007405128d8da3a3a882a983eef0a3eff072
+:108d60008882898312b8d70592a3e8f0a3e9128d0f
+:108d7000fe8532828533835392fe12275474021289
+:108d8000249c7f040225f012180bea4b22128f2339
+:108d9000a322128d9c9003cd12986b22128da022db
+:108da000128da422900363e075f03ba4f8a9f02291
+:108db00074f212251874fe1224b612274c8a218be5
+:108dc00022ecfeed128b0d70067a867b01802c1250
+:108dd0008d9260047a8180f3128d8770067a827b8f
+:108de0000180187404128d8de521f0a3e522f005b1
+:108df00092a3a3a3eef0a3ef128dfe0284f5f0126e
+:108e000014e17a007b002274f012251874fe1224fb
+:108e1000b612274c8a218b228c278d28741212249b
+:108e2000ef12950074161224efe0fe128b0e700df7
+:108e3000aa21ab221218117a867b018058128d92da
+:108e4000600baa21ab221218117a8180ec74026e99
+:108e5000601274106e600daa21ab221218117a8074
+:108e60007b0180317403f08e2375240005927823f2
+:108e700012276074161224ef1291a912249ce58423
+:108e80002415128e98858482858583128f37aa21b6
+:108e9000ab22128f2f029d54f582e58512a5b1ee0b
+:108ea000f02274f012251874fe1224b612274c8a90
+:108eb000278b288c258d2674141224efe0128b0d3d
+:108ec00070067a867b018058128d9260047a8180c8
+:108ed000f374026f600974106f60047a8080e51289
+:108ee000180b8a238b24ea452470047a8280d58f5c
+:108ef00021752200782112276074141224ef129138
+:108f0000a912249ce5842415f582e58512a5adef10
+:108f1000f07401128f23128f37aa23ab24128f2fe4
+:108f20000283710592f085848285858305922212e1
+:108f300014e17a007b0022a3e527f0a3e528f005e1
+:108f400092a3a3a3e525f0a3e526f02274f0122551
+:108f50001874fe1224b612274c74fe12248612a92d
+:108f6000698c278d2874141224efe0fea3e0ff74af
+:108f7000181224ef128cb870067a867b0180741266
+:108f80008d9260047a8180f3e522c3941140047ac3
+:108f90008080e8128ff670047a8280dfe5842417df
+:108fa000128e98a3eff074020592f0e5842415f573
+:108fb00082e5851297250592f0f523752400782324
+:108fc00012276074181224ef1291a912249c853282
+:108fd0008285338312b8d785848285858312af71e9
+:108fe0000592a3a3a3e527f0a3e528f0aa25ab26c5
+:108ff000128f2f02836c12180b8a258b26ea4526c6
+:109000002274f112251874fe1224b612274c74fc37
+:1090100012248674021224ef12a96fe5c7f5277592
+:10902000c70374021224f9059212941585328485bf
+:109030003385e5820592f0a3e583f085328285339e
+:1090400083059212a98bfaf874021224ef12919bf5
+:10905000059290f79de0f522ff741dc39af5268ec8
+:10906000258e2180080525efc313ff052190f79c6d
+:10907000e0fce521c39c5042eec39526503c12b85b
+:10908000d412916f70e5efa2e050dca3a3a3a3a3d9
+:10909000e0640270d07523027524007823122760e3
+:1090a000129e6c8e23e584252312b82c2402fae943
+:1090b0001291b312249c0e0e80adee601385848253
+:1090c000858583a3ef600474028002740312918487
+:1090d000e52570030291678532828533835392fec2
+:1090e00012a98bf8741dc398fa95e0fbc3ea94109b
+:1090f000eb9400a2d265d033406d74021224ef12bb
+:10910000919baf228e21059212b8d48006efc31333
+:10911000ff0521e521c39c5037e526603312916f8e
+:1091200070efefa2e050e6a3a3a3a3a3e064107046
+:10913000dc7521108e227821122760129e6ce58446
+:1091400024021291b012249c7e1074ff2525600b1e
+:10915000858482858583a3740680098584828585bc
+:1091600083a374071291848527c7740402b0dae5db
+:109170002175f006a4faabf0e82afae93bfb8a82f3
+:109180008b83e022f074012ef80592f0088532827c
+:10919000853383059212a98f28f022059212b89a7e
+:1091a0000592a3a3a3a37e0022129e77e584240543
+:1091b000fae5853400fb121f0174022274f11225b6
+:1091c0001874fe1224b612274c74f91224868532c4
+:1091d00082853383ecf0a3edf08a238b24892175fb
+:1091e000220012afb68a828b830592a3a3a3a3aefb
+:1091f00082af8374026521600deefaeffb121a153f
+:10920000e9600375210274181224ef1299b27410e8
+:109210000592f074026521600579000294038e8244
+:109220008f830592e07004a3e0642870047e0080c0
+:10923000248e828f83e064017004a3e064287004ac
+:109240007e0180118e828f83e064037004a3e0644a
+:109250002870c67e0274181224ef1299b2740a059f
+:1092600092f0e5c7c0e074041224efd0e00592f05c
+:1092700075c70312afb6059290f79ce0f526f5820c
+:10928000a88285238285248312942550030293f6b5
+:109290008523848524850592a3a38584828585837f
+:1092a000059212942550048825800985848285853d
+:1092b00083e0f525852382852483e014ff8014ef65
+:1092c000f874021224f9439201129415e8f0a3e411
+:1092d000f01f0fefc3952540030293e75392fe1250
+:1092e000b8d474051224ef12af728f82a882e87589
+:1092f000f006a4faabf074051224f90592e02af501
+:1093000082a3e03bf583ac82ad830592e06e70c230
+:10931000852282aa828532848533850592e02a12cd
+:1093200099ad74021224f9e5820592f0a3e5831247
+:109330009408e02404f52785328285338312a98bb3
+:10934000f5236009e527652360030293e78527235a
+:10935000ea252312af8240030293e7e527f0eaf5fe
+:1093600022e8240108e43400f974021224ef059283
+:109370001299b2e80592f0a3e9129408129c021225
+:1093800027608c828d83a3a3a312b8a51224efe0db
+:109390002404faa3e01291b312249c8028ef75f004
+:1093a00006a4f8a9f074051224ef5392fe129867f0
+:1093b000f870030292bf74016870030292bfe86ef6
+:1093c00070030292bf0fefc3952640d1e5266f6070
+:1093d000030292bf74021224ef5392fe12b8be74bd
+:1093e000fff0a3f00292d2e522600b74181224ef72
+:1093f0005392fe12afbc74041224ef5392fee0f5b8
+:10940000c7a922740702b0daf08c828d830592a37b
+:10941000a3a3a3a32212941922e0f582a3e0f5836b
+:109420000592a3a32212b87cc3e89ae49b2274f7a6
+:1094300012251874fe1224b612274c129471740669
+:1094400068600a74086860057409687021e4129500
+:10945000a87c000592a3e0faa3e0fb0592e0f912d4
+:109460001caf900363e06e6005eef912142702a4ae
+:1094700057128a181289820592e0f82274f0122598
+:109480001874fe1224b612274c8a278b28ecffeda5
+:10949000fe74121224ef129500ec24010ce4340047
+:1094a000fd1213678a848b85e5254526701bef1214
+:1094b00094f2fec3941540027e147d00eefceff999
+:1094c000aa84ab851215e3801ceec3941540027e7e
+:1094d000148e217522007821122760ac25ad26124a
+:1094e00091b612249ceef9aa27ab2812136d029da7
+:1094f00054eef91215cbe9220592e02433129508b7
+:10950000e0f525a3e0f52622f582a3e03400f583fb
+:1095100005922285328285338302a46074f7122576
+:109520001874fe1224b612274c8a848b851295601b
+:1095300060257b081284f1129560f8e4f0900363d3
+:10954000e0fe740128fae0f9121cc1900363e06e9a
+:109550006005eef9121427aa84ab8512181180b3a6
+:10956000128d9c129c12241912aa292274f712251a
+:109570001874fe1224b612274c128d92640b6025cb
+:10958000e5842419f582e5851295b1128a14740bcd
+:1095900005921295a8f9121cfd900363e06e600518
+:1095a000eef912142702a457f00592900363e0fe2f
+:1095b0002212a5b174010592f02274f112251874db
+:1095c000fe1224b612274c74fc1224867402122454
+:1095d000ef12a96f89228c271297140592a3a3a3d7
+:1095e000a882a983888489850592129704fa8882c3
+:1095f000898312a98bf52675210074075af8740126
+:10960000b800028004c333d8fcf525ea13131354c1
+:109610001ffe804005929009951227737b08128bdc
+:10962000b512249c129c0b2419f582e9129725f09f
+:1096300074021224f9059212277bad27ac22791d02
+:1096400074021224ef0592129e8312157174021295
+:10965000249c05215392fe12819d40030296f685bb
+:109660002182a882e875f075a4faabf09003651228
+:10967000974ce5842474f582e585129733a2e05077
+:10968000d1e8900363f0900361e584f0a3e585f0f1
+:10969000e526a2e4502fe8129737f8eb39f9e824d1
+:1096a0001a1297305525601d128d87604974021279
+:1096b00024f9059212277bad27ac22791b12157174
+:1096c000740212249ce526a2e55087900363e01201
+:1096d0009737faeb39fbea2422f582eb12973355e0
+:1096e000257003029652129563600302965212b8d7
+:1096f000dd6003029614740412249c853282853343
+:109700008302b0e612970c0592a3e022e0f582a353
+:10971000e0f58322e975f006a4f8a9f0059290f728
+:109720009612a5422212a5b1e52222e4f0e82436e1
+:10973000f582e912aa2c2275f03ba4f8a9f0900357
+:10974000cde02efaa3e03400fbea28221297502243
+:10975000e02af584a3e03bf5852274f01225187405
+:10976000fe1224b612274c89218c278d28741212e0
+:1097700024efe0fea3e0ff752200e5c7f52475c7de
+:1097800003ea14f52590f79ce0f8e525c398400b13
+:109790007522018e828f83e4f08046e525129e8734
+:1097a00070098524c77a887b018046a9251294f325
+:1097b0008e828f83f0c39521500575220780d8a82b
+:1097c00021e0c398f0f8c3942050048823800375e7
+:1097d0002320e523f0ad21fca925aa27ab281215eb
+:1097e000e38524c7e5226005fa7b0480047a007bc8
+:1097f0000002837174f612251874fe1224b6122723
+:109800004ceaf8ecfaedfb740c1224ef129e73751f
+:109810002100e5c7fe75c703e814f990f79ce0f84e
+:10982000e9c398400b7521018c828d83e4f080237d
+:10983000e975f006a4f8a9f090f796129867f9a2d6
+:10984000e750047410800274028c828d830592f0bc
+:10985000121a218ec7e521a2e05005fa7b0480048c
+:109860007a007b00028a2312986b2212a3d3e02293
+:1098700074f012251874fe1224b612274c74fe12ce
+:109880002486853282853383ecf0a3edf08925743c
+:10989000141224efe0f5217e007f00e5c7f5267560
+:1098a000c703ea14f52290f79ce0c3952250030207
+:1098b00099a0e5221297158582278583280592a312
+:1098c000a3e0fc24fa600a14600724fb60030299f9
+:1098d0009e740c6c700302998c85278485288505fd
+:1098e00092a3a3a312970c852584aa8485828485dc
+:1098f0008385a3a3a3a3e0f8852123ea2523f523e9
+:10990000e43400f524e89523e49524c365d033506e
+:10991000057e0d0299a10592a3a385828485838586
+:10992000852182a882790074066c88238924782393
+:10993000701612276074021224ef1299befaa3e087
+:109940001291b312249c803412276074021224ef07
+:109950001299be1299adaa82ab831291b612249cc1
+:10996000e5212525c0e08527848528850592a3a3c8
+:10997000a31294151299b2d0e00592f08527828542
+:1099800028835392fea3a3e0640c7005129e7d8091
+:10999000047a007b00ac21a92212158380050e0eeb
+:1099a0000e7f048526c7eefaeffb02836c12950842
+:1099b000a3221299b622e0f584a3e0f5852212993c
+:1099c000c32a22e0fca3e0fd0592e02274f41225f4
+:1099d0001874fe1224b612274c8c848d85e9ff740e
+:1099e0000e1224efe0f522e5c7f52175c703ea144e
+:1099f000fe90f79ce0c39e50047901802ee5226022
+:109a0000047a0280027a80eef91215c5e9701ce42e
+:109a1000f523f5247823122760ad22effcaa84ab4e
+:109a200085eef91215dd740212249c8521c785325a
+:109a300082853383028d7a74f312251874fe122402
+:109a4000b612274c8a218b2212a345a3a3a3a3a35a
+:109a5000e0700a12b222607712181180f6e5c7fe94
+:109a600075c703e584242bf523e5853400f52485ab
+:109a7000238285248312b8f1605388828983a3a34b
+:109a8000a3a3a3a3a3a3a3aa82ab83e0ff8a848b8f
+:109a9000850592a3a312277b7d0188828983059285
+:109aa000a3a3e024f7fcea2404faeb3400fb74ffe0
+:109ab0002ff91215dd740212249ce9f525aa23abb7
+:109ac00024121631121811e525702e80a28ec7853a
+:109ad0002182852283a3a37405f0852182852283b8
+:109ae000a3a3a3a3a3a3a3a37419f07900aa21abf2
+:109af0002212136d802312181112b22270f8e5257c
+:109b0000f52378231227648f23ac237d007918aacc
+:109b100021ab22129d3212249c853282853383121e
+:109b20002754740212249c7f050225f074f4122538
+:109b30001874fe1224b612274c8a848b8585848281
+:109b4000858583a3a3a3a3a3a3a3a3a3ae82af836b
+:109b5000e5c7f52175c703e014f990f79ce0c399b8
+:109b6000501f7401f52178211227648e828f831291
+:109b70009e737916aa84ab85129d3212249c029a98
+:109b80002e7a021215c5e970db129bf48521c7708d
+:109b900003029ea2ac84ad85129c0b242bfae934ff
+:109ba00000fb121637858482858583a3a3858221d5
+:109bb000858322129c02122760e5842404fce5853b
+:109bc0003400fdee2404faef1291b312249c852197
+:109bd00082852283e08e828f83a3a312b826a3a35b
+:109be000a3a3a3a3a3a37417f07900eefaeffb12cb
+:109bf000136d808a12180b8a238b24ae23af24eeb8
+:109c00004f22e0f523752400782322129c0f2212a4
+:109c10008da09003cde028f8a3e039f9e82274f094
+:109c200012251874fe1224b612274c74fb122486d7
+:109c300074031224ef12a96f8925ecfeed129d45e5
+:109c400074011224ef12af72e5c7f52275c7038eb7
+:109c5000828f83a3a3e0f88823ee2523f582ef12f9
+:109c60009d38858227858328741bc398f521802819
+:109c7000e9c521c39521f5218e828f83a3a3e02519
+:109c800023f0e5272523f527e5283400f52874017e
+:109c90001224ef12afa504f074011224ef5392fec8
+:109ca00012afa5fac395255079e5216075853282fa
+:109cb0008533838582238583240592782312276048
+:109cc0008527238528247823122760a9217c007dfd
+:109cd00000eac333fae433fb74071224ef12a081c5
+:109ce000faa3e0fb1215b3740412249ce9f5238552
+:109cf0003282853383e07003029c70853284853321
+:109d000085059212277f74041224ef059212a98b05
+:109d1000fca3e0fd790eeefaeffb129d3212249cbb
+:109d2000800c8522c77900eefaeffb12136d7405e3
+:109d3000801f1213c1740122129d3c223400f5834e
+:109d4000a3a3a3a322ff12898ff8a3e039f92274f9
+:109d50000212249c85328285338302837a74f01246
+:109d6000251874fe1224b612274c8c218d22e9fe90
+:109d700074141224efe0f527a3e0f5287f00e5c76f
+:109d8000f52675c703ea14f52590f79ce0c39525e1
+:109d9000500c8527828528837401f0029e647a0125
+:109da000a9251215c5e9852782852883f06003025d
+:109db0009e64852582aa82ea129e8770700592129f
+:109dc0008a14a884a985e824351297307053741238
+:109dd0001224ef129e73e82438f582e912a5adec47
+:109de000f0a3edf0e8243af582e9128e9c9003632b
+:109df000e0ffeef5237823122764ac21ad22ea249c
+:109e0000010ae43400fb900363e0f9121cd37401ef
+:109e100012249c900363e06f6005eff91214278011
+:109e20007812972b852782852883029d9aa925126f
+:109e300094f3ffc39521e49522500b852782852852
+:109e4000837407f0801ee521cfc39fffeec39f50b0
+:109e500002eeffad21effca92574121224ef129e31
+:109e6000831215e38526c7eff9029d548a828b83fe
+:109e7000a3a3a3129e7722e0fca3e0fd22853282f9
+:109e800085338312b87c2275f006a4f8a9f090f708
+:109e90009612a3cea3e0640c227a017b0090039a71
+:109ea00080077a017b0090032e740802235774f117
+:109eb00012251874fe1224b612274c74f812248648
+:109ec00012a96974061224efecf0a3edf089277f44
+:109ed00000e5c7f52675c70390f79ce0f522f582eb
+:109ee000ac8285328285338312a079c3ec9ae49bdd
+:109ef000500302a06085328285338312a06df8a3df
+:109f0000e0f9c3ec98e49950048c218003e8f52132
+:109f1000ea14fe8532828533830592e02404f8a397
+:109f2000e03400f974041224ef12af7280138884b5
+:109f300089850592e0f8a3e0f9e80592f0a3e9f03d
+:109f40000eeec39521400302a06012b8d474021231
+:109f500024ef12af72ee75f006a4f8a9f0740212a5
+:109f600024ef129867f525a2e7500b12ad5d12247d
+:109f70007312ad80800312ad6bf585eaf52378236b
+:109f8000122764ac84ad85790274051224ef129e09
+:109f90008312ad5712249ce960a67a01eef91215de
+:109fa000c5e9709cac27853282853383e02406faac
+:109fb000a3e03400fbeef91215bfe96083eff874fb
+:109fc000061224f90592e02812a5a9a882a983ef18
+:109fd000c39412400302a06074042fff8e23e52374
+:109fe0002401fae43400fbea059212a9708017ee0e
+:109ff00075f006a4faabf074021224ef5392fe122d
+:10a00000a0816525601c0eeec3952240e2e5226e1c
+:10a010007010888289835392fea3a374fff0a30279
+:10a020009f3f1e74041224ef5392fe12a07988827f
+:10a0300089830592a3a3ea700374286b60177401e7
+:10a040006a700374286b600d74036a700374286b64
+:10a050006003029f2eee2401f8e412b82f029f3c09
+:10a060008526c7eff9740802b0da12a5b10592127d
+:10a07000a0732212a99ca3e02212a98ffaa3e0fbed
+:10a08000221297500592e02274f412251874fe12e1
+:10a0900024b612274ce9ff8a218b22ecfeef12979f
+:10a0a00015aa82ab830592a3a3e0fc8e82a88279d5
+:10a0b00000603814603514603214602f14605d1431
+:10a0c000700302a15814700302a1c514700302a208
+:10a0d0000014700302a23e14700302a2b5147003b0
+:10a0e00002a2f414700302a1c58004ec6e600302a6
+:10a0f000a30c882389247823122760ac21ad22ea9f
+:10a1000024030a0a0aeb12a30f12249c8b22ea45ad
+:10a1100022700479018002790002a30c8a828b8369
+:10a12000a3a3a3a3a3e06e70c68823892478231277
+:10a130002760ac21ad228a828b83a3a3a3129e83c6
+:10a14000121efb740212249c8b22ea4522700479b1
+:10a15000018002790002a30c8a828b83a3a3a3e06f
+:10a16000faa2e75004781080027802e86e600302d9
+:10a17000a30ceaa2e7501d547ff5238924740478c8
+:10a1800023122473059290f798e02523f582a3e02b
+:10a1900035248012c333f8e433f9059290f79ae03e
+:10a1a00028f582a3e039f583ac82ad83eef5230573
+:10a1b000927823122764eef9aa21ab2212ad57122e
+:10a1c000249c02a30c8a828b8312a32b6e60030251
+:10a1d000a30c8823892405927823122760ac21ad33
+:10a1e000228a828b8312afae121efb740212249c51
+:10a1f0008b22ea4522700479018002790002a30cc7
+:10a200008a828b8312a97b6e600302a30c88238948
+:10a210002405927823122760ac21ad228a828b8399
+:10a2200012a06f2401faa3e012a30f12249c8b2228
+:10a23000ea4522700479018002790002a30c7402bd
+:10a240006e600302a30c12a345aa82ab8312a3186b
+:10a25000b800028004c333d8fcc0e012a31f12b8b8
+:10a260002c241af582e912a5add0e0f8e05860047c
+:10a270007c0180027c008a828b8312a318b80002c2
+:10a280008004c333d8fcc0e012a31f2422f582e966
+:10a2900012a5add0e0f8e0586004780280027800a2
+:10a2a000852182852283ec48f8e0687002a3e07083
+:10a2b000597901805774026e70528a828b83a3a3ee
+:10a2c000a3a312a318b800028004c333d8fcc0e0d3
+:10a2d00012a9bd12a5add0e0f8e058600478018065
+:10a2e000027800852182852283e0687002a3e070f5
+:10a2f0001b09801874016e7013852182852283e00a
+:10a30000f52112146fe9652160a77900028d71347f
+:10a3100000fb121efb740222e05407f874012212a3
+:10a32000a3232212ac7ef8e5842822a3a3a3aa8249
+:10a33000ab8312a33622e02404f584a3e03400f5b5
+:10a34000850592e022128a188a828b83a3a3a3a395
+:10a350002274f712251874fe1224b612274ce975e0
+:10a36000f006a4f8a9f090f79612a3c9f874016a50
+:10a370007009e8a2e040497902804b74026a7009d2
+:10a38000e8a2e1400e7903803d74806a7036e8a24d
+:10a39000e750f2a2e4502d0592900363e075f0e4db
+:10a3a000a4f8a9f0900453129c15240f129730a220
+:10a3b000e7500990036112a98bf4700879058006b3
+:10a3c000a2e340d3790002a45712a3cee02212a345
+:10a3d000d3a322e028f584a3e039f5850592227401
+:10a3e000f712251874fe1224b612274c1297148502
+:10a3f0008284858385a3a3e0f9605c1460591460ae
+:10a400005614605314601714601f14602e146035c6
+:10a4100014602414602114603814601f8037059282
+:10a42000a3a3a3a3a3e0f9802e0592a3a3a3e0a274
+:10a43000e75004791080207902801c0592a3a3a321
+:10a4400012a33280e10592a3a3a312a9ab059280c7
+:10a45000d47901800279008532828533835392fe5c
+:10a46000122754740212249c7f010225f074f0120a
+:10a47000251874fe1224b612274c8a228c278d28a8
+:10a480008b25128b0e70077a867b0102a51d12a503
+:10a4900032ee2435f584ef12b8a085848285858359
+:10a4a0000592e07074ee2431f582ef12a5ad12b87a
+:10a4b000f160668584828585837401f0ee2436f52b
+:10a4c00082ef129725f07049ee243af584ef12a539
+:10a4d00025e525c398500585252180028821e521a1
+:10a4e000f0f52375240005927823122760ac27ad80
+:10a4f00028ee2438f582ef12a520a3e01291b512c0
+:10a50000249c0592e0f8ee2433f582ef12a06a282d
+:10a51000f07b095392fe12a5b67a007b00029d548f
+:10a5200012aa2cfa2212a529223400f5850592e000
+:10a53000f82212a53aae82af8322128da005929026
+:10a5400003cde028f582a3e039f5832274f71225c4
+:10a550001874fe1224b612274cea128b0d70067a7c
+:10a56000867b01803c12aa322435f8eb3400f9884e
+:10a570008289830592e07025ea2431f584eb12a5e7
+:10a5800025a3e0f9e849601574010592f0ea243644
+:10a59000f582eb12a5adeff07b0912a5b67a007b30
+:10a5a0000002a4570592e02431f582a3e012a5b180
+:10a5b000223400f58322900363e0fa79011219eb4b
+:10a5c0002274f012251874fe1224b612274c74fb64
+:10a5d00012248674041224efe9f074011224ef129d
+:10a5e000a96fec853282853383f074031224efed7a
+:10a5f000f074171224efe0f523a3e0f52412aa3239
+:10a60000f8ebf974041224ef0592e0fc2401f5251f
+:10a61000e43400f526ec75f006a4fcadf090f79656
+:10a6200012ac96858427858528853282853383e020
+:10a63000fe7f002523f521e43524f5228527828538
+:10a640002883a3a3e024fa700302a6d414700302a3
+:10a65000a71c14700302a78014700302a84b147087
+:10a660000302a8d114606314600302a90c740312de
+:10a6700024efe0700302a90ce824351297307044ef
+:10a68000900363e0fe74011224f9059212277b0502
+:10a6900092782312276074041224efe0fd7c02aa52
+:10a6a00025ab26900363e0f9121cd9740412249c94
+:10a6b000900363e06e6005eef9121427029e997410
+:10a6c0000502836e12972bf980f512146fe970045e
+:10a6d000790380eb852782852883a3a3a38582271e
+:10a6e000858328e5234524600912a9dc4004790705
+:10a6f00080cd12a9c95004790d80c48e218f220506
+:10a7000092782112276074031224ef12aa09faa387
+:10a71000e035241291b512249c02a90c852782856c
+:10a720002883a3a3a3858227858328e52345246066
+:10a730000512a9dc50b812a9c940bc8e218f220590
+:10a7400092782112276074031224ef12aa09f5826d
+:10a75000a3e03524f5830592a3aa82ab831291b6b8
+:10a7600012249c853282853383e0a82328c0e085ab
+:10a77000278285288312a9abd0e00592f002a90cac
+:10a78000853282853383e07005790002a6bfe52318
+:10a790004524600ec3e5239402e52494004003029f
+:10a7a000a6eec3e5219403e5229400400302a6f738
+:10a7b000740165237002e524700a74011224ef12fb
+:10a7c000a994800874011224ef12a97512a95aa83d
+:10a7d00082a983eca2e0e05407fd7401500fbd0094
+:10a7e000028004c333ddfc12a9ef4d800ebd0002d0
+:10a7f0008004c333ddfcf412a9ef5df012b2131232
+:10a80000974ceca2e188828983e05407fa740150e6
+:10a810000fba00028004c333dafc12aa184a800e71
+:10a82000ba00028004c333dafcf412aa185af0907a
+:10a83000036112a98bfe74ff6e600a12b201eefb77
+:10a840007a881218411214d502a78985328285337d
+:10a8500083e0700302a789e5234524600ec3e52346
+:10a860009402e5249400400302a6eec3e52194037c
+:10a87000e5229400400302a6f7740165237002e507
+:10a8800024700a74011224ef12a994800874011232
+:10a8900024ef12a97512a95aeca2e0e05407fa7449
+:10a8a00001500fba00028004c333dafc12a9b54a82
+:10a8b000800eba00028004c333dafcf412a9b55a40
+:10a8c000f079087ccf7d037a007b0012184102a743
+:10a8d00089c3e5219402e5229400400302a6f7858e
+:10a8e0003282853383e0700302a789121883e9c39b
+:10a8f0009402400302a6d074011224ef12a98b60c7
+:10a90000047901800279007aff1214ab900363e0ae
+:10a91000fe74031224efe060047c0080027c01746a
+:10a92000011224f9059212277b05927823122760e1
+:10a9300074041224efe0fdaa25ab26900363e0f92e
+:10a94000121cd9740412249c900363e06e700302fd
+:10a95000a789eef912142702a789e0fc85278285d2
+:10a9600028830592a3a3a3a322853282853383ea99
+:10a97000f0a3ebf0221299b6059222a3a3a3aa8218
+:10a98000ab838a848b85059212941912a98f2212a7
+:10a99000a9a1e02212a9982212a99c2212a9a1a37e
+:10a9a00022e0f584a3e0f58505922212a073f582da
+:10a9b000a3e0f58322fa12a9bd12aa2c2212ac7ec2
+:10a9c000f874cf28f5827403228527828528835363
+:10a9d00092fe12a336c39521e4952222e02404f5c9
+:10a9e00084a3e012a529c3e52398e524940022fd61
+:10a9f00012ac7afeea2e12a9fd12aa2c22faeb342e
+:10aa000000fbea241af582eb22129e7785278285c5
+:10aa1000288312a073252322fa12a323f8e5853494
+:10aa200000f9e8242212aa2922f582e93400f583ec
+:10aa3000e02212a53aaa82ab83ea2274f112251809
+:10aa400074fe1224b612274c74fe1224868a258bbb
+:10aa500026ecfeedff129714858221858322059254
+:10aa6000a3a3e0f5238f82ac82ecc333fae433fb7b
+:10aa70008e82a8827900e52360361460331460303a
+:10aa800014602d14606014700302ab15147003027f
+:10aa9000ab2c14700302ab5114700302ab80147022
+:10aaa0000302ac2a14700302ac6a14607f02ac7516
+:10aab000e5239e5007852382aa828002e8fa7b0064
+:10aac0008a238b247823122760e5212cf8e52212b3
+:10aad000b82f2403fce93400fdaa25ab261291b659
+:10aae00012249c02ac75852182852283a3a3a3a393
+:10aaf000a3e09e5003e08001e8fa7b008a238b24c8
+:10ab00007823122760852182852283a3a3a3e02cca
+:10ab1000fca3e080c1eefc852182852283a3a3a350
+:10ab2000e0f9aa25ab26121a2702ac758521828589
+:10ab3000228312a32bc39e5005e0f52180028821b9
+:10ab400089220592782112276012aca0fca3e08034
+:10ab50008585218285228312a97b9e500b8a848b56
+:10ab60008512a988f5218002882189220592782101
+:10ab700012276012aca01299adac82ad8302aad9a3
+:10ab8000900363e075f03ba4fc85f023ad239003b4
+:10ab9000cd12ac96852182852283a3a3a3a38582af
+:10aba0002185832212ac8fbc00028004c333dcfcfd
+:10abb000c0e012aca9241af582ed12a5add0e012c6
+:10abc000ac8560077401f0a3e48003e4f0a3f08592
+:10abd000218285228312ac8fbc00028004c333dc47
+:10abe000fcc0e012aca92422f582ed12a5add0e0a4
+:10abf000fce05c60047c0280027c0085328285334c
+:10ac000083e04cf0eec3940340047c028002e8fc35
+:10ac10007d008c218d22782112276074021224ef8e
+:10ac2000e5822afce5833b02aad88521828522831e
+:10ac3000a3a3a3a312ac8fbc00028004c333dcfc2b
+:10ac4000c0e012ac7afc74cf2cf582740312a5ad6f
+:10ac5000d0e012ac8560077401f0a3e48003e4f057
+:10ac6000a3f0eec3940340a680a012146fe98525db
+:10ac700082852683f074020296f812ac7e22e013dd
+:10ac80001313541f22fce05c85328285338322e05b
+:10ac90005407fc740122e02cf584a3e03df58522e5
+:10aca0008a828b8312a0732c2212ac7afce5842c4e
+:10acb000fce5853400fdec2274f212251874fe12b6
+:10acc00024b612274c74fe12248612a9698c258d95
+:10acd00026e9ff752100e5c7f52275c7037e0080d0
+:10ace000010e90f79ce0f8eec398505eee75f0060a
+:10acf000a4f8a9f012af9c500b12ad5d1224731290
+:10ad0000ad80800312ad6bf585eaf5237823122719
+:10ad100064ac84ad85790274011224efaa82ab83fe
+:10ad200012ad5712249ce960b81294f1f8efc39861
+:10ad300050048f23800288237d00ac23eef9aa25de
+:10ad4000ab261215e31294f1f5218522c7a92174cf
+:10ad50000212249c0284d4121a1b7401227a105409
+:10ad60007ff52375240074047823227a02c333f814
+:10ad7000e433f9059290f79ae028f584a3e03922ac
+:10ad8000059290f798e02523f584a3e035242274fa
+:10ad9000f012251874fe1224b612274c74fb1224ec
+:10ada0008612a969e9129d4574031224ef12af724d
+:10adb0008c848d850592a3a37405f0ec240512af55
+:10adc000787409f00592e0f8ec2812af78a3858238
+:10add00025858326858482858583e004f07521009e
+:10ade00074026f6027eff985328285338312af9248
+:10adf000121a15e960167f0274031224f90592e015
+:10ae00002431f582a3e012a06a24f2f0e5c7c0e085
+:10ae100074021224efd0e05392fef075c70390f74e
+:10ae20009ce0f582ac8285328285338312a98bf84f
+:10ae3000a3e0f9c3ec98e499500302af468532824f
+:10ae400085338312afacc3ec9ae49b50048c228010
+:10ae500003eaf52274031224ef059212afa5fe60f7
+:10ae60000302af13e814fe852582852683e405924c
+:10ae7000f002af1312ad6bf585eaf52378231227a4
+:10ae800064ac84ad85eff974011224ef12af921215
+:10ae9000ad5712249ce9607a7a01eef91215c57457
+:10aea000171224ef1299b2e90592f06014e52170af
+:10aeb0000302af4674171224ef059212afbc02af23
+:10aec000461294f1fa0a0a852182a8828525828594
+:10aed0002683e060066a706ee07063eaf0c3941641
+:10aee00040037415f0e52528fae5263400fbe52734
+:10aef0002401f812b0cb7d00852582852683e0fcf5
+:10af0000ee12b0bf1215e3852582852683e0252148
+:10af1000f5210eeec39522502d8e82858227e527de
+:10af200075f006a4f8a9f05392fe12af9c400302fc
+:10af3000ae7412ad5d12247312ad8002ae77fae8e2
+:10af40002a12af82409f74021224ef5392fee0f562
+:10af5000c774031224ef12b893ee0592f0a921747e
+:10af60000512249c853282853383059202837a05fb
+:10af700092a3e8f0a3e9f022f582ed12950ca3a3c9
+:10af8000a322fae43400fbea9416eb9400c365d0e4
+:10af90003322e02404faa3e03400fb2290f7961257
+:10afa000986ba2e722e0243712a33922059212a05f
+:10afb00073faa3e0fb228532828533831299b6e4cb
+:10afc0000592f02274f112251874fe1224b612278d
+:10afd0004c8a848b858c258d267e008c828d83e423
+:10afe000f0e5c7f52775c70390f79ce0ff8f82acab
+:10aff0008285848285858312b8d7c3ec98e4995002
+:10b000000302b0b80592a3a3e0faa3e0fbc3ec9a55
+:10b01000e49b50048f238003eaf523e814ff801e8d
+:10b02000e5252afae5263400fbe824010812b0cb16
+:10b03000ec12b0bf121a21740225242efe0fefc3aa
+:10b04000952350748f82a882e875f006a4faabf0bd
+:10b050005392fe90f79612a081fca2e75016752439
+:10b06000108525828526830592e06004640270487d
+:10b07000740280147524028525828526830592e05a
+:10b080006004640170327401f08e82aa82852421ea
+:10b09000e5212af521e43400f522e5212402f521f9
+:10b0a000e5223400f522e5219416e5229400a2d28f
+:10b0b00065d033500302b0208527c7eef9801ef912
+:10b0c000ea24030a0a0aeb3400fb22e43400f98a7a
+:10b0d000828b83a3e8f0a3e9f02212249c853282bc
+:10b0e0008533835392fe122754740212249c7f07e7
+:10b0f0000225f074f212251874fe1224b612274ca1
+:10b1000089218982a882e875f03ba4feaff0ea2489
+:10b11000fe607e24fe600302b1d812b1db88238971
+:10b120002412b1e890036112af7275253b752600b9
+:10b1300078251227607c007d009003cde02efaa3d5
+:10b14000e03f12821d12249c12b1f5242ff582e9f2
+:10b1500012a5ad74fbf0a37415f012b1f5242dfc0b
+:10b16000e93400fd12b1e8e8246ffae93400fb127b
+:10b17000163790036512ad85f5850592e0f46058a9
+:10b1800012b20190036112a98bfb7a8812185980c0
+:10b190004412b1db900365e028f8a3e039f990038d
+:10b1a0006112af727b07aa2179011219d9800312ab
+:10b1b000181112b22270f87523107524007823122a
+:10b1c00027607c007d0012b1f5241afae9340012e0
+:10b1d000821d12249c1214d50284f5e8900363f0ba
+:10b1e00075f075a4f8a9f022900365e02523f8a373
+:10b1f000e03524f9229003cde02ef8a3e03ff9e8f2
+:10b20000227910059212b213128194241afceb34a5
+:10b2100000fd22900363e075f03ba4faabf09003cd
+:10b22000cd22129c0f242bfae93400fb121631eace
+:10b230004b22c3ec9aed9b4004ea4b7004790180e9
+:10b240000279005392fe02111874f012251874fe50
+:10b250001224b612274c74f712248674011224efbc
+:10b2600012a96f129d4674051224ef12af727a0074
+:10b2700074011224ef12b8f170150a74051224f942
+:10b2800012a5a4059212b8d7ea1224ef12af727475
+:10b29000011224efe02408f8a3e03400f97403124b
+:10b2a00024ef12af7274031224ef12a98bc0e07462
+:10b2b000071224efd0e00592f05441c0e074081268
+:10b2c00024efd0e0f0eaa2e0500302b35de06003b7
+:10b2d00002b35574071224efe0641e6078740512ff
+:10b2e00024f912a5a4059212b8f1600b740112247e
+:10b2f000ef12b86f02b81a12180b8a218b22a821fc
+:10b30000a92274051224f90592e0243312b84ae800
+:10b31000497003029ea288828983a3a3e4f00412e9
+:10b3200024ef12b8d774051224f90592e0243112e3
+:10b33000b84a74051224f91294f874051224ef1215
+:10b34000b893e40592f074051224ef0592e02435d9
+:10b3500012b8b1801075250075260080087405129a
+:10b3600024f91294f85392fe90039a74081222fe64
+:10b370008b22ea4522600302b81a8525828526833e
+:10b38000a3a3ae82af8374031224ef12b8bea3aca2
+:10b3900084ad8574031224ef059212a9948584214b
+:10b3a00085852274011224ef059212b8be85842788
+:10b3b00085852874071224ef0592e0547f147003ea
+:10b3c00002b79e14700302b7b524fe700302b5a83d
+:10b3d00014700302b5c914700302b461147003023f
+:10b3e000b5f314700302b56014700302b5d714707e
+:10b3f0000302b67714700302b78214700302b677a3
+:10b4000014700302b79014700302b63f1470030265
+:10b41000b78214700302b51314700302b5e51470fb
+:10b420000302b60f14700302b63924fd700302b78d
+:10b43000c314700302b63914700302b7d114700339
+:10b4400002b63924fe700302b70d24fe700302b762
+:10b450002514700302b77524cc700302b60102b73d
+:10b46000df12b914602b752301782312276485211c
+:10b470008285228312b8a51224ef12a98bf97402d7
+:10b480001224ef0592129e83129d3212249c02b662
+:10b4900032852582852683a3a3a3a3a3a3a3a37494
+:10b4a0000712b8267405f0e5252405f8e52612b83c
+:10b4b0002f2404fce93400fd852782852883e024bd
+:10b4c000f5f9aa21ab221215b9e9f8702675230afd
+:10b4d000782312276485218285228312b8a512243d
+:10b4e000ef12a98bf9aa25ab261213c174011224fd
+:10b4f0009c80128e828f83e028f07c047d00aa2538
+:10b50000ab2612160d74011224ef129e831218112d
+:10b5100002b7f012b914600302b46612b8347411a1
+:10b5200012b8f98532828533838582238583247816
+:10b530002312276012b859121565740212249ce96f
+:10b54000f8853282853383e060a98532848533852e
+:10b55000059212277f852182852283059202b4db22
+:10b5600012b914600302b466853282853383e4f035
+:10b570008582238583247823122760ac25ad26128b
+:10b58000b8591215ef740212249ce9f8700e853236
+:10b5900082853383e07005740af080ae853282853f
+:10b5a0003383e070a502b4f312b914600302b466e9
+:10b5b00012b834740512b8f9aa21ab221215f5e9b4
+:10b5c000f8700302b4cd02b4f374011224ef129e9a
+:10b5d0008312150502b7f074011224ef129e831234
+:10b5e00014ff02b7f074011224ef129e831215119a
+:10b5f00002b7f074011224ef129e8312150b02b7ea
+:10b60000f0752300782312276412b8c302b4ec75d6
+:10b610002301782312276412b8c3740112249ce911
+:10b620006005f52302b46974011224ef129e83129f
+:10b6300013afaa25ab2602b50d12156b02b5058e08
+:10b64000828f83e0700a12b838740f12b81f14f09a
+:10b65000ac25ad26852782852883e024fbf523e4ed
+:10b6600034fff52474017823122454a923aa21abb2
+:10b67000221215ad02b7f07a007b0085258285265f
+:10b6800083a3a3a3a3a3a3a3a3a38582278583281e
+:10b690008e828f83e0700812b838740b12b81f7452
+:10b6a000031224ef12a98b640c701a85258285265b
+:10b6b000830592a3a3a3a3a3a3a3a3740df08c82d9
+:10b6c0008d83129e83853282853383858223858391
+:10b6d000245392fe78231227608527238528247817
+:10b6e000231227607916eafcebfd852182852283ef
+:10b6f000129e831215b3740412249ce9f8853282d9
+:10b70000853383e0600302b54a1802b4f3852782cb
+:10b71000852883e024f9f523782312276479011220
+:10b72000b86802b4ec90f7f4e05404fe60177405b6
+:10b730001224efe02416f584a3e0128a0ee0d2e092
+:10b74000f07905800279028527828528835392fe4d
+:10b75000e024f9f523782312276412b868740112e3
+:10b76000249cee600302b50574011224ef129e833f
+:10b770001213b5807b74011224ef129e8312157789
+:10b78000806e12b8821224ef129e831214f9806028
+:10b7900012b8821224ef129e831214f380527403a3
+:10b7a0001224ef12a332f974031224ef12afac1279
+:10b7b00014e702b50574011224ef129e831213bb25
+:10b7c00002b63274011224ef129e831215a702b63c
+:10b7d0003274011224ef129e831215a102b6327444
+:10b7e000011224ef12b86fe5254526600302b63238
+:10b7f00074081224efe0702274071224efe0641e34
+:10b80000601874051224efe0243112b8ab740512ed
+:10b8100024ef0592e0243312b8ab740902836e1250
+:10b82000b826e004f022f08e828f8322f8e585347a
+:10b8300000f9e8228e828f837405f0e5252405f552
+:10b8400082e52612a5b1a3a3a322f582a3e012a547
+:10b85000b1e80592f0a3e9f022852782852883e0ec
+:10b8600024f7f9aa21ab222212b8761214ed221283
+:10b87000b87c12181122852182852283e0faa3e088
+:10b88000fb22852782852883e024fbf91c1cad223e
+:10b89000740122e0243712b89c22e028f584a3e04a
+:10b8a0003400f58522129e7774042212b8b1a3f0f9
+:10b8b00022f584a3e03400f585e40592f02212a974
+:10b8c00098a322852782852883e024f9f912b87687
+:10b8d00012159b2290f796e0f8a3e0f92212180bbc
+:10b8e000853282853383eaf0a3ebf085328285339b
+:10b8f00083e0f8a3e0f9e8492212b826e0f8e5254c
+:10b9000028f582e526129d3cac82ad838e828f8322
+:10b91000e004f0228c828d83129e7712b876121684
+:10b9200001e92274f612251875210c752200782180
+:10b930001227607c007d007a547b60121f0702e9a9
+:10b94000c1c082c0838a828b8380075392fee0f558
+:10b95000d9a3e9f874ff28190470f002d916c0823f
+:10b96000c0838a828b838007e5d95392fef0a3e9d6
+:10b97000f874ff28190470f002d91674f61225180d
+:10b9800074fe1224b612274ce970159004b0e064de
+:10b9900001700d9003efe064017005121703802819
+:10b9a0009003efe0701012e2ef600312c4f0900316
+:10b9b000ed74fff0801279001219a3ea240212c577
+:10b9c0001c7ae77b031237a102e9b874f612251836
+:10b9d000ea2428f582eb12e73fc333f8e433f97425
+:10b9e000a928f582740939f583e02432f8a3e034fc
+:10b9f00000f9ea241cf582eb12d09c12bff5e88511
+:10ba000021f0a4c8aaf08522f0a42afa8521f0e941
+:10ba1000a42af9e8241ff8e93403f97a207b0312f9
+:10ba200023fb88218922ac21ad227a717b0212236b
+:10ba3000fb8a218b22740578211224739004a1e5de
+:10ba400021f0a3e522f0ecf8edf97a717b021223e4
+:10ba5000fb90049f12e2e69004a6ecf0a3ed02d75f
+:10ba60005c74f212251874fe1224b612274c74fc72
+:10ba70001224868a258b26900b341222b6853282b8
+:10ba80008533831222c290618fe0c0e085328285c7
+:10ba900033837821122285e5252521f582e5263597
+:10baa00022f583d0e0f0900b387821122285853280
+:10bab0008285338378211221c085328285338305c4
+:10bac00092900b3c782112228505927821121f72e8
+:10bad00040b485258285268378211222859009b974
+:10bae000782112225f85328285338378211222a742
+:10baf00079007a00853282853383752101752200b1
+:10bb0000ea7821122473e5223395e0f523f52478b1
+:10bb100021122213e5214522452345246001090a0b
+:10bb2000eac3942040cee9c39402500302ba778559
+:10bb30002582852683e0f8a3e068701c8525828530
+:10bb40002683a3a3e0687010852582852683a3a39e
+:10bb5000a3e068700302ba778525828526831222c6
+:10bb6000b68532828533831222c279007a1f8532ec
+:10bb7000828533837821122285e5215403f87402eb
+:10bb800068600574016870010985328285338378a5
+:10bb90002112228574017821122162853282853337
+:10bba0008378211222a71aea70c4e9c394194003ca
+:10bbb00002ba778525828526837821122285741a18
+:10bbc000782112216285328285338378211222a75f
+:10bbd00079007a058532828533837821122285e5c2
+:10bbe000215403f8740268600574016870010985c6
+:10bbf00032828533837821122285740178211221c3
+:10bc000062853282853383e521f0a3e522f0a3e546
+:10bc100023f0a3e524f01aea70bae9c394025003b2
+:10bc200002ba77740412249c02e21a74f6122518e0
+:10bc300074fe1224b612274c8a848b85e9701c7519
+:10bc4000210875220078211227607c007d0012e80f
+:10bc50007c12249c74010592f080260592e0a2e0fb
+:10bc6000e433f075210775220005927821122760d0
+:10bc70007c007d000592a3aa84ab8512e87c122487
+:10bc80009c8532828533835392fe02e9bec082c016
+:10bc9000835392fe9004c6e0a2e040329061b1e48a
+:10bca000f0e070f87401f0e0640170f81217ab90e6
+:10bcb00004c6e0d2e0f0753400e59ea2e640fae565
+:10bcc00094a2e24009759403e594a2e250fa80033d
+:10bcd000f0a3f0d083d08202111874f6122518e96f
+:10bce000fe60067c917d0480047c8b7d04752106ba
+:10bcf00075220078211227607a167b6012c97a12a9
+:10bd0000249c906015e0c2e0f0ee600478018002af
+:10bd1000780002d75a74f6122518e9fe75210675c7
+:10bd200022007821122760eafcebfd7a1c7b60126e
+:10bd3000c97a12249c906015e0c2e1f0ee600478ac
+:10bd4000028002780002d75a74f712251874fe1286
+:10bd500024b612274ce9fe8c848d85740b1224efd7
+:10bd6000e0ff74072ff5d98ed9790612164980079e
+:10bd7000439201e0f5d9a3eff874ff281f0470f097
+:10bd8000e5e170fc75e1958532828533835392fe3f
+:10bd900002c9d174f6122518e9fe12e4ba600479da
+:10bda0003a8053906022e0f874ff6870047907804d
+:10bdb000457f0080040fc313f8e8a2e040f7752127
+:10bdc000067522007821122760eafcebfdef12d302
+:10bdd0004712249c752101ef7821122473af21efc3
+:10bde000f4f8906023e058f0ee6003e04ff09060cc
+:10bdf00022e04ff0790002e9c674f312251874feb0
+:10be00001224b612274c892512e4b66004793a80d0
+:10be100061906022e0f522a3e0ff7521017e00e53c
+:10be2000225521603ee5256007852182a882800297
+:10be30007800ef552168702b752306752400782350
+:10be4000122760ac84ad85ee12d33212249c8b2471
+:10be5000ea4524700ee521f4f8906022e058f0796c
+:10be600000800f0ee521c333f521eec3940840afe7
+:10be70007912853282853383122754740212249cee
+:10be80007f050225f0c082c0835392fe906022e4b9
+:10be900002bcd274f012251874fe1224b612274c7c
+:10bea0008c278d2874121224f90592e0f582a3e004
+:10beb000f58374141224f9e0fca3e0fd7416122437
+:10bec000f9e0fea3e0ff858284858385eaf0a3eb99
+:10bed000f0ea24faf8eb12bfea502fe52724faf82b
+:10bee000e52812bfea5023c3e5279ae5289b401aac
+:10bef000c3ee94f5ef94015011ec24f6f8ed34ff05
+:10bf0000f9c3e89477e9940c4005791202bfe790f1
+:10bf100004b9e0f8c394024051e8c333f88884853b
+:10bf20008425858284858385e0f521a3e0f522a818
+:10bf300021f9aa257b001223fb8a238b24a823a99d
+:10bf400024e8496025e5212525fae5223400fbeaad
+:10bf5000c398f8eb99f9858284858385e8f0a3e995
+:10bf6000f0c3e52798e5289940a0ec75f050a4fcb3
+:10bf7000a8f075f050eda428fdee2401f525ef346e
+:10bf800000f526e4f527f528059212bff5e52175a1
+:10bf9000f00aa4f521a8f075f00ae522a428f522fc
+:10bfa000e4f523f52478257921121fdf8d228c21d9
+:10bfb000782179251221d3852125852226852327dd
+:10bfc000852428900b2c7825122213e5254526453b
+:10bfd000274528600302bf0ae52145224523452461
+:10bfe000700302bf0a790002dc7d34fff9c3e894d4
+:10bff0007be9940c22e0f521a3e0f5222274f012f3
+:10c00000251874fe1224b612274c74fa1224867472
+:10c01000021224ef12db2c74041224efecf0a3edd7
+:10c02000f0892874181224efe0f52774191224ef10
+:10c0300012db32741b1224ef12db38741d1224ef52
+:10c04000e0f523a3e0f524741f1224ef12bff5904e
+:10c050000485e0a2e05005790c02c22a9003ede0cd
+:10c06000f470f47821122760782312276074041288
+:10c0700024ef85822585832678251227601216975e
+:10c08000740612249ce9600302c22a1217b78a259b
+:10c090008b26ae25af26ee4f7005790902c22a8e97
+:10c0a000828f83a3a3a3a3a3a3e0c0e074041224fc
+:10c0b000ef12e2fad0e00592f074021224ef05923a
+:10c0c00012e4bd60347525067526007825122760b8
+:10c0d00074041224ef12db38ee240912d0ab1224c0
+:10c0e0009c12d096e5286005e0d2e08003e0c2e033
+:10c0f000f0906014e0c2e38006906014e0d2e3f0b8
+:10c10000e52760047a0180027a00900489e054fef9
+:10c11000f8a3e0f9e84a900489f0a3e912d46eee9e
+:10c120002412faef3400fb1216617a0090618fe05e
+:10c13000c0e08a25ee2525f8ef3400f9e82416f54d
+:10c1400082e912d09cd0e0f00aeac3940340dd12e9
+:10c15000c505ee241c12dbf785328285338312e29b
+:10c1600080ee2420f582ef12de2d12d6de241ef59d
+:10c1700082ef12dbf1f0a3e522f0ee242812d09931
+:10c180007405f0ee241912d0997402f00592e0f8cb
+:10c19000a3e0f9ee241a12d099e8059212e2e79092
+:10c1a00004ade0c0e0ee24e312d099d0e0f07521b8
+:10c1b0000575220078211227607ca87d04ee2422d8
+:10c1c00012d0ab12249ceefaeffb12170990618f8c
+:10c1d000e054072405c0e0ee242712d099d0e0f007
+:10c1e000a2afe433fac2afe594a2e240097594032a
+:10c1f000e594a2e250fa12c5149003eb12e2e6eacb
+:10c20000a2e092af9003fceef0a3eff09003ed7488
+:10c21000fcf09003ef7401f012c3e59003e912e221
+:10c22000e67ae77b031217817900740602e04d7409
+:10c23000f712251874091224efe0f8740a1224ef9b
+:10c24000e0fe740b1224efe0ffec4d6014ea4b604b
+:10c2500010ec2afaed3bc313fbea1390040812db3f
+:10c260002de96004900407f0e890040cf0ef9004ce
+:10c27000056005e0d2e08003e0c2e0f0906014e0e9
+:10c2800054fcf0ee6003e04ef002c9d974f61225ba
+:10c2900018e99004056005e0d2e18003e0c2e1f016
+:10c2a0007521067522007821122760eafcebfd7ae1
+:10c2b0000d7b0412c97a12249c790002e9c674f637
+:10c2c00012251874fe1224b612274c74ff1224860d
+:10c2d000e9fe900406706ee07005790002e9b3a2f1
+:10c2e000afe433ffc2af900455e064fe7004a3e0f6
+:10c2f0006403701712e4d34009759403e594a2e235
+:10c3000050fae5e170fc75e142800d90040474ff81
+:10c31000f07afe7b0312177b900406e4f0efa2e0b4
+:10c3200092af90040412c50f64fd60f690040a12e7
+:10c33000e2f260a60592a3a3a3a3a3a3e012da8d61
+:10c3400012da988095e06004793a809090040ce0cd
+:10c35000640360499004bae06005790c02c2dc1203
+:10c3600017b78a218b22a821a92290040a12e2e69b
+:10c37000e8497005790902c2dc900485e04401f0c7
+:10c38000900489e054fef8a3e0f9900405e0a2e0ef
+:10c39000e433fae84a900489f0a3e9800690040a9d
+:10c3a000e4f0a3f0e594a2e24009759403e594a2b9
+:10c3b000e250fa12c3e590040012e2e674016ea3a3
+:10c3c0007007e4f0a374088005740af0a3e4f09009
+:10c3d00004067401f090040474fdf07afe7b0312ed
+:10c3e000178102c2da79001219a3ea2404f8eb34a7
+:10c3f00000f92274f412251874fe1224b612274c88
+:10c4000074ff122486e9feeaffee7068a2afe433ff
+:10c41000f522c2af900455e064e77004a3e0640322
+:10c42000701712e4d34009759403e594a2e250fa20
+:10c43000e5e170fc75e142801d9003efe06401705e
+:10c440001512e2ef600312c4f09003ed74fff07a6e
+:10c45000e77b0312177b9003efe4f0e522a2e09262
+:10c46000af9003ed12c50ff470f779007401122438
+:10c470009c02e8e39003ede0f874fe6860ec74ff62
+:10c48000686004793a80e59003f0e4f0906009f088
+:10c49000eb9003ee6005e0d2e48003e0c2e4f090ac
+:10c4a0006014e0c2e2f0ef6004e0d2e2f09003f149
+:10c4b000e4f09003eee054b3f090600a12c508e592
+:10c4c00094a2e24009759403e594a2e250fa12c5e1
+:10c4d0001479001219a3ea240412c51ca374fef0f7
+:10c4e0009003ef7401f07ae77b0312178102c46aac
+:10c4f0000592a3a3a3a3a3a3e0f91217b19003fc91
+:10c50000e4f0a3f0229004877401f0a3e4f0221277
+:10c51000ce38e02212e4c3a312e1a322f8eb3400e8
+:10c52000f99003e912e1a312e4c39003eb12e1a333
+:10c5300022c082c083e9c394104002790fe9c45439
+:10c54000f0f85392fe906186e0540f4802bcd2741a
+:10c55000f6122518e9ffe5a8fec2af8f217522006b
+:10c560007821122760eafcebfd7a137b0412c97a6a
+:10c5700012249cef900432f0eea2e792af02e9c6db
+:10c5800074f6122518e9ffe5a8fec2af8f217522c7
+:10c59000007821122760eafcebfd7a337b0412c994
+:10c5a0007a12249cef90045280cd74f612251874f0
+:10c5b000fe1224b612274c749f122486e9fee5c7aa
+:10c5c00075c703900369e0a2e04019d2e0f005923c
+:10c5d0009009f01227737b0a7a0079001219df7430
+:10c5e0000412249c74ff6e70069004b9e08001ee82
+:10c5f000853282853383f07521d57522007821122a
+:10c6000027607c007d007ae77b0312e87c12249c83
+:10c61000853282853383e09004b9f07521667821f4
+:10c620001227607c007d007a007b6012e87c122477
+:10c630009c900408e4f0a37402f09004077407f0df
+:10c6400090040474fff09003f6744b12c50a900333
+:10c65000eb743212c50a9003eef075212578211291
+:10c6600027607c007d007a607b0412e87c12249ca9
+:10c6700075210478211227607cff7d007aa87b0455
+:10c6800012e87c12249c9004ac741ff090045ce4cb
+:10c69000f0a3f09003fcf0a3f074ff6e6011ee7550
+:10c6a000f0e4a4faabf012135590045312db2c9073
+:10c6b000045312e8ff9004bae4f085328285338394
+:10c6c0008013e58424e4f8e58512d459e8f0a3e961
+:10c6d00012c93ce004f0e0fa12d8c0ee24fff8e4fe
+:10c6e00034fff9c3ea98e499a2d265d03340d385e8
+:10c6f0008482858583e4f0a312c93c9003fee4f0b4
+:10c70000a3f090040474fdf09003e712d463791051
+:10c710007cc7fd74011224efaa82ab831214337517
+:10c72000210678211227607c0e7d7874031224ef95
+:10c73000aa82ab8312c97a12249c75211078211227
+:10c7400027607c997d0974131224efaa82ab8312af
+:10c75000c97a12249c7810882174011224efe58292
+:10c760002521f582e58312e73f64bff008e8c39412
+:10c770002040e474011224ef8582218583227821f0
+:10c7800012276074031224efac82ad837413122459
+:10c79000efaa82ab83121325740212249c79107cb9
+:10c7a000d77dff74111224efaa82ab831214337564
+:10c7b0002110752200782112276074131224efac27
+:10c7c00082ad8374031224efaa82ab83121efb7422
+:10c7d0000212249c8b22ea45227005800c1217b7a6
+:10c7e000eeff74ff2f1e0470f41219bb121817907d
+:10c7f00061c67401f09061807440f090619174485a
+:10c80000f09061bc7407f090619a743ff0a3745a81
+:10c81000f09061a0747ff0900369e0a2e74028796e
+:10c82000017c017dff853282853383aa82ab83122e
+:10c830001433906186e0540ff8853282853383e0ab
+:10c8400054f048906186f074ff6e7007906192e03a
+:10c85000d2e7f0906022e4f0906009f043a9014330
+:10c86000b901759b00759100439a01c2a890f7f435
+:10c87000e0a2e3500474e1800274c09004bbf09025
+:10c880006181e4f0a3748012c50a794074211224f6
+:10c89000efac82ad837a037b00121859e9fb74ff79
+:10c8a0006b603a7a0080318a2174211224efe5828c
+:10c8b0002521f584e58312dbfa858482858583a3af
+:10c8c000e0c0e00592e0f8748028f582746112d02f
+:10c8d0009cd0e00592f00a0aeac39b40ca12283ca9
+:10c8e00012164312178d9004aee4f09004b0f0904d
+:10c8f00004aff09004b1f0906002740ff090f7f480
+:10c90000e0a2e45004740580027402906003f09089
+:10c910000455e4f0a3f0900489e054fef09004057f
+:10c92000e4f079067cea7dff7a8b7b0412143312e3
+:10c930001a09e5c775c703746102e9b5f08532824b
+:10c94000853383e00592a3a3a3a3a3a3f0059222ba
+:10c9500074f6122518e5a8fec2af752106752200ef
+:10c960007821122760eafcebfd7a917b0412c97ae8
+:10c9700012249c02c578aa23ab24121f0174022240
+:10c9800074f712251874fe1224b612274ce975f0bc
+:10c99000e4a4fcadf0900453e02cf584a3e03df555
+:10c9a00085ea858482858583a3a3a3a3a3a3a3f09b
+:10c9b0000592a3a3a3a3a3a3a3a3740af085328221
+:10c9c0008533830592800aa2e092af853282853357
+:10c9d00083122754740212249c7f010225f074f004
+:10c9e00012251874fe1224b612274c74ff122486e6
+:10c9f0008a278b2812ce4b12daa8ae82af838a82a6
+:10ca00008b830592a3a3a3a312ce38ee2442f52371
+:10ca1000ef3400f5248a828b83a3a3a3a3a3ac8263
+:10ca2000ad838e828f83a3a3a3a3a3a3a3a3858295
+:10ca300025858326ee240ff521ef3400f52285327b
+:10ca400082853383e0700302cba014700302cb5bba
+:10ca500014700302cb5314700302cca714700302aa
+:10ca6000cd7814700302cdd814700302cddd1460ac
+:10ca70007714700302cb1b14606314700302cbeeb7
+:10ca800014700302cc1c14600914700302cbcf0293
+:10ca9000ce0f7523057524007823122760ee243d00
+:10caa00012d0ab12249c852582852683e064077012
+:10cab00002e4f0852182852283e0d2e1f0a2e04009
+:10cac0000dac27ad28eefaeffb12179f8007aa27bf
+:10cad000ab281218117b0312ce6102ce338525825a
+:10cae000852683e06406600aaa27ab281218110283
+:10caf000ce33852182852283e0d2e212d6c8e4f0cb
+:10cb0000752108f522782112276012c97612249c1b
+:10cb1000aa27ab281218117b0480bc8521828522ac
+:10cb200083e0d2e2f0752108752200782112276097
+:10cb300012c97612249c7901aa23ab2412166778b5
+:10cb4000211227647823122760790912de1f12242c
+:10cb50009c80c412ce8e7409f0808d852582852636
+:10cb6000837402f07521077522007821122760ee88
+:10cb7000245512d0ab12249caa27ab28121811ee10
+:10cb8000245a12ce77700302ce338e828f83a3a3f2
+:10cb9000a3a3a3a3a3742812d6c8740af002ce33a9
+:10cba0008525828526837401f075210b7522007816
+:10cbb00021122760ee244a12d0ab12249caa27ab84
+:10cbc00028121811ee245312ce7770be02ce331203
+:10cbd000ce8ee06403600302cae8e4f0852182851a
+:10cbe0002283e054e7f07b0712ce6102cae8852178
+:10cbf00082852283e0d2e4f0752300782312276433
+:10cc0000e4f524782312276012de1d12249c85216e
+:10cc100082852283e0c2e6f0d2e38080852182858e
+:10cc20002283e0d2e412d760852182852283e050fe
+:10cc300005c2e702cb58543ff07521007821122736
+:10cc400064e4f522782112276012de1d12249c75ff
+:10cc50002108782112276012d0a012249c7521048b
+:10cc6000782112276012ce5724b412d0ab12249c24
+:10cc7000782112276012ce5724a412d0ab12249c24
+:10cc80008525828526837403f07521167821122765
+:10cc900064ee245c12ce411227607403c0e012d708
+:10cca000eed0e0f902ce2d8525828526837404120c
+:10ccb000e0591223fb12e1867523167524007823b0
+:10ccc000122760ee245c12d0ab12249c7908ee246b
+:10ccd00072faef3400fb121a0f7904ee247afaef9d
+:10cce0003400fb121a0f752308782312276012d024
+:10ccf000a012249c7823122760ee247212ce5a24ac
+:10cd00009612d0ab12249c7523047823122760124c
+:10cd1000ce5724b412d0ab12249c78231227601271
+:10cd2000ce5724a412d0ab12249c7823122760ee95
+:10cd3000247a12ce5a24b812d0ab12249c78231233
+:10cd40002760ee247a12ce5a24a812d0ab12249c6b
+:10cd5000852182852283e04418f075210c78211208
+:10cd60002764ee247212ce41122760790412de1f6e
+:10cd700012249c7b0602cad7852182852283e0d2b9
+:10cd8000e4f075210c7522007821122760ee2472e0
+:10cd900012d0ab12249c7521087821122760ee2452
+:10cda0007212ce5a249612d0ab12249c75210478ac
+:10cdb00021122760ee247a12ce5a24b812d0ab1278
+:10cdc000249c7821122760ee247a12ce5a24a812cd
+:10cdd000d0ab12249c02cae81218118096121811c6
+:10cde000900485e0a2e0500f8e828f83a3a3a3a3bb
+:10cdf000a3a3e0f912171b852182852283e054e763
+:10ce000012d6c8740b12d76040297b0702cad775a7
+:10ce10002101782112276474011224ef8582218573
+:10ce2000832278211227607907ac27ad2812de23f0
+:10ce300012249c740102e04de0853282853383f038
+:10ce400022f521ef3400f522782122ea2424f5820c
+:10ce5000eb12e746547f22ee246efcef3400fdee29
+:10ce60002212ce65228e828f83a3a3a3a3a3a3e065
+:10ce7000fa79001219eb2212de45ee242cf584ef2c
+:10ce800012e1670592e0c398a3e0995480228c8256
+:10ce90008d83e08e828f83a3a3a3a3a3a3a3f08596
+:10cea00025828526832274f712251874fe1224b673
+:10ceb00012274ceafeebffa2afe433f521c2af121a
+:10cec000cfc0eefceffde58412cee47009888289c4
+:10ced00083eef0a3eff07901aa84ab85121787e502
+:10cee0002102c9c72437fae5853400fb121637e55d
+:10cef000842435f8e5853400f988828983e0faa333
+:10cf0000e0fbea4b2274f712251812ce4bfe12cf2b
+:10cf100027243bfae93400fb1216377b05eefa7939
+:10cf2000001219eb02c9d9eafcebfdee75f0e4a49e
+:10cf3000f8a9f090045312cf3a22e028f8a3e03980
+:10cf4000f9e82274f712251874fe1224b612274c41
+:10cf5000eafeebffee4f60658e828f83a3a3e07045
+:10cf600005121811805712cfc0a2afe433f521c2c9
+:10cf7000afe58412d08d12e737a2e7402ca2e3ee92
+:10cf8000fceffd401fe58424371a1a12cee7700922
+:10cf900088828983eef0a3eff07901aa84ab851231
+:10cfa00017878013121637800eeefceffd1216372e
+:10cfb000aa84ab8512133de521a2e092af02c9cb52
+:10cfc000ee242412e743547f12d8c42274f51225ac
+:10cfd0001874fe1224b612274c8a848b85ecfeed61
+:10cfe000ff740d1224ef12db38740f1224efe0f5fa
+:10cff00021ee4f700302d07a858482858583a3a3b6
+:10d00000a3a3a3a3e0c0e0ee242412d099d0e012a1
+:10d01000d3257403f0740125218e828f83a3a3127c
+:10d02000d6c3e9f0e521601175220078211227604e
+:10d03000ee240512d0ab12249ca2afe433f521c23a
+:10d04000af12e737a2e7eefceffde584500f12d0f8
+:10d050008d12163daa84ab8512133d801712cee4c3
+:10d06000700988828983eef0a3eff07901aa84ab7e
+:10d0700085121787e521a2e092af8532828533833e
+:10d08000122754740212249c7f030225f02439fadb
+:10d09000e5853400fb22ee2410f582ef12de4822f3
+:10d0a000ee2466fcef3400fdee248efaef3400fb34
+:10d0b000121f0174022274f012251874fe1224b695
+:10d0c00012274ceafeebff8e848f850592a3a3e521
+:10d0d000d914f0e5d98e828f830592a3a3a3f0a281
+:10d0e000e5502e0592e0c3940640267800e5d9c0ad
+:10d0f000e0882174b32521f582740412d09cd0e01d
+:10d100005392fef008e8c3940640e20592e024fa48
+:10d11000f078008009882112d317d0e0f0088584c8
+:10d12000828585835392fee0f9e8c399e5d9c0e092
+:10d1300040e3ee242512d099d0e0f0ee242612d060
+:10d1400099e5d9f0a2e7400302d2b464fe600a1266
+:10d1500018117a007b0002d3149003eee0a2e440a1
+:10d160000302d3109060090592906022e0f80592c6
+:10d17000e048f5267521018e828f83a3a3a3e05496
+:10d1800040f528906023e0f5278e828f83a3a3a328
+:10d19000e0540ff52574046525600ee5a8f8c2afcc
+:10d1a0009003eee0c2e612daa1752200e5265521d1
+:10d1b0006032e5286007852182a88280027800e538
+:10d1c00027552168701e75230675240078231227c1
+:10d1d000607cb37d04e52212d33212249c8b24eab6
+:10d1e0004524600fe521c333f5210522e522c394d0
+:10d1f0000840b9906014e0a2e274086522500f70f4
+:10d200000302d310906009e04521f002d310604c76
+:10d21000906009e055217022e04521f0e525600984
+:10d2200074066525600302d310e5a8f8c2af900329
+:10d23000eee0d2e612daa102d31074046525701272
+:10d240009003eee0a2e6500ae5a8f8c2afe0c2e61d
+:10d2500080e2eefaeffb12181102d30c74ff652680
+:10d26000700302d3107521017522008008e521c3e7
+:10d2700033f5210522e526552170f2752306752424
+:10d280000078231227607cb37d04e52212d3471275
+:10d29000249ce521f4f8906023e05812d325e0a205
+:10d2a000e65007906023e04521f0906009e04521b9
+:10d2b000f002d229ee2424f8ef3400f9e8fce9fd6d
+:10d2c000e044808c828d83f0547f12d8c0e58424a2
+:10d2d0000ff8e58512da858e828f83a3a3a3e0542d
+:10d2e00003640360190592e0a2e450127a3d8c8237
+:10d2f0008d830592e0547ff91216d902d2524392df
+:10d3000001e0a2e6500ac2e4f01213437e007f005f
+:10d31000eefaeffb02dc7dee2521f582ef12de480e
+:10d32000a3a3a3a32212d32922f08e828f83a3a3c7
+:10d33000a32275f006a4f8a9f0742428fa746039c1
+:10d34000fb121efb74022275f006a4f8a9f07424e7
+:10d3500028fa746039fb121f0174022274f212253c
+:10d360001874fe1224b612274c12e8f69004b0e0ae
+:10d3700014f0e5d9f812d096e5d9a2e6e05004d22f
+:10d38000e08002c2e0f07900e5d9c0e0892112d343
+:10d3900017a3a3a3a3a3d0e0f009e9c3940640e830
+:10d3a00074fb28f88002e5d9882174ff2521180430
+:10d3b00070f490600ee0f525a3e0f5268e848f854d
+:10d3c0000592a3a379101219a3ea2525f8eb3526b7
+:10d3d000f9e82404f8e912d45912e2e690045c80da
+:10d3e000048882898312e4bd604588828983a3a36f
+:10d3f000a3a3a3a3e0a2e740e8858482858583e018
+:10d40000a2e092f088828983a3a3e0a2e020f00149
+:10d41000b3401c900369e0a2e00592e0400924ffbc
+:10d42000f0a3e034ff80072401f0a3e03400f053c0
+:10d4300092fe9003fc12d4639003efe4f0ee2434e8
+:10d4400012d099740312d46e8e828f83a3a3a3a3e8
+:10d45000a3a3a312d6d002e21a3400f985848285f0
+:10d46000858322e4f0a3f09003ed74fff022f0ee48
+:10d47000242912de45e4f02274f712251874fe12f6
+:10d4800024b612274cea24e3f8eb3400f9888289a9
+:10d4900083e4f0fc74075cf87401b800028004c3f4
+:10d4a00033d8fcc0e0ec131313541ff8ea28f8eb50
+:10d4b0003400f9e82422f584e912dbfad0e0f843dd
+:10d4c0009201e058601d0592e0f8ea28f8eb34007c
+:10d4d000f9e824bef584e912dbfaec0592f0059236
+:10d4e000e004f00cecc3942540aa02bd8774f2124c
+:10d4f000251874fe1224b612274c9004b0e014f0e4
+:10d5000090040a12e8f9e5d9f8e5d9f918740f5929
+:10d510006405700574226860130808882174ff256b
+:10d52000211804700302d6ace5d980ef12c50512ac
+:10d53000d096e9a2e6e05004d2e08002c2e0f079a1
+:10d5400006ee2409faef3400fb12164fee241212f5
+:10d55000dbf77906aa84ab8512164f7916aa84ab3d
+:10d560008512164fe5d9e5d9ee242712da83059204
+:10d57000e0c4135407c0e0ee242812d099d0e0058f
+:10d5800092f00592e0541ff08e828f830592a3a340
+:10d59000a3a3a3a3a3e4f0ee241c12da8312d6de25
+:10d5a000243412d099740bf0c30592e09406a3e0e2
+:10d5b0009400500302d6ac7a008a23ee2523f8efbc
+:10d5c0003400f9e82422f582e912d92070070aea2a
+:10d5d000c3940440e474046a7010ee2426f582efcc
+:10d5e00012e73f541f700302d6aceefaeffb12169f
+:10d5f0005bee241912d6b8700474018007c3940935
+:10d6000040037408f0e0f875f0e2a4c8aaf075f0e1
+:10d6100004a42af9059290606412e2e6eefaeffba8
+:10d620001217098e828f83a3a3858225858326798d
+:10d63000101219a3ee241a12d09912e2ebe8c333a8
+:10d64000f8e933f9ea28f8eb39f9e824020808e99f
+:10d650003400f985258285268312d6bfa882a98346
+:10d660000592e0c333fae433fbea24030a0a0aeb27
+:10d670003400fbea0592f0a3eb12d6c8e024fff0d9
+:10d68000a3e034fff088828983e02401f0a3e03432
+:10d6900000f07a007b001239cb90040ae4f0a3f08a
+:10d6a000900406f090040474ff12d6d0853282856f
+:10d6b00033835392fe02e220f584ef12e4b122e8b4
+:10d6c000f0a3e912d329a322f0852582852683229f
+:10d6d000f07b0112ce65eefaeffb1237a1228584b2
+:10d6e0008285858312e4c6e875f005a4f8aaf07572
+:10d6f000f005e9a42af9ee242e12e19cee2274f63c
+:10d70000122518eafeebff7521057522007821121b
+:10d7100027607c007d00ee24af12e87712249c780d
+:10d72000211227607c007d00ee249f12e8771224ee
+:10d730009c900485e0a2e05004788080027800ee9e
+:10d7400024b3f582ef12e73f4812d7605004780007
+:10d7500080027880ee24a312d099e048f002e9c656
+:10d76000f0900485e0a2e02274f612251874fe12ef
+:10d7700024b612274c12d83344c012d7604007aaef
+:10d7800084ab851217157521007821122764e4f502
+:10d7900022782112276012d7ee7406f9aa84ab858d
+:10d7a00012de2702e9b574f612251874fe1224b6ab
+:10d7b00012274c74ff122486ea853282853383f067
+:10d7c00012d8bf752101782112276474011224ef49
+:10d7d000858221858322782112276012d7ee740d6d
+:10d7e000f9aa84ab8512de2712249c02e9b3121831
+:10d7f0000beafcebfd2274f612251874fe1224b617
+:10d8000012274c12d833d2e6f07521007821122766
+:10d8100064e4f522782112276012d7ee7405f9aa84
+:10d8200084ab8512de2712249caa84ab85121715bf
+:10d8300002e9b8e912d8c4e584240ff582e585121f
+:10d84000e7462274f612251874fe1224b612274ced
+:10d85000e9feeaffee12d8c0ef702be5a8f521c271
+:10d86000af7a06eef9121721858482858583a3a3fa
+:10d87000a3a3a3a3a3a3e4f012e73754e7f0e521a1
+:10d88000a2e792af8036e584247ef521e58512cead
+:10d8900044122760e584248efce5853400fdaa212e
+:10d8a000ab22121325740212249c900485e0a2e09e
+:10d8b000eef95005121727800312171b02e9b8e989
+:10d8c00012d8c42275f0e4a4f8a9f0900453e0281b
+:10d8d000f584a3e039f58522c082c083ea4b603627
+:10d8e000ea2426f582eb12d920a2e750097cb37d09
+:10d8f000041214cf80208a828b83a3a3a3e0540355
+:10d9000024fe6005146007800a1213eb80081216cb
+:10d91000df8003121811d083d0825392fe021118b7
+:10d9200012de485392fee02274f6122518a2afe4ec
+:10d9300033fec2af9004b0e0700ceea2e092af9064
+:10d9400004b2e4f0803aeea2e092af12180bea4b78
+:10d95000602e1216fdea4b6003121733a2afe433b8
+:10d96000fec2af9004b0e014f070079004b2e4f08f
+:10d9700080097b007a0079001219ebeea2e092afe9
+:10d9800002e9c6c082c08312173902bcd374f612f2
+:10d99000251874fe1224b612274ce9feeaffee1297
+:10d9a000daa8e582240ff8e58312da85ef604214e5
+:10d9b000604514604d14606414606814601e146047
+:10d9c0006914700302da4b14700302da5214700304
+:10d9d00002da5914700302da7002da80e582243b1d
+:10d9e000fae58312e86e700302da8012173302da66
+:10d9f0008012173902da80e0d2e5f0eef91213df77
+:10da0000807e0592900485e0a2e0500354fef0056c
+:10da100092e0c2e5f0eef91213e58064eef912131c
+:10da2000f1805deef91213f78056e582245cfce587
+:10da3000833400fde5822464f582e58312d09c05e1
+:10da40009212db32eef91218ef8035eef91213fd67
+:10da5000802eeef91214098027059290040a12e430
+:10da6000a612da8df090040612da981213d98010fb
+:10da7000e5a8f8c2af0592900369e0c2e012daa10e
+:10da800002bc81f8ef3400f98884898522f91217e5
+:10da9000b190040ae4f0a322f0900485e054fef073
+:10daa00022f0e8a2e792af2275f0e4a4f8a9f01200
+:10dab000dab32212dab7220592900453e028f582f5
+:10dac000a3e039f58322c082c08385328285338307
+:10dad0005392fee0f8e99003ee6005e0d2e18003a6
+:10dae000e0c2e1f0ea4b60069003f612db2cec4d4d
+:10daf00060089003f2ecf0a3edf09003f612db382f
+:10db00009003eb12db32c3ec9aed9b50089003ebd1
+:10db1000ecf0a3edf0e89003ee6005e0d2e58003c1
+:10db2000e0c2e502bcd2853282853383eaf0a3eb02
+:10db3000f022e0faa3e0fb22e0fca3e0fd2274f176
+:10db400012251874fe1224b612274ceaffe975f06c
+:10db5000e4a4f8a9f012de4dac82ad83e0f87408bd
+:10db6000686073740968606ee5a8fec2af852182a3
+:10db7000852283a3a3a3a3a3a3a3858225858326ac
+:10db8000eff012dbe9242ef584e52212d6bbf8a3d0
+:10db9000e0f9e521241cf584e52212dbfa12e13cd0
+:10dba0001223fb12e1a9e521243212e2df8c828ddf
+:10dbb000837408f0eea2e792af7523017823122751
+:10dbc00064782512276012d7ee7402f9aa21ab22dd
+:10dbd00012de2712249c85328285338312275474e7
+:10dbe0000212249c7f070225f0e521242cf582e512
+:10dbf0002212de48e52122f584ef3400f5852274f7
+:10dc0000f012251874fe1224b612274c12e142704d
+:10dc100008900485e0a2e05004793a805d12180b68
+:10dc20008a278b28ea452870047907804de5a8f5f6
+:10dc300022c2afee2442f525ef3400f5267900aa82
+:10dc400025fb12166712e1251223fb12e1868e8254
+:10dc50008f83a3a3a3a3a3a3a3a37406f0e522a287
+:10dc6000e792af7522087822122764782512276080
+:10dc7000790812de1f12249c790002e0508532825e
+:10dc80008533835392fe122754740212249c7f081a
+:10dc90000225f074f012251874fe1224b612274cd7
+:10dca00074fb122486e9853282853383f07417125f
+:10dcb00024efe0f523a3e0f52474191224ef12e811
+:10dcc000f9853282853383e075f0e4a4f885f0218c
+:10dcd000a92112de4de06005793a02de18782312a0
+:10dce00027608e258f26782512276074071224ef6f
+:10dcf000858225858326782512276012169774065b
+:10dd000012249ce9600302de1812180b740112241d
+:10dd1000ef12db2c74011224ef12e4bd70057907b9
+:10dd200002de18e521242cf582e52212d09c780031
+:10dd3000797de521241cf584e52212e1391223fbcb
+:10dd4000882589260592e02525f8a3e03526f9e8ff
+:10dd5000240108e93400f9e521243212de38244a8e
+:10dd6000f527e5223400f528752509752600782564
+:10dd7000122760e5212419fce5223400fdaa27ab17
+:10dd80002812c97a12249c74031224ef12e2ebe5e4
+:10dd900021244d12de382451f582e52212d09cee6a
+:10dda000f0a3eff0e521244ff582e52212de2de508
+:10ddb00021244bf582e52212d09ce4f0a3f08527c4
+:10ddc000828528837402f0e5a8fac2af12dbe92449
+:10ddd0001ef584e52212e150e521245312e2df858d
+:10dde0002182852283a3a3a3a3a3a3a3a37401f0e9
+:10ddf000eaa2e792af75230b7823122764782712e3
+:10de00002760790074041224ef12db38aa21ab22b8
+:10de100012de2712249c7900740502e04d790bacc8
+:10de200027ad28eefaeffb1216f774032212de4834
+:10de3000e523f0a3e524f022f582e52212de481264
+:10de4000e1a3e52122f582ef3400f5832212dab353
+:10de50008582218583220592a3a3a3a3a3a3a3a3c1
+:10de60002274f6122518e9fe75211075220078211a
+:10de700012276012cf27247efae93400fb121f011b
+:10de800002e9c174f012251874fe1224b612274c50
+:10de900074fd12248612db2674021224efe9f08c42
+:10dea000238d2412e22d900485e0a2e0500812e0b8
+:10deb00072790c02e04b8e828f83a3a3a3a3a3a34a
+:10dec000a3a3e0600812e072793a02e04bee240f5f
+:10ded000f527ef3400f528852782f583e054ef44d9
+:10dee0000812e0591223fb882189220592e025219e
+:10def000f8a3e03522f912e190f582ef12e2e3eea9
+:10df0000246412dbf7ee245cf525ef3400f526ecf3
+:10df10004524702e75210875220078211227607c17
+:10df2000007d00aa25ab2612e87c12249c752102f4
+:10df300078211227607c007d00aa84ab85121f0720
+:10df4000802e7521027522007821122760aa84abe9
+:10df50008512c97a12249c7521087821122760e560
+:10df6000232402fce5243400fdaa25ab26121f0160
+:10df7000740212249cee246e12dbf77904aa84ab9f
+:10df800085121a0fee2466f521ef3400f522790888
+:10df9000aa21fb121a0f852782852883e0a2e75069
+:10dfa00035e5a8f8c2af8e828f83a3a3a3a3a3a352
+:10dfb000a3a3740512daa17521007821122764e465
+:10dfc000f5227821122760790a74031224ef12e1f6
+:10dfd0007712249c807375230875240078231227f8
+:10dfe00060ac21ad2212d0a812249c7521047522a8
+:10dff000007821122760ac84ad85ee24b412d0ab3a
+:10e0000012249c7821122760ac84ad85ee24a412e2
+:10e01000d0ab12249ce5a8f521c2af8e828f83a3da
+:10e02000a3a3a3a3a3a3a37403f0752216782212bb
+:10e03000276478251227607903e91224ef12e1772b
+:10e0400012249ce521a2e792af7900740312249c6c
+:10e0500085328285338302dc86f0ee242c12de4585
+:10e060007800797dee241cf584ef12e4b1faa3e088
+:10e07000fb22853282853383e0faa3e0fb1218117c
+:10e080002274f012251874fe1224b612274c74fe66
+:10e0900012248612db2612e142600f85328285331c
+:10e0a00083e0fa121811793a8076ee242cf527efe6
+:10e0b0003400f52885278212e12d1223fb12e18618
+:10e0c000ee2455f523ef3400f5247525057526005b
+:10e0d000782512276012c97612249ce5a8fac2afef
+:10e0e000852782852883ee241ef584ef12e150ee09
+:10e0f000245a12d09912d6bfa3a3a3a37402f0eaa4
+:10e10000a2e792af7522077822122764782312279c
+:10e1100060790174031224ef12e17712249c7900d4
+:10e12000740202e04dee242cf582ef3400f5837882
+:10e1300000797dee241cf584ef12e170e0faa3e093
+:10e14000fb22e912e231a3a3a3a3a3a3a3a3e0228a
+:10e1500012e167e8c333f8e933f9059212cf3a24a4
+:10e1600007f8e93400f92212e170e0f8a3e0f9229f
+:10e170003400f585059222e0fca3e0fdeefaeffb0a
+:10e180001216f774032212e1a912e19012e19c2207
+:10e19000e8240108e93400f9ee243222f582ef3454
+:10e1a00000f583e8f0a3e9f022882389240592e0b2
+:10e1b0002523f8a3e03524f92274f212251874fe01
+:10e1c0001224b612274ce912e22da3a3a3a3a3a302
+:10e1d000a3a3858225858326e06004793a803beeff
+:10e1e000240ff582ef12e73fa2e040ef12180b8aee
+:10e1f000238b24ac23ad24ec4d70047907801b12d3
+:10e20000e1251223fb12e18685258285268374078a
+:10e21000f0eefaeffb12179f790085328285338387
+:10e22000122754740212249c7f060225f012e23158
+:10e230002275f0e4a4f8a9f012dab7ae82af830534
+:10e24000922274f712251874fe1224b612274c7508
+:10e25000845c7585048004888489858584828585ad
+:10e260008312e4bd6017ea687002eb6970e98a8284
+:10e270008b8312e2808a828b83e4f0a3f002c9cb05
+:10e2800012e4c685848285858312e1a32274f71285
+:10e29000251874fe1224b612274ca2afe433fec236
+:10e2a000af90045512e2f2700c1237a1e5e170fc58
+:10e2b00075e1068026858482858583a3a312e2eb1f
+:10e2c0000592a3a3a3a3e028f8a3e039f98a828bdf
+:10e2d000830592a3a312e2e61237a1ee02c9c7f5a5
+:10e2e00082e52212de48e812e1a42212e4c622905e
+:10e2f00003fc12e2fae584458522e0f584a3e0f50b
+:10e30000852274f412251874fe1224b612274ceae2
+:10e31000feebff8921ee2435faef3400fb8a828b75
+:10e320008312e2eb9061d0e0fc7480c39cf522e89c
+:10e3300049700302e48de82424f582e912ce51fcf1
+:10e3400012e4a36c600302e48d888289835392fef9
+:10e35000a3a3858284858385852223e02402fce4af
+:10e360003400fde5239ce49dc365d03340481c1c6c
+:10e37000e522c39c24fef522e004f5d98882898336
+:10e38000a3a3a3e0f5d97c00800f8c23e82523f517
+:10e3900082e912d31de0f5d90c858482858583e05e
+:10e3a000fdecc39d40e4e5e170fc75e19588828950
+:10e3b0008312e4bd70938a828b8312de3f70030266
+:10e3c000e48d900485e0a2e0400302e48d90048790
+:10e3d000c3e09402a3e09400500302e48de594545a
+:10e3e00004f522700e12e4d34009759403e594a25b
+:10e3f000e250fa1219a98a238b24a823a924c3e87e
+:10e400009401e99400a2d265d033406612e6c9eccb
+:10e41000faedfb1223fbe894024057e8fa8cf0a4d3
+:10e42000caacf08df0a42cfce42cfb8e828f83a36d
+:10e43000a3e09af0a3e09bf090048712e499ee2405
+:10e440002c12d09912e4999004a3e0c0e0ee2429a4
+:10e4500012d099d0e0f0eefaeffb122dbcee2410b2
+:10e46000f582ef12e73fd2e3f0e5e170fc75e1429f
+:10e47000801be5227017e5a8f8c2af12eabfe59449
+:10e48000a2e25003759402e594a2e240fa8532823a
+:10e490008533835392fe02e8e9c3e098f0a3e09449
+:10e4a00000f022900455e02406f584a3e012e4b1c4
+:10e4b0002212e170e0228a848b8590045512e4c612
+:10e4c000e849229003f2e0f8a3e0f922906182e4a7
+:10e4d000f0a3f0e5a8f8c2af9004c6e0d2e012eadb
+:10e4e000c9e594a2e222e5e170fc75e191e5e170f5
+:10e4f000fc75e18102d91ae5e170fc75e19102d960
+:10e500001a74f612251874fe1224b612274c12e85b
+:10e51000f6ee2429f582ef12e73f04f0640370025f
+:10e52000e4f0e02425906000f09009b91222b69042
+:10e5300061951222c2900489e05401f91216738e7b
+:10e54000828f83a3a3a3a3a3a3a3a3a385822185cf
+:10e550008322ee241012d6b8a2e0e433f9aa21ab4c
+:10e560002212167912179375d923900489e0a2e03c
+:10e5700050047840800278000592e0a2e050047ace
+:10e580008080027a00e84a4405f5d90592e0a2e0cd
+:10e5900050067a917b0480047a8b7b0479061216ec
+:10e5a000497906aa21ab221216497904ee241212e7
+:10e5b000e6b57903ee241612e6b57909ee241912b0
+:10e5c000e6b57905ee242212e6b5ee2427f582efb2
+:10e5d00012e73f44a0f5d9e5e170fc75e195906044
+:10e5e0000d74c1f090045c80068584828585831259
+:10e5f000e2fa858482858583a3a3a3a3a3a3a8822b
+:10e60000a983e58445856005e0a2e740dc12e6c900
+:10e61000e5844585606f0592a3a385848285858303
+:10e620009003e912e13c0592e0c39afaa3e09bfb58
+:10e63000ea2cfaeb3dfb8882898312e6be12247332
+:10e64000eac39521faeb9522fb8e828f83a3a3a3c5
+:10e65000a3a3a312e6be122473ea2521f8eb352208
+:10e66000f9ecfaedfb1223fb8a218b22a821a922c7
+:10e67000e89404e994005006e82cf8e93df9e82410
+:10e68000fcf8e98005ec24fff8ed34fff99003f87d
+:10e6900012e2e690600e12e2e6a3ecf0a3edf07554
+:10e6a000910090618274c0f075a100c2c275a7028a
+:10e6b000d2ba02e9b8faef3400fb12164922e0f5ab
+:10e6c000217522007402782122ee241c12e743fcfb
+:10e6d000a3e0fdecc333fced33fd2274f6122518e4
+:10e6e00074fb122486ec4d60498532828533837435
+:10e6f00006f074011224ef744712c50a7403122441
+:10e70000ef740312c50aea240ff582eb12e73fd239
+:10e71000e0f0752105782112276474011224ef8539
+:10e7200082218583227821122760790c12de27123c
+:10e73000249c740502e9c3e584240ff582e5851263
+:10e74000e74622f582ef3400f583e02274f71225c4
+:10e750001874fe1224b612274c12e4b67004790025
+:10e76000801d9004c6e0a2e050047902801190045c
+:10e770009b1222b68584828585831222c27901028a
+:10e78000c9cb74f712251874fe1224b612274c1246
+:10e79000e4a32404602a14600514601b802be5e1c7
+:10e7a00070fc059290040ce0f874c128f58274099d
+:10e7b00012e73ff5e1802ce5e170fc75e11680235e
+:10e7c000e5e170fc75e117801a0592900485e0a2de
+:10e7d000e05009e5e170fc75e1108007e5e170fcaf
+:10e7e00075e11102bd8774f412251874fe1224b667
+:10e7f00012274c12d8bf8003121811e584243b1253
+:10e80000e86b70f4e584243712e86b600812181185
+:10e8100080f2121811e584243912e86b70f48584b3
+:10e8200082858583a3a3a3a3a3a3858223858324b1
+:10e83000e0ff7521e475220078211227607c007dbd
+:10e8400000aa84ab8512e87c12249cef8523828584
+:10e850002483f090045e12e28090045ee584f0a3cd
+:10e86000e585f09004bae014f08078fae58534008c
+:10e87000fb121631ea4b22faef3400fb121f077429
+:10e88000022274f412251874fe1224b612274c903a
+:10e89000045e12e8f9ee4f60468e828f8312e8ff25
+:10e8a0008e848f850592a3a3a3a3a3a3e0f521756e
+:10e8b00023e4752400059278231227607c007d00f4
+:10e8c000eefaef12e87b12249ce5210592f0ee248b
+:10e8d0001112d09974800592f09004bae004f0ee21
+:10e8e000faeffb8532828533831227547402122497
+:10e8f0009c7f040225f09003fce0fea3e0ff2212bf
+:10e90000e4c690045e12e1a322c082c0835392fe4b
+:10e91000906184e4f09061a0e0f8e4f0e5e170fc3f
+:10e9200075e1029061bfe060fae0f5bce0f5bc8003
+:10e93000159061bf12e95d12e95de5bc8a828b83a7
+:10e94000f0a3aa82ab83e9fc74ff2c190470e2e502
+:10e95000e170fc75e101e89061a002bcd2e0f5bd78
+:10e96000e0f5bde0f5bde0f5bd2274f612251875a1
+:10e97000212575220078211227607c607d0412c950
+:10e980007a12249c78211227607c007d007a607bbb
+:10e990000402b93b74f6122518e9fe7521057522ab
+:10e9a00000782112276012cf2b2422fce93400fdcd
+:10e9b00002de7d740112249c853282853383122706
+:10e9c00054740212249c7f020225f0c082c083533b
+:10e9d00092fe900497e08a828b83f090049812e96b
+:10e9e000f9f090049912e9f9a3f090049a12e9f968
+:10e9f000a3a3f012283c02bcd3e08a828b83a3221b
+:10ea0000c082c083e975f0e4a4f8a9f05392fe1225
+:10ea1000cf332411f582e912e73ff902bcd374f237
+:10ea200012251874fe1224b612274c8c238d24e96b
+:10ea300075f0e4a4feaff075250675260078251262
+:10ea400027600592900453e02ef582a3e03ff58302
+:10ea50000592a3a3a3a3a3a3a3a3a3ac82ad8312f4
+:10ea6000c97a12249c900453e02ef8a3e03ff9e801
+:10ea70002410f582e912e73fa2e0e4338523828582
+:10ea80002483f002e21ac082c0835392fe90605a3f
+:10ea9000e402bcd0c082c083e5e170fc75e101e511
+:10eaa000a8f8c2af5392fe12eabf90605a12db324e
+:10eab000906058e4f0a3f0a3f0a3f0a302bcd090c0
+:10eac00004c6e0c2e012eac922f0753400e8a2e709
+:10ead00092af22c082c0835392fe12e4cc400375f1
+:10eae00094019060517401f0a37484f090605fe42d
+:10eaf000f0906053f090605e7403f09061e9e4f090
+:10eb00009009c51222b69061951222c212ec00e95a
+:10eb1000c333f8e9c394149061a650077420f074cd
+:10eb2000188004e4f0741628906184f0e5e170fc2c
+:10eb300075e11802bcd374f5122518e9feeaff8bc3
+:10eb40002312e4cc40037594019060517403f0a348
+:10eb50007493f090605e7403f0906053e4f0906101
+:10eb6000e9f09009c51222b69061951222c212ec0a
+:10eb700000eec333f8eec394149061a650077405f9
+:10eb8000f074188005740ff0741628906184f0e515
+:10eb9000e170fc75e1f174022ff5d98523d98fd985
+:10eba00078008004e4f5d908e8c39f5023e523608a
+:10ebb0000814601414601580eb882174c92521f5b0
+:10ebc00082740912e73f80dd740f80d9745580d5b7
+:10ebd000e5e170fc75e19574036523906190700d1b
+:10ebe000e0d2e5f0e5e170fc75e104800be0c2e500
+:10ebf000f0e5e170fc75e11979701219c102d08855
+:10ec0000906054e4f0a37455f0a3f0a3f02274e8ec
+:10ec100012251874fe1224b612274c74f81224869a
+:10ec2000eafeebff802412f59ef521e4f522f523a0
+:10ec3000f52412f6261222a712f4fb900b2512f5ea
+:10ec400065f9900b25e8f0a3e9f0ee4f6029ee247a
+:10ec5000ff1eef34ffffee4f701d79ff7408122482
+:10ec60009c8532828533835392fe1227547402129c
+:10ec7000249c7f100225f05392fe12f59ef812f5a7
+:10ec8000547417680592701090079f12f57e9007d4
+:10ec90009f12f5fd790080c4a3aa82ab8374366805
+:10eca0006084741b687021059290079f12f53f12d3
+:10ecb00022b612f53a1222c212f5ef90079f12f512
+:10ecc00065f990079f02ec45740168702312f59e68
+:10ecd000c0e012f815d0e012f4f812f7ea12f59c31
+:10ece000c0e012f815d0e012f55112f7ec02ec4a30
+:10ecf000741068701112f59ec0e012f815d0e01281
+:10ed0000f4f8059280e4741968700e900b25e024e5
+:10ed1000fdf8a3e034ff02ec41741a68900b2570f3
+:10ed200005e024fe80ebe024fcf584a3e034fff54d
+:10ed300085742468703412f51f12228512f5bd7493
+:10ed40000c782112247312f5b7122285e526540f90
+:10ed5000f9e52249fb12f815e5250592f0a3ebf041
+:10ed6000a3e4f0a3f0059202ec3b742568702f1227
+:10ed7000f51f12228512f5bd7418782112217b121d
+:10ed8000f5b71222850592900b2878251222137868
+:10ed900021792512223912f6281222a780c7742160
+:10eda00068701d12f51f12228512f65f122285125d
+:10edb000f6261222a712f5ed12f5b71222a780a5aa
+:10edc000743468600302ee4b12f51f12228512f6ae
+:10edd0005f12228512f63212228585292d852a2e70
+:10ede000852b2f852c300592900b2c782d12221319
+:10edf00012f4ac600512f525800312f49812f4e3c6
+:10ee000012221312f4a3600e05929007a1e02525ab
+:10ee1000f582a3e08008749f2525f58274063526c7
+:10ee2000f58312f4831221ade525452645274528b3
+:10ee3000700302ec4a0592e08a848b850592f00506
+:10ee400092a30592a3aa84ab8580d7744668600319
+:10ee500002ef36900b341222b6853282853383124c
+:10ee600022c212f51f12228512f65f12228512f6b7
+:10ee70003212228585292d852a2e852b2f852c302f
+:10ee80000592900b2c782d12221312f4ac6005120f
+:10ee9000f525800312f49812f4e312221312f4a35e
+:10eea000601205929007a1e02525f582a3e03526a2
+:10eeb000f5838024749f2525f582740680f0c2f0c6
+:10eec000a2f0e433f525e4f526f527f5288532840c
+:10eed000853385782512224c12f4831221ade52565
+:10eee0004526452745286028eafcebfd8c848d8566
+:10eef000a3aa84ab85a882a9830592a38c848d855f
+:10ef00000592e0fc88848985e06c60b2d2f080b024
+:10ef10008532828533830592782112228512f4b5d9
+:10ef20007004d2f08002c2f0a2f0e433fa12f58845
+:10ef3000e4f0a302ed62740e68703412f50612223a
+:10ef4000850592900b34782112228512f5e2c0e0fb
+:10ef500012f4bed0e00592f0900b3878211221ad6a
+:10ef6000900b3c7821121f4c500302ec4a80dc7459
+:10ef70000c68703a12f5061222850592900b4078c3
+:10ef80002112228512f4bee0c0e012f817d0e0058d
+:10ef900092f012f7ec0592900b3078211221ad908f
+:10efa0000b347821121f4c400302ec4a80d6741cab
+:10efb00068706712f51f12228512f59cf812f4fb97
+:10efc0009007a1e02521f584a3e03522f585900b7b
+:10efd000341222b674041224ef1222c20592e0c049
+:10efe000e074041224efd0e00592f00592a37405ba
+:10eff0001224ef800d439201e00592f00592a305e3
+:10f0000092a318e870ef74041224ef5392fe1222b8
+:10f01000b612f53a1222c202ec3b740d68704a1225
+:10f02000f50c12228512f6321222850592900b34cd
+:10f030007821122285801412f46c12f4d8e0c0e01a
+:10f0400012f817d0e012f54d1221ad782579211272
+:10f050001f2240e3900b3c7821121f4c500302ec1e
+:10f060004a12f6031221ad80eb741d68704c12f544
+:10f070000c12228512f6321222850592900b3478fa
+:10f0800021122285801612f46c9007a112f808c094
+:10f09000e012f815d0e012f54d1221ad7825792156
+:10f0a000121f2240e1900b3c7821121f4c500302aa
+:10f0b000ec4a12f6031221ad80eb740f6860030274
+:10f0c000f16512f50c12228512f632122285059294
+:10f0d000900b3c7825121f4c405875210475220076
+:10f0e000752300752400782179251221d385328279
+:10f0f00085338378211222a78009900b2512f57e93
+:10f1000012f5fa853282853383782d122285852d7a
+:10f1100021852e22852f23853024900b30782112d3
+:10f1200021ad85328285338378211222a712f4ac77
+:10f1300070c8852521852622852723852824900bc4
+:10f140003078211221ad900b347821121f4c4003ee
+:10f1500002ec4a12f5e2c0e012f4bed0e00592f0f3
+:10f16000900b3080dc740268700f12f51f1222853c
+:10f1700012f6541221c002ed65740368700f12f587
+:10f180001f12228512f6541221ff02ed65740468e5
+:10f19000700f12f51f12228512f65412222602ed6c
+:10f1a00065740668700f12f51f12228512f654124c
+:10f1b000227202ed65740568700f12f51f12228528
+:10f1c00012f65412224c02ed65740768701812f59d
+:10f1d0001f12228512f65f12228578257921121fcf
+:10f1e000df059202edb8740868702b12f506122242
+:10f1f0008512f5bd12f4a3600f12f628122285784d
+:10f200002179291220f98008900b34782112228567
+:10f210005392fe02ed96743268701e12f50c1222a3
+:10f220008512f65f121f4c4004d2f08002c2f0a299
+:10f23000f0e433fa059202ef2d740a68701012f5ab
+:10f240000c12228512f65f121f3750e180db7433f7
+:10f2500068701612f50c12228512f65f121f0d60ef
+:10f2600004d2f080cac2f080c6740968701612f524
+:10f270000c12228512f65f121f0d7004d2f080afbf
+:10f28000c2f080ab740b68704312f51f1222850523
+:10f290009212f5aae4f526f527f52812f4fb12f5eb
+:10f2a000b0c529f52ae4f52bf52c78257929122209
+:10f2b0003912f55412f4b5600302ec4a059290f746
+:10f2c00090e02525f8a3e0352602ecc1741468709f
+:10f2d0001212f5aa12f4fb12f59ef9a82512f57286
+:10f2e00002ecc1741868703d12f5b0f52af52bf5e3
+:10f2f0002c12f4fb852921852a22852b23852c2499
+:10f300005392fe900b3078291221ad12f4b57003a0
+:10f3100002ec4a12f59ec0e012f815d0e012f55149
+:10f3200012f7ec80cf741568701d9007a112f66576
+:10f33000e8fae9fb12f588ebf0a3e4f0a3f012f58c
+:10f34000ed9007a302ec45741668704a90079f126f
+:10f35000f81a12f4fd858482858583e0f9121a3942
+:10f360008a848b85e5844585700302ec4a9007a565
+:10f370007401f09007a3e0faa3e0fb0592a3a3a316
+:10f38000a3a3a3a3a3e493f582740193f583059249
+:10f3900012250302ec4a742f6870179007a312f627
+:10f3a0005912228505929007a1e521f0a3e52202da
+:10f3b000ec49744068702712f51f12228512f5d6a9
+:10f3c000600f12f62812228512f4b56004d2f08084
+:10f3d00002c2f0a2f0e433fa5392fe02ef2d744120
+:10f3e00068701812f51f12228512f5d670df12f61a
+:10f3f0002812228512f4b560d880d2744268701643
+:10f4000012f51f12228512f65f122285e52178255a
+:10f4100012217b02f1e1744368701612f51f12226b
+:10f420008512f65f122285e521782512214802f126
+:10f43000e1744568701712f50c12228512f65f12fe
+:10f440001f374004d2f08002c2f002f22f744468e9
+:10f45000600302ec4a12f50c12228512f65f121fad
+:10f460004c5004d2f08002c2f002f22f85292f8581
+:10f470002a3085212d85222ee52f252df8e53035e2
+:10f480002ef92285212585222685232785242843b8
+:10f490009201900b30782122749f2529fa74063549
+:10f4a0002afb22e529452a452b452c22e52d452e10
+:10f4b000452f453022e52145224523452422852933
+:10f4c00027852a28852125852226e5272525f8e573
+:10f4d000283526f912f4d822749f28f5827406394b
+:10f4e000f5832285252985262a85272b85282c53d7
+:10f4f00092fe900b2c7829220592f0059290079f9e
+:10f50000eaf0a3ebf02212f51278292212f5127814
+:10f510002522900b25e584f0a3e585f005922212c3
+:10f52000f51278212205929007a1e02529f582a302
+:10f53000e0352af583aa82ab83220592900b25122f
+:10f54000f54322e0f582a3e0f58305922212f60b43
+:10f55000220592f090079f12f7fd90079fe582f039
+:10f56000a3e583f02212f56922e02404f8a3e03435
+:10f570000022059290f790e028f8a3e03922e024d9
+:10f58000fff8a3e034fff92212f591ea0592f0a307
+:10f5900022900b25e0f584a3e0f58522059212f573
+:10f5a000a22290079f12f64ae02212f5a2f5252228
+:10f5b00012f5a2f529e42212f62e78252212f5c1c1
+:10f5c000220592900b25e024fc12f5cd22f8a3e051
+:10f5d00034ff12f5f92212f5c1e5214522452345f4
+:10f5e0002422900b25e024ff12f640e022059290a1
+:10f5f0000b2512f56912f5f922f9900b25e8f0a315
+:10f60000e9f02212f591e412f60b220592f0900b2c
+:10f610002512f801900b25e582f0a3e583f0059211
+:10f62000900b38782122059212f62e78212212f6bc
+:10f63000472212f6387829220592900b25e024fc07
+:10f6400012f5cd12f64722900b25e0f584a3e0f5e4
+:10f65000850592220592900b2512f63d7821221203
+:10f66000f638782522e0f8a3e0f92274f212251882
+:10f6700074fe1224b612274c892174101224ef1242
+:10f68000f665e5c7f52275c7038a828b83e0f52509
+:10f69000a3a3e0f5268a828b83a3a3a3e0f524e548
+:10f6a00025a2e7400b9007a5e0700302f7d4e4f031
+:10f6b000900b25e0fea3e0ff9007a1eef0a3eff092
+:10f6c0008a828b83a3a3a3a3aa82ab8374fc252184
+:10f6d000f52180208a828b835392fee0c0e012f8ed
+:10f6e00017d0e00592f08a828b830592a3aa82aba1
+:10f6f0008312f7ea85212374ff2523f5210470d4b2
+:10f70000ecfaedfbea24ff1ceb34fffdea4b602230
+:10f71000888289835392fee0c0e012f817d0e0059a
+:10f7200092f0888289830592a3a882a98312f7eabe
+:10f7300080cee525a2e7400302f7d1e526c333f8e2
+:10f74000e433f95392fe90f79012f808f8a3e0f929
+:10f7500074ff68700374ff69606ce524c333fae4d6
+:10f7600033fb12f572f9e82af582e93bf58312f6cc
+:10f770006574ff68700374ff69604b12f574f9904b
+:10f78000079f12f5fd90f7ede0faa3e0fb121d9f35
+:10f79000e960337525857526017825122760900765
+:10f7a0009f059290f790e0f8a3e0f90592e0c398e6
+:10f7b000f525a3e099f526782512276079ba121a63
+:10f7c0003f740412249c5392fe900b25eef0a3ef9d
+:10f7d000f08522c78532828533835392fe122754e7
+:10f7e000740212249c7f060225f00592900b2512cc
+:10f7f000f7fd900b25e582f0a3e583f02212f801d6
+:10f800002212f543a3059222e028f584a3e039f5fe
+:10f81000850592e0220592900b2512f5942274f74b
+:10f8200012251874fe1224b612274ceafeebffeee6
+:10f83000600514600e805e12f8aa900b27e4f07940
+:10f84000018054900b27e06401700f12f8aa900712
+:10f85000a9e4f09007aaf0a3800cef9007a9f0901c
+:10f8600007aaecf0a3edf0900b277401f00592903d
+:10f8700007aa12277b05929007a9e0fc7d0090075c
+:10f88000a7e0faa3e0fb9007a6e0f9121da5740219
+:10f8900012249c80aa7900853282853383122754f2
+:10f8a000740212249c7f010225f0ef9007a6f090cd
+:10f8b00007a7ecf0a3edf02274f512251874fe12e0
+:10f8c00024b612274c90620ee0fee4f0906211e044
+:10f8d000f523a2e450197480f09008ce7407f0125a
+:10f8e000fae5600612facf1225039008cee4f0e59f
+:10f8f00023a2e2500b906211e4f09008cef0807fda
+:10f900009008cee0f87402687061906216e0ff051e
+:10f91000929008e5122777eff97a207b62121e4d4c
+:10f92000740312249c8f219008e812fada12faf07c
+:10f9300012fae86004744080027448906211f0e8a2
+:10f9400049701012fae5600612facf1225039008ea
+:10f95000cee4f0ee90620ef085328285338312277a
+:10f9600054740212249c7f030225f074066870060a
+:10f9700012facf1225039008cee0600302fa67e581
+:10f9800023a2e050ce7cdd7d0879087a207b6212cc
+:10f990001e539008ece4f0a3f09008dde054e06022
+:10f9a0001c24e0700302fa3924e0606f24c0604533
+:10f9b00024e0700302fa4824e0606f8030a3e01472
+:10f9c000601c24fe601324fe600a24fc601524fee3
+:10f9d00060168019121ecb807c121ec58077121e05
+:10f9e000bf8072121ee3806d121eef80689008cef9
+:10f9f0007404f08068a3e0600e24fa600f24fe60b7
+:10fa00001024fe601180e6121eb38049121ed180c0
+:10fa100044121edd803f121ee9803a9008ec748f7c
+:10fa2000f0a3741ef0121e8f802b9008ec7495f0da
+:10fa3000a3741ef0121e95801c9008ec7483f0a332
+:10fa4000741ef0121e83800d9008ec7489f0a3746c
+:10fa50001ef0121e899008cee06404700474608069
+:10fa6000027440906211f09008cee0f87401687062
+:10fa70004d7523029008e8e0f8a3e0f9c3e894206c
+:10fa8000e994005007e8ff75230a80027f20059261
+:10fa90009008e5122777eff97a207b62121e5f74d7
+:10faa0000312249c8f2112faf012fadae5239062f5
+:10fab00011f0efc39420400302f95302f943740597
+:10fac00068600302f95312facf12250302f95305b5
+:10fad000929008ec12fd59059222c3e09521f0a303
+:10fae000e09400f0229008ece0f8a3e0f9e8492265
+:10faf0009008e5e0f9a3e0faa3e0fbe92521f9eaa3
+:10fb00003400fa9008e5e9f0a3eaf0a3ebf0a322b1
+:10fb100074f61225187800882174cf2521f5827497
+:10fb20000812fb3c40f17800882174d42521f5822d
+:10fb3000740812fb3c40f17f020225f03400f5838b
+:10fb4000e9f008e8c3940522c082c0835392fe9076
+:10fb500008c77402f0a3e4f09008cef07903121ef7
+:10fb60003502fc9574f6122518752142752200782d
+:10fb7000211227607c007d007aee7b08121f07743b
+:10fb80000212249c9008ea7401f09008ebf09008af
+:10fb9000c704f0900369e0a2e1500e90620f740375
+:10fba000f0e0a2e750fb439a02808cc082c08353ee
+:10fbb00092fe900369e0a2e1500853f4fed2904314
+:10fbc000fe0102fc9574f712251874fe1224b61279
+:10fbd000274c8a848b85e9f8740b1224ef12fc6f92
+:10fbe000600c439201e0121fc212fc6470f402fd2b
+:10fbf0003e74f7122518e9feeb90036bf0eaa3f0d0
+:10fc0000eda3f0ec12fc2a741af012145702fd4f07
+:10fc100074f7122518e9feed90036bf0eca3f0ebfe
+:10fc2000a3f0ea12fc2a744a80dfa3f0a3e4f0ee0a
+:10fc3000a3f0a37420f0a32274f712251874fe1207
+:10fc400024b612274c8a848b85e9f8740b1224efb2
+:10fc500012fc6f600c121fa1439201f012fc647041
+:10fc6000f402fd3ee9240109ea3400fa18e822e032
+:10fc7000fca3e0fda3e0feecf9edfaeefbe822c008
+:10fc800082c0835392fe9008dbe054106007e0547a
+:10fc9000eff0121e2fd083d08202111874f71225b4
+:10fca0001874fe1224b612274ceafee5c7ff75c78a
+:10fcb0000312fd54ee24fe600814605d14602e8073
+:10fcc0007b7aee7b08121e9be960719008ebe06086
+:10fcd0006b9008efe0fb9008ebe0f8ebc398405c1a
+:10fce0007c007d007a05790312fd54804a9008ef6c
+:10fcf000e0f89008eee0fae8c39af895e0f9e849f0
+:10fd0000603a9008ebe0fac3e89ae99400402d7c51
+:10fd1000007d00e8fb7a05801c906211e0a2e040c3
+:10fd2000047840800278009008eae0600f7c007d53
+:10fd300000e8fb7a06790305921225038fc7853206
+:10fd4000828533835392fe122754740212249c7fbf
+:10fd5000010225f00592900b03e0f582a3e0f58304
+:10fd60002274f6122518e9fe8e21752200782112e0
+:10fd70002760eafcebfd900931e0f8743228fa7450
+:10fd8000093400fb121f01740212249c900931e017
+:10fd90002ef002fb37c082c0835392fe900931e0ff
+:10fda00012fedc02fc9574f212251874fe1224b6c1
+:10fdb00012274c89218a228b23ecfaedfbe5226085
+:10fdc0003714603414700302fe6914600914601c57
+:10fdd00014603502fe7ee5239008eaf060097b039b
+:10fde0007a0079071219eb790102fec9e523900820
+:10fdf000ebf060f37b0480e8a923121e71740165a7
+:10fe00002270e4121e7780df900931e0fc8c82a81a
+:10fe1000827440c398fa95e0fb852325c3ea9525b3
+:10fe2000eb9400a2d265d03350067440c39cf523f6
+:10fe3000743228fc74093400fdab237a027903e59f
+:10fe400021c333fee433ff74092ef584740b3ff5b0
+:10fe500085059212fad4122503e9608b900931e0ee
+:10fe60002523f012fedc02fde79008eee0f8a3e0a7
+:10fe7000c398f8c3952350028823e52370047900c2
+:10fe80008047f52575260078251227609008eee05a
+:10fe9000f874f028fc74083400fd121f017402127b
+:10fea000249c9008eee02523f0f8a3e0687018e4a5
+:10feb000f09008eef09008dce054dff090620e74f1
+:10fec00004f0906214e4f0a9238532828533831212
+:10fed0002754740212249c7f060225f0f97a327ba3
+:10fee00009121ea1900931e4f02274f7122518744a
+:10fef000fe1224b612274c8a848b85a2afe433fc11
+:10ff0000c2af858482858583e0faa3e0fbea4b607b
+:10ff10001a8a828b83e0f8a3e0f9e80592f0a3e95e
+:10ff2000f08a828b83e40592f0a3f0ec806174f791
+:10ff300012251874fe1224b612274c8a848b85ec85
+:10ff4000f8edf9a2afe433fcc2af858482858583e6
+:10ff5000e0faa3e0fbea4b7009e80592f0a3e9f0b0
+:10ff6000801d8a828b83858284858385439201e00c
+:10ff7000faa3e0fbea4b70eae80592f0a3e9f0eca3
+:10ff8000a2e092af8532828533835392fe800aa22b
+:10ff9000e092af8532828533831227547402122493
+:10ffa0009c7f010225f074f712251874fe1224b606
+:10ffb00012274ca2afe433f521c2af8a828b83e0d3
+:10ffc000f8a3e0f9e84960248c848d8580048e8450
+:10ffd0008f85858482858583e0fea3e0ffee4f70e8
+:10ffe000ed858482858583e8f0a3e9f0ecf8edf9ee
+:10fff0008a828b83e8f0a3e9f0e5218092ffffff7e
+:020000040001f9
+:1000000074f6122518752183752201782112276054
+:10001000797f0290ca74f412251874e0122486794c
+:10002000008a828b83a3e060061460030280c78a83
+:10003000828b83a3a3e0fe8a828b83a3a3a3e0f534
+:10004000248a828b83a3a3a3a3e0ff8a828b83a34a
+:10005000a3a3a3a3e0f523803a75f900a2f840fc1e
+:10006000e5f9c0e01280efd0e0f008e8c39f40e976
+:10007000eff521782112276474011224efac82add0
+:10008000837900852421aa217b0012159574011221
+:10009000249c1e1217ffe96024ee6021e5237800fe
+:1000a00070c9e8c39f50c975c100e586a2e040fa57
+:1000b000e5c1c0e01280efd0e0f00880e5ee8532c7
+:1000c00082853383f079018532828533838582216d
+:1000d00085832278211227608921752200782112d8
+:1000e000276079b112859812249c74200285ef88cc
+:1000f00021853282853383e5822521f582e58334ab
+:1001000000f5832274f712251874fe1224b6122704
+:100110004c128ec41217f379ac0288c2c082c0831d
+:10012000128dc01217ed79ad028c1a74f6122518d3
+:100130001217e78a218b22782112276079ae02906c
+:10014000cac082c0831217e179af028c1a74f6120a
+:10015000251874db122486853282853383aa82ab0c
+:10016000831217c38532828533838582218583225a
+:1001700078211227607521257522007821122760c9
+:1001800079b012859812249c7425803b74f6122550
+:100190001874fe1224b612274c8a848b851286a608
+:1001a000122760797e128feb12249c7a000592e070
+:1001b000f9121d33800612859812249c853282859f
+:1001c0003383122754740212249c7f020225f07498
+:1001d000f412251874fe1224b612274ceafeebff27
+:1001e0008e848f850592a3a3a3a3a3a3a312277b29
+:1001f0008e848f85a3a3a3a3a312277b12821b1235
+:100200001493740412249c8a218b22782112276073
+:100210001282af12276079790285938e828f8305cf
+:1002200092a3a312851a1287012274f4122518745e
+:10023000fe1224b612274c8a848b857a130592e02d
+:10024000f91214998a218b2278211227601286a62e
+:10025000122760797702859374f412251874fe12c0
+:1002600024b612274ceafeebff8e848f850592a3fd
+:10027000a3a3a3a3a3a312277fee24081285281209
+:1002800027608e848f850592a3a3a3a3a312277b47
+:1002900012821b121559740512249c8a218b227814
+:1002a000211227601282af12276079800285938e17
+:1002b000828f83e0f52175220078212274f61225c1
+:1002c000188a828b83e0f91215178a218b227821f4
+:1002d00012276079870290ca74f712251874fe12eb
+:1002e00024b612274c8a828b838582848583850578
+:1002f00092a3a3e0fbe5822403fce5833400fd85a3
+:100300008284858385a3e0fa0592e0f91215d179fc
+:10031000750288c274f712251874fe1224b61227cb
+:100320004c1289e11215d779760288c274f412252d
+:100330001874fe1224b612274c74df122486eafecb
+:10034000ebff8532828533837420f08e848f8505a0
+:1003500092a3a385822185832205927821122760aa
+:1003600074031224efac82ad83858482858583e09b
+:10037000f98e828f831289b4121589740212249c1b
+:100380008a238b2474011224ef85822185832278ad
+:100390002112276074021224ef1282b312276078b0
+:1003a00023122760059212277b8e848f8512277b6c
+:1003b0007973121a3f740a12249c74210285e17425
+:1003c000f412251874fe1224b612274c74df12247e
+:1003d000868a848b858532828533837420f085827a
+:1003e00021858322782112276074031224efac82c6
+:1003f000ad838584828585831289b412158f74023a
+:1004000012249c8a238b2474011224ef8582218577
+:100410008322782112276074021224ef1282b31211
+:1004200027607823122760059212277b7974128f38
+:10043000e5808474f412251874fe1224b612274c39
+:10044000eafeebff8e848f850592a3a3a3a3a312dc
+:10045000277f1285251227608e828f8312822112b8
+:100460001553740312249c8a218b22782112276051
+:100470001282af122760798102859374f4122518d5
+:1004800074fe1224b612274c8a848b85858482855b
+:100490008583a3a3a3e0fca3e0fd12855e121547ac
+:1004a0008a218b2278211227601286a61227607972
+:1004b0008302859374f412251874fe1224b6122751
+:1004c0004ceafeebff12180bea4b60398e848f85e5
+:1004d0000592a3a3a3a3a312277f12852512276049
+:1004e0008e848f850592a3a3a312277b8e828f8390
+:1004f000059212851ae0f912154d740512249c8a92
+:10050000218b2280067521827522017821122760b5
+:100510001282af12276079828079a3e0fca3e0fd0c
+:100520008e828f8322ee2406f521ef3400f522051a
+:100530009278212274f412251874fe1224b6122720
+:100540004c12855a1215418a218b2278211227607c
+:100550001286a6122760798480398a848b858584e7
+:1005600082858583a3e0faa3e0fb0592e0f922747b
+:10057000f412251874fe1224b612274c12855a1252
+:10058000153b8a218b2278211227601286a612271a
+:100590006079881285988049121a3f74042274f495
+:1005a00012251874fe1224b612274ceafeebff8eb9
+:1005b000848f850592a3a3a312277f1286ef1215bd
+:1005c00035740112249c8a218b2278211227601213
+:1005d00082af122760798580ba12859812249c74a4
+:1005e0000112249c853282853383122754740212af
+:1005f000249c7f040225f074f412251874fe122442
+:10060000b612274ceafeebff8e848f850592a3a3da
+:10061000a3a3a312277f1285251227608e828f83c2
+:10062000128221121529740312249c8a218b2278ac
+:10063000211227601282af12276079890285937494
+:10064000f412251874fe1224b612274c1289e112f6
+:10065000152f8a218b2278211227601286a6122755
+:1006600060798a02859374f412251874fe1224b6f8
+:1006700012274c8a848b85858482858583a3e0fc40
+:10068000e58424020a0ae5853400fb0592e0f912ac
+:1006900015238a218b2278211227601286a6122721
+:1006a00060798b0285930592e0f521752200059211
+:1006b00078212274f412251874fe1224b612274ce5
+:1006c000eafeebff8e848f850592a3a3a312277ffa
+:1006d0001286ef12151d740112249c8a218b227838
+:1006e000211227601282af1227607986028593ee6d
+:1006f0002404fcef3400fd8e828f83059212870163
+:1007000022a3e0faa3e0fb8e828f83e0f922028c21
+:100710000074f612251874fe1224b612274c74fbce
+:100720001224868a848b85853282853383aa82aba4
+:10073000830592e0f91217c9853282853383858259
+:100740002185832278211227607521057522007882
+:10075000211227601299aa122760797b12912b121d
+:10076000249c74050281b974f612251874fe1224b3
+:10077000b612274c8a848b8512180bea4b6023e54e
+:10078000842402fce5853400fd0592e0f912176f20
+:10079000e9f5216005752202800e752100752200a1
+:1007a000800675218275220178211227601286a6a3
+:1007b000122760797c0281b674f612251874fe1235
+:1007c00024b612274c8a848b850592e0f9121757bc
+:1007d000e9f5216005752202800675210075220069
+:1007e00078211227601286a6122760797d0281b6d1
+:1007f00074f612251874fe1224b612274c8a848bc4
+:10080000850592e0f9121775e9f521600575220258
+:10081000800675210075220078211227601286a6b5
+:10082000122760797a0281b674f612251874fe12c6
+:1008300024b612274c8a828b83a3a3e0c0e08a826d
+:100840008b83e0f584a3e0f585d0e00592f0e4f534
+:1008500021f52205927821122760795e028ebe74fe
+:10086000f41225188a828b83e0f521a3e0f5228516
+:100870002182f583128e96122760782112276079e3
+:100880005f1285980285efc082c083795c028c1a62
+:1008900074f61225188a828b83e0f912145de4f550
+:1008a00021f522782112276079700290ca74f7121c
+:1008b000251874fe1224b612274c128d741214637c
+:1008c0007971121a3f85328285338312275474025c
+:1008d00012249c7f010225f074f612251874fa1276
+:1008e000248679067cea1291cc8582218583227840
+:1008f00021122760795d128feb12249c740602810d
+:10090000c774f612251874fe1224b612274c8a8278
+:100910008b83a3e0f98a848b850592a3a38a828bbb
+:10092000830592e0aa84ab8560051216c780031286
+:1009300016c1e4f521f5227821122760799c028ef8
+:10094000be74f612251874fe1224b612274c1289b2
+:100950009be0fca3e0fd0592a3a31289b4121469e5
+:100960008a218b227821122760799a028ebe74f632
+:1009700012251874fe1224b612274c12899ba3a3c9
+:10098000e0fca3e0fd05921289b41214758a218b54
+:10099000227821122760799b028ebe8a828b838502
+:1009a00082848583850592a3a3a3a3e0f98582842d
+:1009b00085838522e0faa3e0fb2274f412251874e3
+:1009c000fe1224b612274c1289e11219198a218bc2
+:1009d0002278211227601286a6122760798c028560
+:1009e000938a848b85858482858583a3e0fa05922a
+:1009f000e0f92274f412251874fe1224b612274c62
+:100a000074c01224868a828b837523007524007932
+:100a100000e0f8c394065017853284853385ac8492
+:100a2000ad85a3e0fb7a02128a6212250380067567
+:100a300023807524018532828533838582218583d5
+:100a400022782112276089217522007821122760df
+:100a50007823122760796812912b12249c7440022b
+:100a600085e1e8c333fee433ff74092ef584740b8b
+:100a70003ff5850592e0f582a3e0f58305922274a7
+:100a8000f512251874fe1224b612274ceafeebff6d
+:100a90007523008e828f83a3e0fb74ff6b602b7c39
+:100aa000007d007a0479008e828f83e0c333f521c4
+:100ab000e433f52274092521f584740b3522128a5a
+:100ac00071122503e970037523018e828f83a3a31e
+:100ad000e0fb74ff6b60227c007d007a0379008e5e
+:100ae000828f83e0128a63122503e97004d2f080ba
+:100af00002c2f0a2f0e4334223e523a2e0500875dd
+:100b0000218075220180067521007522007821124e
+:100b100027607969128feb12249c8532828533839a
+:100b2000122754740212249c7f030225f074f612db
+:100b3000251874fe1224b612274c8a828b83e0f8a3
+:100b4000c394065027e5822402fce5833400fda30c
+:100b5000e0fb7a017900128a62122503e9600875c8
+:100b60002100752200800b75218780037521807517
+:100b7000220178211227607964028ebe74f6122554
+:100b80001874fc122486853282853383aa82ab8353
+:100b90001217cf121805e9f52175220078211227c6
+:100ba0006074051224ef128ff1122760740612246c
+:100bb000ef128ff112276074071224ef128ff112d7
+:100bc000276074081224ef128ff1122760796012e7
+:100bd0001a3f740a12249c74040281c7c082c08325
+:100be000121865796c8033c082c0837cff7dff8ad8
+:100bf000828b835392fe1289b412185f796f801a28
+:100c0000c082c083128dc0121a2dd083d0820211ef
+:100c100018c082c083121835796a121a3f80eb74ab
+:100c2000f412251874fe1224b612274c74c0122434
+:100c3000868a848b85858482858583a3a3a3a3e08c
+:100c4000f8c394405004e8ff80027f40e5c7fe856a
+:100c500084828585837821122285740f7821122160
+:100c600062e521f5c78f2175220078211227608562
+:100c700084828585837821122285ac21e5224480f7
+:100c8000fd74021224efaa82ab83121f01740212b8
+:100c9000249c8ec785328285338385822185832279
+:100ca00078211227608f2175220078211227600594
+:100cb000921227737962128fe5028a5a74f2122512
+:100cc0001874fe1224b612274c74c01224868a842b
+:100cd0008b857940853282853383ac82ad830592e2
+:100ce000e0faa3e0fb121859e9f874ff68700e757a
+:100cf0002500752600752380752401800e88828565
+:100d0000822575260075230075240085328285337f
+:100d100083858221858322782112276078251227f6
+:100d2000607823122760796e12912b12249c7440f4
+:100d300012249c8532828533831227547402122434
+:100d40009c7f060225f074f612251874fe1224b654
+:100d500012274c128d74121841e960087521007534
+:100d60002200800675218275220178211227607980
+:100d70006d028ebe8a848b85858482858583a3a33c
+:100d8000e0f9e5842403fce5853400fd0592e0faf2
+:100d9000a3e0fb2274f712251874fe1224b6122762
+:100da0004c1289e11214ab79930288c2c082c083cd
+:100db000128dc0a3aa82ab831218897992028c1a71
+:100dc0008a828b835392fee0f92274f61225188ae8
+:100dd000828b83a3a3a3a3a3a3e0f91214bd8a214a
+:100de0008b227821122760799d0290ca74f6122511
+:100df0001874fe1224b612274c1289e11214c38a09
+:100e0000218b2278211227607994028ebe74f6120b
+:100e100025188a828b83e0f91214a58a218b227807
+:100e20002112276079950290ca74f412251874fe75
+:100e30001224b612274c74ff1224868a848b8505ef
+:100e400092a3a3a3a3a3a312277b8a848b85a3a326
+:100e5000a3a312277b8a848b85a3a312277b8a8472
+:100e60008b8512277b74081224efac82ad83790046
+:100e70007a007b0012148d740812249c128e8c123e
+:100e80002760782112276079980285d98a218b22e0
+:100e9000853282853383e0f523752400782322741c
+:100ea000f612251874fe1224b612274c128ec412a4
+:100eb00014b1e4f521f52278211227607999128f77
+:100ec000eb0281b98a828b83858284858385059232
+:100ed000a3a3e0fb858284858385a3e0fa0592e0e5
+:100ee000f92274f412251874fe1224b612274c74d9
+:100ef000ff122486ea240df584eb3400f585059273
+:100f000012277bea240bf584eb3400f58512277b4e
+:100f10008a848b85a3a3a3a3a3a3a3a3a312277b44
+:100f20008a848b85a3a3a3a3a3a3a312277b7408fe
+:100f30001224efac82ad838a828b830592a3a3a394
+:100f4000a3a3a3e0f912148d740812249c128e8cb2
+:100f5000122760782112276079960285d974f612db
+:100f6000251812149f8a218b2278211227607997e5
+:100f70000290ca74f612251874fc12248612188383
+:100f8000e9f52175220078211227607991128feb03
+:100f900012249c7e00853282853383aa82ab83ee45
+:100fa000f9121997e9603474031224ef128ff112c9
+:100fb000276074031224efe05401f52178211227f1
+:100fc0006074041224ef128ff11227608e217821b1
+:100fd00012276079d0128fe512249c0eeec394087c
+:100fe00040b3028bd7121a3f740822121a3f7402c0
+:100ff00022e0f52178212274f6122518900364125c
+:1010000082b31227607961128feb12249c7e0080dc
+:10101000087a00eef9121d330e900364e0f8eec377
+:101020009840ee0281cac082c083128dc01216bbe6
+:1010300079aa028c1a74f612251874fe1224b612bc
+:10104000274c8a848b850592a3a3a312277fea24c9
+:1010500004fceb3400fd8a828b830592a3a3e0f9a4
+:101060008a828b831289b4121595740112249c8a8a
+:10107000218b2278211227607972028ebec082c035
+:1010800083128dc012190d798d028c1a74f71225f6
+:101090001874fe1224b612274c128ec4121913793a
+:1010a0008f0288c274f61225188a828b83e0f912a7
+:1010b0001907e960087521007522008006752180f6
+:1010c0007522017821122760798e121a3f0281c59c
+:1010d00074f612251874fe1224b612274c8a848bdb
+:1010e00085858482858583a31222b60592e0f91254
+:1010f00019258a218b2278211227607990028ebed1
+:1011000074f41225188a238b24e9fe8c218d227811
+:10111000211227608e217522007821122760782302
+:1011200012276079bc12912b0285ef121a3f7406c8
+:1011300022c082c083796b121a3f7add7b1b1218a2
+:1011400047028c0a74f612251874fe1224b6122770
+:101150004c8a848b850592e0f91217d5e9f833950e
+:10116000e0f9e82499f521e934fff52278211227e6
+:10117000601286a612276079780281b674f612256d
+:101180001874ff12248679017ce71291cc1282b385
+:1011900012276075210178211227607521037821bb
+:1011a0001227607521477821122760752101782167
+:1011b0001227607821122760782112276079631244
+:1011c0001a3f740e12249c74010281c77dff853280
+:1011d00082853383aa82ab831214338532828533ae
+:1011e000832274f61225188a828b83a3a3a3a3a358
+:1011f000a3e0f9121685e9f5216005752202800643
+:10120000752100752200782112276079650290ca45
+:1012100074f61225188a828b83a3a3a3a3a3a3e049
+:10122000f912168be9f521600575220280067521f9
+:1012300000752200782112276079660290cac08268
+:10124000c0831216917967028c1a5392fe0211180c
+:1012500074f212251874fe1224b612274ce9feea25
+:10126000ff8b2290060be0f8748b28fa740534008b
+:10127000fbef700302933c24fb600914700302939c
+:10128000e7029403e0c39404503274041294205093
+:101290000ae0f87404c398f5218003852221eafc52
+:1012a000ebfdab21129408128a71122503e9f8c5ef
+:1012b00022c39522f52290060be028f0e0c39404a7
+:1012c000500302940390058be060057900121a2dfb
+:1012d00090060be0f890058ce02404c398f8c395c1
+:1012e0002250028822e8602690060be0f8748b28d2
+:1012f000fc74053400fdab22129408128a71122589
+:1013000003e9f8e52268700690060be028f09006e5
+:101310000be0fa90058ce02404f8e43400f9e86a64
+:101320007001e9600302940390060be0f97a8b7b6d
+:1013300005121c1390060be4f002940374401294ff
+:1013400020a2d265d0335008e0f87440c398f5234a
+:10135000e523c3952250030293e3852325752600d8
+:101360007825122760121f01740212249c90060b2c
+:10137000e02523f0e0c39404500302940390058c0d
+:10138000e0fc90060be0faec2404f8e43400f9eaff
+:1013900098e499406e74042cf523f97a8b7b05123e
+:1013a0001c1390060be0c39523f07c0090060be025
+:1013b000f8ecc39850be8c82a882852325e82525a9
+:1013c000fae43400fb748b2af58274053bf583e064
+:1013d000c0e0748b28f58274053400f583d0e0f00a
+:1013e0000c80c97900801ee5c7f52490036ae0f5fa
+:1013f000c790ff25e0f974ff6960057a00121d5758
+:101400008524c77901028d337a027900eec333f562
+:1014100023e433f52474092523f584740b35242241
+:10142000c398f895e0f9852223c3e89523e9940051
+:101430002274f712251874fe1224b612274c8a82e1
+:101440008b83a3a3e0f88a828b83a3a3a3e0fde8a8
+:10145000c3940a40077900121a2d805be875f003e7
+:10146000a4f8a9f074cf28f584745339f5858584e0
+:1014700082858583a3a3e493f8edc39850d7ea242b
+:1014800004faeb3400fbedc333f8e433f9e40592de
+:101490009328f582a3e49339f5830592e02408f5b7
+:1014a00084a3e03400f585e4059293f582740193fa
+:1014b000f58305921225030288c574f61225187467
+:1014c000fe1224b612274c8a828b83e0f8c3940262
+:1014d0004008752180752201803fa38a848b850591
+:1014e00092a3a3e8701875ab00e06005438c0180ff
+:1014f00003538cfe7589000592e0f5ab8016758d5f
+:1015000000e06005438c068003538cf9758a000562
+:1015100092e0f58de4f521f5227821122760799e7d
+:10152000028ebe74f612251874fe1224b612274cd1
+:101530008a848b85e4f521f522782112276079a031
+:10154000128feb12249c858482858583a3a3e0fb04
+:101550001289e5121d4b0281bc74f612251874fe27
+:101560001224b612274c8a848b850592a3a3a3a3c9
+:10157000a312277f8a828b830592a3a3a3a3e0f9fa
+:101580008a828b831222b6121d51740112249ce4ac
+:10159000f521f5227821122760799f028ebe74f61c
+:1015a0001225187521007522008a828b83e060085d
+:1015b00014600b14600e801aa3e0f5fd801aa3e0fe
+:1015c000f5fe8014a3e0541ff8e5ff54e048f5ff52
+:1015d0008006752180752201782112276079a10289
+:1015e00090ca74f61225187521007522008a828b24
+:1015f00083e0600814600b14600e801aa3e0f5f31a
+:10160000801aa3e0f5f48014a3e05407f8e5ff5432
+:10161000f848f5f58006752180752201782112279a
+:101620006079a20290ca74f612251874fe1224b6cc
+:1016300012274c8a828b83752100752200e0f8c343
+:1016400094034008752180752201804e858284852f
+:1016500083850592a3a3e870150592a3e0f58f0595
+:1016600092e0600553f7df803143f720802c74014e
+:101670006870150592a3e0f5f60592e0600553f752
+:10168000bf801743f7408012e06004780080027842
+:10169000800592a3e0541f48f5f71297f4122760d3
+:1016a00079a3028ebe74f612251874fe1224b612a7
+:1016b000274c7521007522008a828b83e060081414
+:1016c000601d14603280488a848b850592a3a3052f
+:1016d00092a3e0f45580f80592e048f58080368ac0
+:1016e000848b850592a3a30592a3e0f45590f80599
+:1016f00092e048f590801e8a848b850592a3a3050d
+:1017000092a3e0f455a0f80592e048f5a080067594
+:1017100021807522011297f412276079a4028ebeef
+:1017200074f21225188a828b837521007522007548
+:101730002500e0f523600814600b14600c8010e5b0
+:1017400080f5258010e59080f8e5a0f525800675e8
+:101750002180752201a3e0f8e52558f525752600be
+:1017600078251227607524007823122760782112cb
+:10177000276079a512912b028d3e74f612251874fc
+:10178000fe1224b612274c74e01224868a848b85bc
+:10179000858482858583a3a3e0f8c394205004e860
+:1017a000ff80027f20effc853282853383aa82abe3
+:1017b000830592e0f9121d87e9fe0592a3e060031c
+:1017c000121d75853282853383858221858322129d
+:1017d00097f41227608e217522007821122760e489
+:1017e000f521782112276079a812912b12249c747c
+:1017f000200281b95392fe78212274f612251874c2
+:10180000fe1224b612274c8a848b858584828585b6
+:1018100083a3a3e0fce58424030a0a0ae5853400d7
+:10182000fb0592e0f9121d8deaf5210592a3e06017
+:1018300003121d757522001297f412276079a90210
+:101840008ebe74f512251874fe1224b612274c8a27
+:10185000218b228a828b83a3a3a3a3a3ac82ad8313
+:101860008a828b83a3a3a3a38a848b850592a3a3d7
+:10187000a3a884a9858a848b85a3a3aa84ab858524
+:101880002184852285a3ae84af8585218485228528
+:10189000e0701475864275c4021298c8f5c58c8232
+:1018a0008d83e0f5c2801275f84275fb021298c86c
+:1018b000f5fc8c828d83e0f5fae4f521f5227821a0
+:1018c00012276079a6028b140592e0541ff5218837
+:1018d000828983e0c43354e0f88a828b83e0c43386
+:1018e0003354c0f98e828f83e0a2e0e433131349ae
+:1018f0004845212274f612251874fe1224b61227c8
+:101900004c8a848b85858482858583a3aa82ab8358
+:10191000e0c39441401de4f521f5227821122760af
+:1019200078211227601299aa1227607521827522e8
+:1019300001806a7c00800fe0f5f9a2f840fce5f92f
+:1019400088828983f00c8a828b83e0f8ecc39850fc
+:101950002e8c82a882e58428f582e5853400f58303
+:10196000a3a3744b28f874053400f90592e005929e
+:1019700070c5e0f5c1e586a2e040fae5c180c17519
+:10198000214b75220578211227608a828b8312826f
+:10199000b31227601299aa122760e4f52178211268
+:1019a000276079a7128fe50281b90592e0f521053c
+:1019b0009278212274f412251874fe1224b612278c
+:1019c0004c8a828b837521007522008582848583f1
+:1019d000850592a3a3a3a884a98585828485838590
+:1019e000a30592e014600924fe604d14606f800a24
+:1019f0000592e0f523c39405400875218075220106
+:101a0000807e129a95c0e074a02523f5827462341a
+:101a100000f583d0e0f0888289831289b40592e0d2
+:101a200033f8e433f974a628f582746239f583ea51
+:101a30000592f0a3ebf080480592e0f523c39402f1
+:101a400050b8129a8e700b8acc88828983e0f5cdcb
+:101a5000802e8ace88828983e0f5cf80230592e0ac
+:101a6000f523c394025093129a8e700b8aec8882ed
+:101a70008983e0f5ed80098aee88828983e0f5efbd
+:101a80001297f412276079ab128feb0285e1129a5c
+:101a900095fae523220592a3a3e054073333335488
+:101aa000f8440422028c0074f61225187521817501
+:101ab0002201782112276079b30290ca74f61225a8
+:101ac00018752181752201782112276079b402905e
+:101ad000ca74f61225187521817522017821122702
+:101ae0006079b50290ca74f4122518892375240010
+:101af000740978231224738a218b227402782112ac
+:101b00002464aa21e5225401fbe42ae5243bfb02dc
+:101b10009bb374f712251874fe1224b612274c7466
+:101b2000fc122486e9fe8532848533859009f4749d
+:101b3000041222dbeef4853282853383f07904ac23
+:101b400082ad83121463740412249c85328285331f
+:101b500083122754740212249c7f010225f074f42e
+:101b600012251874fc1224868921ebfe74031224ba
+:101b7000efeaf0eef4853282853383f074021224aa
+:101b8000ef74fff074011224ef74ff129c2685217c
+:101b90002375240074097823122473faab241214d9
+:101ba000637404800b853282853383122754740258
+:101bb00012249c7f040225f074f712251874fe127b
+:101bc00024b612274c74fc122486eafeebff89210e
+:101bd000740f1224efe0f584a3e0f5858532828549
+:101be000338374fff074031224efe9f074011224bc
+:101bf000efecf0a3ed129c261214637980eefaef5d
+:101c0000fb1218237403252154fcf9ac84ad85ee36
+:101c10002401faef3400fb1214637940eefaeffb73
+:101c2000121823029b46f07904853282853383acf7
+:101c300082ad832274f012251874fe1224b6122786
+:101c40004c7582fa7583fe1224d1e5c7c0e0740397
+:101c50001224efd0e0f09004c3e0f874306870080c
+:101c60009004c0e0242f800374ff28f525a92512d5
+:101c7000145d74021224efe4f0fbfaa9251218296e
+:101c800075270475280074011224efe48012853250
+:101c900082853383e0f912145d74011224efe004ad
+:101ca000f09004c5e0f874011224efe0c3984003fb
+:101cb000029e5e05929004c3e0f80592e02885320a
+:101cc00082853383f012a2cb400ce0f88532828506
+:101cd0003383e0c398f0853282853383e012a1b369
+:101ce000e0f521752200740b782112247312a4fef2
+:101cf00074041224efe4f0a3e9f07b107aff85323c
+:101d000082853383e0f91218297582008f83a3a39b
+:101d1000a3a37e04af83800a74041224efe0fea321
+:101d2000e0ff74041224ef12a4d94003029c8e8eab
+:101d3000828f830592900b3078211222850592784c
+:101d400021121f0d60d28e828f83e0a2e75008a37c
+:101d5000a3a3a3ae8280bd8e848f850592a3a3a387
+:101d6000a2e54003029e58e02527f8e43528f9e86b
+:101d70002404f8e93400f9c3e89401e994084060c8
+:101d800074012525f523f521059212a1c2e86521ec
+:101d90007001e97003752330a92312145d7b007470
+:101da000021224efe004faa9231218297b207afffb
+:101db000a9251218298525219004c0e0242ff8e4d4
+:101dc0003400f9e865217001e9700575253080025d
+:101dd000052574021224efe004f07527047528002d
+:101de000439201e0f52175220005927821122760c7
+:101df000ee2404fcef3400fd74081224efaa82ab39
+:101e000083121f01740212249caa27ab28a9251251
+:101e1000181d74061224ef858221858322782112f1
+:101e200027600592e0f98e828f830592a3e0fca3e0
+:101e3000e0fd12182f740212249c0592e024fff892
+:101e4000e434fff9e854fc2408f8e93400f9e52704
+:101e500028f527e52839f52812a4cc029d4f7b20d0
+:101e60007affa92512182974031224efe0f5c7128e
+:101e7000183b7582067583011224d185328202a433
+:101e8000af74f412251874fe1224b612274ce5c75d
+:101e9000fe75c70390f7efe09004c0f0c3941140c3
+:101ea000057901121a2d8ec7e5c7ff9004c174ff92
+:101eb000f0a3e4f0a3f0a3f0a3f07523fff5247ed4
+:101ec0003080368582848583850592a3e0f4704d49
+:101ed000858284858385a3a3e0f47041858284850f
+:101ee0008385a3a3a3e0f4703405929004c1e0f4c9
+:101ef0007002eef0a3e004f00e8e8285822175223e
+:101f00000012a6b45060ee12a1b3740b7821122413
+:101f100073f582e5224480f583e0f460a6439201e4
+:101f20009004c5e004f0858284858385a3a3a3780b
+:101f300003a985e0fac3952350078a23ee9004c3d2
+:101f4000f088848985e0f8c3952440078824ee90c2
+:101f500004c4f00592e054306410609c121865903f
+:101f600004c3e4f080069004c3e070057430f0a36d
+:101f7000f08fc7029ba574f012251874fe1224b6c8
+:101f800012274c74f612248674041224efeaf0a38c
+:101f9000ebf074061224efecf0a3edf0e985328249
+:101fa000853383f012a3aa74027821122454e52108
+:101fb00004f528e5c7c0e074031224efd0e0f07404
+:101fc000011224efe4f0a3f0f527f52580020525a2
+:101fd00012a1c29004c3e02525fb9004c5e0fae5f8
+:101fe00025c39a400302a1238b2612a6bd400b9065
+:101ff00004c0e0c526c39526f526e52612a1b385c3
+:102000002621752200740b7821122473e522448066
+:10201000ff85282175220074027821122473c3954c
+:1020200021f8e49522f9e428ef39f9e82404f8e9e5
+:102030003408f974081224efe812a4ee8005a3a373
+:10204000a3ae82af83eefaeffb74081224ef12a660
+:102050008ec3ea98eb994003029fce8e828f830550
+:1020600092900b30782112228505927821121f0d53
+:10207000705274061224f9059212277b74021224fe
+:10208000ef0592e0f974061224ef12a1b9c0e0a99d
+:102090002612181dd0e0f9eefceffd12182f740285
+:1020a00012249ce527600e74011224ef12a1d27451
+:1020b00020f912182374031224efe0f5c779017494
+:1020c0000a02a4a68e828f83e0a2e7a3500302a097
+:1020d0003e12a68e74041224efe0687003a3e06938
+:1020e00070348e828f83e0a2e5502b74011224efae
+:1020f00012a68ee84960127420c0e074011224ef29
+:1021000012a1d2d0e0f912182374011224efeef0dc
+:10211000a3eff08526278e828f83a3a3a312a69a0e
+:1021200002a03e8b2112a6bd400b9004c0e0c52149
+:10213000c39521f521e52112a1b39004c2e0c39417
+:1021400002500d74031224efe0f5c7790002a0bf1e
+:10215000e014f09004c574012af07b20a921121824
+:102160002974061224f9059212277b74021224efb7
+:102170000592e0f974061224ef12a1b9c0e085219e
+:1021800023752400740b7823122473e52444807a89
+:1021900004fba92112181dd0e0f9eefceffd121886
+:1021a0002f740212249c74011224ef12a68ee849a7
+:1021b00002a0a5c4540ff5c722e0fca3e0ffecfe8b
+:1021c000e92212a1c6229004c0e02430f8e43400d1
+:1021d000f922e0faa3e0fba92712181d2274f012dd
+:1021e000251874fe1224b612274c74fe122486851c
+:1021f0003282853383eaf0a3ebf075250080020577
+:10220000259004c5e0f8e525c398400302a29e127c
+:10221000a2c54005e0cac39afa12a4bc122473e511
+:10222000224480ffe42400f527ef3408f528758266
+:10223000008f83a3a3a3a37e04af838004ae27af44
+:1022400028c3ef952850b88e828f830592900b306b
+:10225000782112228505927821121f0d60df8e826f
+:102260008f83e0a2e7a3a3a35005a3ae8280ca8513
+:102270008221858322a2e5501aee2404fcef34006b
+:10228000fde0f98e828f83a3e0faa3e0fb12a2b3f4
+:1022900012250385218285228312a69480cc7c009e
+:1022a0007d0079007aff7bff12a2b312250374022e
+:1022b00002a4a68532848533850592e0f582a3e0e9
+:1022c000f5830592229004c3e02525fa12a1c6eaff
+:1022d00012a6bf2274f412251874fe1224b6122717
+:1022e0004ceafeebff79008001099004c5e0f8e9b3
+:1022f000c398400302a3a39004c3e029f89004c04c
+:10230000e02430fae43400fbe89ae49bc365d03360
+:102310004005e0c8c398f8e812a1b38821752200ef
+:10232000740b7821122473e5224480fbe42400eb33
+:102330003408fd7582008b83a3a3a3a37a04ab8327
+:1023400080047a00edfbc3eb9d509e8a828b83054f
+:1023500092900b30782112228505927821121f0d60
+:1023600060e08a828b83e0a2e7a35007a3a3a3aa1d
+:102370008280cbe06e7003a3e06f70098a828b834a
+:10238000e0a2e540228a828b83a3a3a3e012a3aa42
+:10239000e52154fcf521ea2521f582eb3522f58370
+:1023a000a380c97a007b00029ba52403f521e434b5
+:1023b00000f5222274f012251874fe1224b612279a
+:1023c0004c74fc12248674021224efeaf0a3ebf0a2
+:1023d00089288c26e5c7f5277525008002052590fc
+:1023e00004c5e0f8e525c398400302a49d12a2c5e8
+:1023f0004005e0cac39afa12a4bc12247312a4e4e2
+:10240000af83800b853282853383e0fea3e0ff1229
+:10241000a4d350c98e828f830592900b30782112fd
+:10242000228505927821121f0d60d98e828f83e05c
+:10243000a2e75008a3a3a3a3ae8280c48e848f8595
+:102440000592a3a3a3a2e550430592a3e0652870db
+:102450003b0592e0652670348526217522000592a1
+:10246000782112276074041224efe0fca3e0fdee53
+:102470002404faef3400fb121efb740212249c8b1e
+:1024800022ea45227006eefaeffb80184392011211
+:10249000a4cca3a3a3a3ae82af8302a40f8527c7b6
+:1024a0007a007b00740412249c8532828533831267
+:1024b0002754740212249c7f080225f0eac4540faa
+:1024c000f5c78a21752200740b782122e012a6a09c
+:1024d000059222853282853383e0f8a3e0f9c3eeca
+:1024e00098ef992212a4fe853282853383e4f0a30b
+:1024f000e9f07582008f83a3a3a3a37e0422e522c3
+:102500004480ffe42400ef3408f92274f212251805
+:1025100074fe1224b612274c8c258d26e9fee5c7e1
+:10252000ff12184dea4b603f8a848b850592a3a366
+:10253000a3e0f8eec39850048e2180028821852103
+:102540002375240005927823122760ea2404fceb0b
+:102550003400fdaa25ab26121f01740212249c052b
+:1025600092e08fc7f980048fc779ff853282853367
+:10257000835392fe122754740212249c7f06022574
+:10258000f07f020225f074f112251874fe1224b6b1
+:1025900012274c74fa12248674041224efeaf0a372
+:1025a000ebf074021224efecf0a3edf0e5c7f52791
+:1025b000752600800205269004c5e0f8e526c3983c
+:1025c000400302a6739004c3e02526f525f52112e9
+:1025d000a6b44008e0c525c39525f525e52512a13b
+:1025e000b3852521752200740b782112247312a45f
+:1025f000e4af83800b853282853383e0fea3e0ff66
+:1026000012a4d350b08e828f830592900b30782124
+:1026100012228505927821121f0d60d98e828f8338
+:10262000e0a2e75008a3a3a3a3ae8280c4a2e55012
+:1026300031a312a68e74021224efe058f8a3e059d9
+:10264000f974041224efe0687003a3e06970137456
+:1026500020c0e0eefaeffba92512181dd0e0f91218
+:1026600018238e828f83a3a3a312a694a3ae82af56
+:1026700083808d8527c7740612249c85328285331a
+:1026800083122754740212249c7f070225f0e0f87d
+:10269000a3e0f92212a69aa3a322e012a6a0a322e5
+:1026a0002403f8e43400f9e854fcf8ee28f582ef4e
+:1026b00039f5832212a1c6e52112a6bf22c3eb98e9
+:1026c000e499c365d0332274f61225187e30800653
+:1026d000eef912145d0e8e2112a6b440f312183bcf
+:1026e00002a581c082c0838a828b835392fee0f868
+:1026f000a3e0f9e8c399543ff9d083d082021118be
+:1027000074f612251875218a752200782112276027
+:102710007c007d007ab37b07121f07740212249c91
+:1027200078211227607c007d007a3d7b08121f070c
+:10273000740212249c90083b7401f09008c5f07854
+:10274000007900e5c7fa90036ae0f5c7900369e0f5
+:10275000a2e7401290ff02e0f890ff06e0f990ff38
+:1027600021e09007b2f08ac7e8a2e65018438640fd
+:1027700043c48074a058600dc2e9439a049007b224
+:10278000e06002d2aae9a2e65027e5f1a2e1400802
+:10279000e5ff543f4440f5ffd2fe43fb8074a0594f
+:1027a000600fc2ea439a089007b2e064016009d260
+:1027b000ab9007b2e0f4604e9003837470f0900722
+:1027c000b2e0900384600774f9f07908800574c161
+:1027d000f07907e9a3f09007b2e060047885800201
+:1027e00078fbe8900386f0a37420f0a3743ff09088
+:1027f00007b2e0900389600474108002740ef0a3a5
+:102800007419f075d608800e8532828533831227bd
+:1028100054740212249c7f020225f074f6122518cb
+:1028200074fe1224b612274ce975f08aa4faabf0b4
+:1028300074b32af58274073bf583e0603de4f0e56c
+:10284000822446f584e5833400f5850592e0f52180
+:1028500074012521543ff0e97004e5c18002e5f9d7
+:10286000c0e0e5822521fae5833400fbea2448f53f
+:1028700082eb12abbdd0e00592f0808c74f2122591
+:102880001874fe1224b612274ce9ffecfeef75f027
+:102890008aa4f8a9f074b328fc740739fdec244726
+:1028a000f8ed3400f9888489850592e0f52412adad
+:1028b000f70592e0f523852482858221c39521f8ce
+:1028c00095e0f98e25c3e89525e99400a2d265d05c
+:1028d000335006e523c39524feee60298e25752628
+:1028e000007825122760ec2521f8ed3400f9e82462
+:1028f00048fce93400fd121f01740212249c059269
+:10290000e02e543ff0439201e06523700375d60832
+:10291000eef98532828533830592122754740212b0
+:10292000249c7f060225f074e812251874fe1224f8
+:10293000b612274c89218a2b8b2c8c22e975f08ac0
+:10294000a4f8a9f074b328fe740739ffe5216005e7
+:102950007523088003752304e523f4f52452a8eebb
+:102960002447f584ef3400f5850592e0faee24461d
+:10297000f52fef3400f530852f82f5830592e0fbcb
+:10298000ee2489f52def3400f52e852d82f583e4b4
+:10299000f0e52342a8ebc39a543ff8c395225002b6
+:1029a0008822e5227005790002aa938a82a882ee25
+:1029b00028fcef3400fdec2448fced3400fdeac3b4
+:1029c0009b50118522257526007825122760aa2b99
+:1029d000ab2c806a8522828582277440c398f89543
+:1029e000e0f9c3e89527e99400a2d265d0335008f6
+:1029f0007440c39af5258003852225852529752aeb
+:102a0000007829122760aa2bab2c121f0174021226
+:102a1000249ce525c39522502d852582aa82e52791
+:102a2000c39af52795e0f5287827122760ee244809
+:102a3000fcef3400fde52b2afae52c3400fb121fd5
+:102a400001740212249ce52452a80592e025225428
+:102a50003ff012abb70592e0f960260592e0f885e9
+:102a60002f828530830592e0c398543fc39940116b
+:102a7000852d82852e837401f0fbaa217904121919
+:102a8000eba921121de78e828f83a3e4f0e5234298
+:102a9000a8a9228532828533831227547402122416
+:102aa0009c7f100225f074f712251874fe1224b6cc
+:102ab00012274c8921e975f08aa4f8a9f074b3288b
+:102ac000f584740739f58574042521fee521600439
+:102ad0007f0880027f04eff452a8e5842446fae5db
+:102ae0008512ae9c6038e5842488f582e58512abba
+:102af000bde0f86029ebc3984024e5842489f58281
+:102b0000e58512abbde070167401f0ef42a87c00c1
+:102b10007d007a05eef912add712250380080592e3
+:102b2000a3e4f0ef42a802ae0274f6122518900753
+:102b3000b512abcc9007b6e06860f9539afb9004ed
+:102b4000c6e0fa74b72521f582740712abbde9f02f
+:102b5000e89007b5f0eaa2e34010e5a8f8c2af900c
+:102b600004c6e0d2e312abc2d2e9439a0402a8162b
+:102b700074f612251890083f12abcc900840e0681c
+:102b800060f9539af79004c6e0fa74412521f58262
+:102b9000740812abbde9f0e890083ff0eaa2e44007
+:102ba00010e5a8f8c2af9004c6e0d2e412abc2d2de
+:102bb000ea439a0802a816ee2488f582ef3400f55d
+:102bc0008322f0753400e8a2e792af22e0f5217489
+:102bd000012521543ff82274f612251874fe1224a0
+:102be000b612274c89218a22e975f08aa4f8a9f047
+:102bf00074b328fe740739ffee2489f8ef3400f926
+:102c000088848985e40592f0ea601bee2446faef99
+:102c100012ac84e9c39522400d74010592f0fbaa21
+:102c20002179041219eb12abb7e5225392fef002a0
+:102c3000a80874f712251874fe1224b612274ce95e
+:102c4000feeaffee75f08aa4f8a9f074b328f874d0
+:102c50000739f9e82444f584e93400f5857440c364
+:102c60009f0592f0ef601512ac7f0592e0f8e9c382
+:102c70009850097b02eefa79041219eb02ae02e8d1
+:102c80002402fae93400fb121ddb2274f712251826
+:102c900074fe1224b612274ceaffebfe8c848d855d
+:102ca000ef601c14601914602414604a14603e79ab
+:102cb0000002ae02439201e0f9121dff0592a38ebd
+:102cc0002174ff25211e0470eb790180e49007b286
+:102cd000e0700deefcaa84ab857900121ded80d169
+:102ce000eefcaa84ab857900121df380c4eefa795c
+:102cf00000121e0b80d3eefa7900121e11790180aa
+:102d0000b074f712251874fe1224b612274ceaff8d
+:102d1000ebfe8c848d85ef601c1460191460241404
+:102d2000604c146040790002ae02439201e0f91257
+:102d30001e050592a38e2174ff25211e0470eb79d8
+:102d40000180e49007b2e06401700deefcaa84ab50
+:102d5000857901121ded80cfeefcaa84ab85790147
+:102d6000121df380c2eefa7901121e0b80d1eefa29
+:102d70007901121e11790180ae74f712251874fec4
+:102d80001224b612274c9007b2e075f08aa4f8a975
+:102d9000f074b328fc740739fdec2448f582ed1279
+:102da000abbde0fb9007b2e02404f974012bc0e056
+:102db00012adf7d0e0f0ec2447f582ed12abbd7414
+:102dc00001f07c007d007a05e912add7122503855c
+:102dd00032828533838034c333fee433ff74fd2ea7
+:102de000f584740a3ff58512adeb220592e0f58279
+:102df000a3e0f583059222ec2446f582ed3400f53c
+:102e000083228532828533835392fe1227547402c3
+:102e100012249c7f010225f074f712251874fe120b
+:102e200024b612274ce9feeaff8e82aa82eac33357
+:102e3000f8e433f9740528f584740b39f585ea75df
+:102e4000f08aa4faabf074b32af874073bf974045f
+:102e50002ef521ef600b14600f146026146037808c
+:102e600038eef9121df98031e82446fae912ae9cd9
+:102e700060277c007d007a05a92112adeb122503a5
+:102e8000801712ac7fe9f8743fc398fb600b7c009d
+:102e90007d007a0680e2121e2302adcf3400fb12c1
+:102ea0001ddbe9fb22c082c08312aed44402f0a332
+:102eb000e0f012b47ca2e040f9c2ac8031c082c024
+:102ec0008312aed454fdf0a3e0f0759800d2ac129a
+:102ed000132b801a5392fe900316e022f075d6024f
+:102ee000000000000000000000740149f5b3d08329
+:102ef000d082021118c082c08312aed454fef0a357
+:102f0000e0f0900373e4f0a3f0a37470f0a374b145
+:102f1000f0a3e4f0a37410f0a3741df0a37442f0c6
+:102f2000a37470f0a374b2f0a3e4f0a3f0a3f0a331
+:102f30007410f0a3741ef0a37412f0759800d2ac54
+:102f400080acc082c083eb12af617442808ec082bd
+:102f5000c083ea240ffaeb340012af6174c202aef0
+:102f6000dc5392fe12af6822900373f0eaa3f09054
+:102f7000037a2274f7122518ea240ffaeb340012b0
+:102f8000af6874c2f0ec240ffced340090037df0c8
+:102f9000eca3f0900382743202b5dd74f7122518a9
+:102fa000eb12af687442f0ed90037df0eca3f0906b
+:102fb0000382741202b5dd74f612251874fe122411
+:102fc000b612274ceafeebff8c218d22740c1224e2
+:102fd000efe0f584a3e0f5851212fbee4f79046073
+:102fe00006eefaeffb80047a027b03121313e5b3bb
+:102ff000a2e350fa79067a027b03121313e5b3a217
+:10300000e350fa7900ac84ad85aa21ab22121319e2
+:10301000e5b3a2e350fa121301853282853383129d
+:103020002754740212249c7f020225f0c082c083c0
+:1030300012b5cf401912b47c54027012900316e0fe
+:103040004401f0a3e0f0900314e4f075980102ae9f
+:10305000ee74f61225188a828b83e004f0704ca37c
+:10306000e004f070468a828b83a3a3e004f0703bf7
+:103070008a828b83a3a3a3e004f0702f8a828b83c0
+:10308000a3a3a3a3e0547f647f701de05480f07578
+:10309000210475220078211227607c007d00121f18
+:1030a00007740212249c8003e004f002b02774f637
+:1030b00012251874fe1224b612274c801f7a3dee9a
+:1030c0002424f582ef12b625e0547ff91216d9eeca
+:1030d000faeffb121811900314740af0900314e035
+:1030e000700302b18214700302b25614700302b26c
+:1030f0007b14700302b2b214700302b3161470038f
+:1031000002b36814700302b3b414700302b3d5148d
+:10311000603e14600614606a02b44012b4687521ff
+:103120000475220078211227607c287d037a187ba1
+:1031300003121efb740212249c8b22ea45226003b8
+:1031400002b0bd12b49b24af12b45b1216eb8086a2
+:1031500075210475220078211227607c187d0312e6
+:10316000b4daaa82ab83121f01740212249c12b437
+:10317000c22404f012b46812b49b249f12b45b12f0
+:1031800016e512b47c54026021900316e054fef060
+:10319000a3e0f0e5a8f8c2af9004c6e0c2e1f07584
+:1031a0003400e8a2e792af02b440900312e0f8a323
+:1031b000e0f9e84960d312b48c79040592e0547fb9
+:1031c00075f0e4a4faabf00592900453e02afaa358
+:1031d000e03bfbea247efaeb3400fb12131305926a
+:1031e000e0a2e70592506712b4c224fcf0752104f6
+:1031f0007522000592782112276012b4daac82adf4
+:10320000837a187b03121f01740212249c12b48566
+:1032100012b457059212b47824aef582e912b6259d
+:103220007401f0e582240ef584e5833400f585e42d
+:103230000592f0e582240ff582e58312b62574ff2e
+:103240000592f0900315e4f090031402b43d90034e
+:1032500014740102b43f75211075220078211227e1
+:10326000607c007d007a187b03121f077402122411
+:103270009c790612b44c740202b43f12b4f65004a6
+:1032800024ae8002249efae93400fb8a828b837488
+:1032900049f0ea240ef582eb12b62512b4c0c0e064
+:1032a00012b5c0d0e00592f0795012b45074030208
+:1032b000b43f9003197401f012b4cba3e05403059a
+:1032c0009290031af0795012b44c7404f0a312b423
+:1032d000c0f8740f58700302b4408882aa82ea547e
+:1032e0000ff87410c398f52195e0f5220592782126
+:1032f0001227607c007d000592900312e02a12b62e
+:10330000210592a3a3a3a3aa82ab83121f07740271
+:1033100012249c02b44012b4b7aa82ab83e82410f2
+:10332000f8e43400f912b4c2fce89ce99400c365e7
+:10333000d033500e795012130d900315e024100273
+:10334000b43f79007c187d0312131f12b619059241
+:10335000e0a2e75008900314740902b43f12b45776
+:1033600012b478249e02b21a12b4f6500424ae802d
+:1033700002249efae93400fbea240ff584eb3400c2
+:10338000f5850592e004f0791612130d0592e0051b
+:10339000929003146005740702b43f7406f075211f
+:1033a0000c75220078211227607c007d007a1c7b3e
+:1033b0000302b30b12b485a2e750047802800278ae
+:1033c00000e84410f97c187d037a187b0312131f60
+:1033d000900314806812b4b7ac82ad8312b619aef4
+:1033e00082af830592e0a2e7500478028002780061
+:1033f000e84430f9ecfaedfb12131f900315e024ba
+:1034000010f0f812b4c2c39850308e828f830592a8
+:10341000e0a2e7501e752104752200782112276072
+:103420007c187d037a287b03121f01740212249cee
+:1034300002b24e900314740880050592a37405f03f
+:103440008532828533835392fe02b01f7a187b0344
+:1034500012130d9003142212b52222fae93400fb54
+:10346000121331eefaeffb227a127b031216318a25
+:10347000218b22ae21af222212b4ab22900316e0a0
+:10348000f8a3e0e82212b48c0592e022900312e047
+:103490002424f584a3e03400f58522ee2424f5826b
+:1034a000ef12b5ca12b51d12b4ab22900453e02836
+:1034b000f8a3e039f9e822a3e0f8059212b4e22279
+:1034c000e4f012b4c62212b4cbe022900312e0f56d
+:1034d00084a3e0f5850592a3a32212b4c6f812b422
+:1034e000e222900312e028f582a3e03400f5830580
+:1034f00092a3a3a3a322900453e0faa3e0fb0592b6
+:10350000900312e02424f582a3e012b5ca059212ba
+:10351000b51dea28f8eb39f9e0a2e7e822e012b598
+:103520002222547f75f0e4a4f8a9f02274f7122542
+:103530001874fe1224b612274c12b5c0e0a2e75050
+:103540006fea2439f584eb3400f585e0a2e35040be
+:10355000858482858583e0fca3e0fdec4d60498c89
+:10356000828d83a3a3a3e06403703d8c828d83e0ee
+:10357000f8a3e0f9858482858583e8f0a3e9f08cdf
+:10358000828d83e4f0a3f07a127b0312163780c099
+:10359000858482858583e0fca3e0fd7a127b03129b
+:1035a0001637e40592f0a3f012b5cf400312132ba7
+:1035b000853282853383122754740212249c80380a
+:1035c000ea240f12b5c722f582eb3400f5832253ab
+:1035d00092fe900316e0f8a3e0e8a2e022f075d690
+:1035e00006000000000000000000000000000000d5
+:1035f000000000740149f5b37f010225f0c082c0cc
+:1036000083eafcebfd7a127b0312163712b47ca21c
+:10361000e0400312132b02aeee0592900312e02459
+:1036200024f582a3e012b5ca2274f4122518e9ff2a
+:103630008a238b24ecfe60078e2175220480067598
+:10364000210075220002b8aa74f31225188a218b72
+:1036500022ecffedfe740d1224ef12baef12276078
+:103660008e2375240078231227608f237823122756
+:103670006078211227608921752200782112276045
+:1036800079ca121a3f740a12249c7f050225f0742d
+:10369000f6122518e9ffecfe8a218b2278211227e9
+:1036a000608e2175220078211227608f21782112e7
+:1036b000276079cb12b764800f752200782112271a
+:1036c0006079cd121a3f740412249c7f020225f007
+:1036d00074f6122518e9ffeafe8e21752200782182
+:1036e0001227608f21782112276079c580d574f068
+:1036f000122518e9fe8a238b248c258d267410123e
+:1037000024efe0f527a3e0f52874121224ef12b796
+:10371000cce5274528602a78271227608927752855
+:1037200000782712276078251227607823122760f7
+:10373000782112276079c7121a3f740a12249c80dc
+:103740001a7823122760e4f523f5247823122760e2
+:10375000782112276012b76212249c79017f080237
+:1037600025f079c6121a3f74062274f2122518e960
+:10377000fe8a238b248c258d26740e1224ef12b71b
+:10378000ccec452660257825122760892575260012
+:103790007825122760782312276078211227607914
+:1037a000c9121a3f740812249c801a7823122760c9
+:1037b000e4f523f52478231227607821122760127c
+:1037c000b76212249c79017f060225f0e0f98e820f
+:1037d0008582217522002274f6122518e9fe740aea
+:1037e0001224ef12b9201227608c218d2278211229
+:1037f00027608a218b2278211227608e2175220072
+:10380000782112276079be121a3f740802b6c87474
+:10381000f11225188a218b22ecffedfe740f122481
+:10382000efe0f523a3e0f52474111224efe0f52571
+:10383000a3e0f52678251227608e257526007825c9
+:10384000122760782312276078211227608f217554
+:10385000220078211227608921782112276079bd02
+:10386000121a3f740c12249c7f070225f074f61282
+:103870002518e9fe8e21752200782112276079cf64
+:10388000121a3f740202b6c874f4122518e9fe8aaf
+:10389000218b228c238d24782112275c8e21752286
+:1038a00000782112276079ce80167823122760785d
+:1038b000211227608f21752200782112276079c696
+:1038c00012b76412249c7f040225f074f6122518a6
+:1038d00074fc122486eafe853282853383aa82ab89
+:1038e00083f912199774031224ef12b9201227607a
+:1038f00074031224efe05401f5217821122760743b
+:10390000041224efe0f52178211227608e2178211e
+:1039100012276079d0121a3f740812249c02b6c68e
+:10392000e0f52175220078212274f6122518e9feaf
+:1039300075218575220178211227608e2102b6b982
+:1039400074f6122518e9ffeafe60078e217522033e
+:10395000800675210075220078211227608f2102d0
+:10396000b6b974f6122518e9fee4f521f52278219e
+:1039700012276075218575220178211227608e211a
+:10398000752200782112276079c602b6b474f41249
+:103990002518e9ff8a238b24ecfe60078e2175220f
+:1039a00004800675210075220002b8aa74f612255b
+:1039b00018e9ffeafe60078e217522028006752154
+:1039c0000075220078211227608f2175220078214e
+:1039d00012276079c402b6c374f6122518e9ffea0b
+:1039e000fe740a1224efe0f521a3e0f522782112fb
+:1039f00027608c218d2278211227608e217522006c
+:103a000078211227608f21782112276079c102b8ae
+:103a10000774f6122518e9fe8a218b2278211227d5
+:103a20006075210875220078211227608e21782187
+:103a300012276079c202b6b474f6122518e9ffeabb
+:103a4000fe70077a00121d33801e8e2175220278c7
+:103a5000211227608f21752200782112276079cded
+:103a6000121a3f740412249c02b6cb74f712251864
+:103a70007a04121d337f010225f074f71225187a9b
+:103a80000880ef74f3122518e9feeaff8c218d22dd
+:103a9000740d1224efe0f9740e1224efe0fa740fa3
+:103aa0001224ef12baef1227608a237524007823bc
+:103ab000122760892378231227608b23782312270b
+:103ac0006078211227608f217522007821122760eb
+:103ad000eef83395e0f9e82499f521e934fff52271
+:103ae000782112276079d1121a3f740e02b687e04e
+:103af000f523a3e0f52478232274f412251874fe2c
+:103b00001224b612274c74f0122486e9ffeafe1242
+:103b10001415e9f5226030853282853383ac82ad9d
+:103b200083740a1224efaa82ab83eff912140f7484
+:103b3000011224efaa82ab83eff912141beff912e2
+:103b40001421e9f521804875230675240078231295
+:103b500027607c007d00740c1224efaa82ab8312d4
+:103b60001f07740212249c75230978231227607c96
+:103b7000007d0074031224efaa82ab83121f077426
+:103b80000212249c853282853383e4f07521ffe59f
+:103b900022a2e55004d2f08002c2f0a2f0e433fa8f
+:103ba000e522a2e750047c0280027c0075220078a6
+:103bb0002112276074081224f9059212277b740cd5
+:103bc0001224f912277b740a1224f912277b740835
+:103bd0001224ef0592e0f521782112276074141267
+:103be00024ef8582218583227821122760ea4c8e7a
+:103bf000214521f52175220078211227608f217837
+:103c00002112276079c0121a3f741012249c74107c
+:103c100012249c853282853383122754740202b8a1
+:103c2000c374f6122518e9fe8e2175220078211240
+:103c300027608a218b22782112276079bf02b6c3c0
+:103c400074f612251812c0f47011a3e0f8a3e07006
+:103c50000aa3e064027002a3e060089008ce740436
+:103c600002bd139008dde02480600814602a14600f
+:103c70003780e8e870e59008dae0600478018002b7
+:103c80007800900984e8f0a3e4f09008d9e0606837
+:103c9000900984e04402805c9008c7e0640470bb33
+:103ca000900984e4f0a3804fe8547ff5219008c781
+:103cb000e0640470a6e521c39406509f74c72521d3
+:103cc000f58274083400f583e854806010a3a3a340
+:103cd000a3a3a3a3e06403701578018013e58224f5
+:103ce0000cf582e5833400f583e0640360eb780033
+:103cf000900984e8f0a3e4f09008cee06404601436
+:103d00009008e57484f0a37409f0a3e4f0a37402ae
+:103d100012c154f07f020225f074f612251874fec9
+:103d20001224b612274ce9fa9008e312c0f770107b
+:103d30009008c7e0640460109008e112c0f76008c2
+:103d40009008ce740402bde89008dde0541f6008be
+:103d500014600d14601580e89008dfe064016005d0
+:103d6000790002bdebea9008d9807d9008e1e0542b
+:103d70007ff5219008dfe070e7e521c3940650c08d
+:103d8000e52190620ef074c72521f5847408340093
+:103d9000f5859008e1e054806021ea6004741080a9
+:103da000027440906211f0ea600474038001e4053b
+:103db00092a3a3a3a3a3a3a3f08026ea6004742084
+:103dc00080027480906214f0ea600474038001e45d
+:103dd000c0e0e584240cf582e5853400f583d0e06d
+:103de000f05392fe90620ee4f079018532828533c1
+:103df00083122754740212249c02bd14c082c08313
+:103e000079008057c082c0837901804fc082c0830f
+:103e10005392fe9008e112c0f77013a312c0f7701e
+:103e20000d12be52e85480fae9fbea4b6007900895
+:103e3000ce7404801ae8906200f09008c76009e030
+:103e40006402700c74038007e0640370037402f072
+:103e5000800c9008dfe0f8a3e0f922121eb9d083ad
+:103e6000d08202111874f5122518121ea712be5224
+:103e70007a00fbe4700374026b7020e8fb79021295
+:103e8000beefe924020909ea3400fa89828a831222
+:103e9000be559008e8e8f0a3e9800fe8fb12beeffa
+:103ea000a37b00121fa1a3f0a3e4f09008e5e0fcbf
+:103eb000a3e0fda3e0feec4d4e9008ce7004740428
+:103ec0008027e0640460239008e3e0faa3e0fb901d
+:103ed00008e812be55c3ea98eb9950089008e8ea42
+:103ee000f0a3ebf09008ce7401f07f030225f012ee
+:103ef0001ead9008e5eaf0a3ebf0a3e4f09008e52e
+:103f0000e0f9a3e0fa2274f212251874fe1224b626
+:103f100012274c8a848b85752100802d9062147441
+:103f200090f0741012bffa7003752240e52290627f
+:103f300015f0ec906213f0e8240cf582e93400f5fa
+:103f400083e4f090620ef00521858482858583a349
+:103f5000a3a3a3e0f8e521c398400302bfe77b00d9
+:103f60007a007905121eadea4b60dc8a828b83a34e
+:103f7000a3ae82af83e0540ff52390620ef075225a
+:103f8000008a828b83a3a3a3a3e02407f525a3e0e3
+:103f90003400f52674037825122464ac2574c725f3
+:103fa00023f874083400f98a828b83a3a3a3aa821e
+:103fb000ab838e828f83e0a2e7400302bf1c906236
+:103fc000117448f0740812bffa7003752240e5229c
+:103fd000906212f0ec906210f088828983a3a3a310
+:103fe000a3a3a3a302bf4185328285338312275442
+:103ff000740212249c7f060225f0f08a828b83e0f3
+:104000005403640122c082c0835392fe12c0f47034
+:1040100010a312c0f7700aa3e064017002a3e0606d
+:10402000079008ce7404800c9008e574c8f0a3745f
+:104030000812c14af002be5e74f51225189008c736
+:10404000e0640260149008e112c0f7700ca312c083
+:10405000f770069008e0e060099008ce7404f00262
+:10406000c0f1121ea79008dfe060787b007a00792b
+:1040700002121ead8a218b22ae21af22ee4f60d9f3
+:104080009008dfe0f88e828f83a3a3a3a3a3e0c0f0
+:10409000e0e8fad0e06a70d39008c77404f0e8a3af
+:1040a000f07523008e828f83a3a3a3a3e0f8e523fa
+:1040b000c398503d85232174c92521f582740834a5
+:1040c00000f583e4f07b007a007904121eadea4b20
+:1040d000600d8a828b83a3a3a3e070e9121ed7052b
+:1040e0002380c19008c8f09008c77403f0f9121e2d
+:1040f0003502beea9008dfe0f8a3e0f9e84922744f
+:10410000f51225189008c7e0640470199008dde0e6
+:104110006481701112c0f4700c9008e3e0640170c7
+:1041200002a3e060079008ce7404801a9008e1e0d2
+:1041300024c9f521a3e03408f5229008e5e521f033
+:10414000a3e52212c14af002beeaf0a3e4f0a30400
+:1041500012c15422f0a3e4f09008ce042274f612a7
+:1041600025189008c7e0640470109008dde0640131
+:1041700070089008e312c0f760089008ce7404f04d
+:104180008068121ea77b007a007902121ead8a8217
+:104190008b83e5824583600ea3a3a3a3a3e0f890dd
+:1041a00008c8e06870df7b007a027904121eadea6d
+:1041b0004b60c712be52a3e0fca3e0fd8a828b8352
+:1041c000a3a3e0feec6e7001ed60108a828b83a3e6
+:1041d000a3a3e0fee86e7001e970cb74c92cf582f0
+:1041e00074083df583e8f0121ed702bd1474f7126f
+:1041f0002518e9900364f075f075a4faabf012137a
+:1042000055900365eaf0a3ebf0800e85328285338a
+:1042100083122754740212249c7f010225f0c0826d
+:10422000c0835392fe900363e0c0e0ea2424f58249
+:10423000eb3400f583d0e0f08a828b83a3a3a374d0
+:1042400002f01216f1d083d082021118c082c0830e
+:104250001214b780f074f612251874fe1224b612e8
+:10426000274ce9fe12c3cd75217575220078211205
+:1042700027607c007d00900361e0faa3e0fb121f41
+:1042800007740212249c12c35fd2e0f01219017c61
+:1042900004eef990036712c356eef9121d21853220
+:1042a00082853383122754740212249c7f020225d4
+:1042b000f074f212251874fe1224b612274c8923ca
+:1042c000e9900363f0fe75f075a4f521e5f0f522a1
+:1042d000900365e02521f8a3e03522f9900361e819
+:1042e000f0a3e9f0800312181112c3bf121631eacd
+:1042f0004b70f312c35fc2e0f0ee75f0e4a4feafc2
+:10430000f00592900453e02ef584a3e03ff5850577
+:1043100092a3a3a3a3a3a3a3e0fea9231217b17c96
+:1043200002a923900365e02521faa3e0352212c3f8
+:104330004beefaa923121d09853282853383122799
+:1043400054740212249c7f060225f0fbea246ff5c8
+:1043500082eb3400f583e0faa3e0fb12144b2290c9
+:104360000361e02474f584a3e03400f5850592e050
+:104370002274f612251874fe1224b612274ceafc99
+:10438000ebfdec2424f582ed12c4d1547f12c3cd91
+:1043900012c5b30592e0f8a3e0f9e849701890035c
+:1043a0002e74081222fe8b22ea45227009ecfaede7
+:1043b000fb12162b800612c3bf12163702c29e9044
+:1043c0000361e02472faa3e03400fb22e990036366
+:1043d000f075f075a4f8a9f0900365e028f8a3e063
+:1043e00039f9900361e8f0a3e9f02274f712251877
+:1043f00074fe1224b612274ce9fe75f0e4a4f8a965
+:10440000f00592900453e028f582a3e039f583a8e3
+:1044100082a983e82440f584e93400f58512277bde
+:10442000e8243ef582e93400f5830592e0fca3e040
+:10443000fde8243df582e912c4d1faeef9121d0f10
+:10444000740212249c02c20b74f7122518e9fe753f
+:10445000f0e4a4f8a9f090045312c6d32442fae978
+:104460003400fbeef9121d1502c21974f71225185b
+:1044700074fe1224b612274ce9fe900363f0f8751f
+:10448000f075a4faabf00592900365e02af582a3db
+:10449000e03bf583aa82ab83059212c5c4f584a3e1
+:1044a000e039f585e584240ff582e58512c4d1a2b3
+:1044b000e7500b7c05eef912c34c7a00800b059295
+:1044c000a3a3a3a3a3a3a3e0faeef9121d1b02c2a8
+:1044d0000b12c6672274f312251874fe1224b6124a
+:1044e000274cea24fa601514700302c58e14700379
+:1044f00002c58e14700302c59602c5a07521008006
+:10450000127c06a921900365e02efaa3e03f12c3b6
+:104510004b0521900364e0f8e521c3985065e5213f
+:10452000900363f0f875f075a4feaff0900365e0ba
+:104530002efaa3e03ffb12c5c412c658a2e550d123
+:104540001217ffe970098058ecfaedfb12162b12d6
+:10455000c5b3aa82ab830592e0f8a3e0f9e849600d
+:10456000a01216318a238b24ac23ad2490032e7421
+:10457000081222fe8b24ea452460cd12c3bf121616
+:104580003d801d1217ffe9601712173f801212c3fa
+:10459000cc12157d800a12c3cc7a007b001216075c
+:1045a000853282853383122754740212249c7f053e
+:1045b0000225f00592900361e02472f582a3e034b5
+:1045c00000f58322900361eaf0a3ebf0e875f0e4d4
+:1045d000a4f8a9f0900453e0282274f712251812c9
+:1045e0001d2702c21974f7122518e9fe900364e032
+:1045f000f8eec39840047900800dee12c6be50f666
+:10460000eef91217db790102c219c082c083e9fdfd
+:104610005392fe900364e0f8edc398400479008063
+:10462000348d82a882e875f075a4faabf09003652a
+:10463000e02afaa3e03bfbea2474f582eb12c4d132
+:10464000a2e050d9e875f0e4a4f8a9f0900453e092
+:104650002812c658f902c245f8a3e039f9e8240f38
+:1046600012c66422f582e93400f583e02274f61262
+:104670002518e9fe900364e0f8eec3984004790041
+:1046800080398e82ac82ec12c6be50f2752109755b
+:1046900022007821122760ec75f0e4a4fcadf090c4
+:1046a0000453e02cf8a3e03df9e82419fce93400b8
+:1046b000fd121f01740212249c790102c2ac75f034
+:1046c00075a4f8a9f090036512c6d3247412c664c9
+:1046d000a2e022e028f8a3e039f9e82274f71225d5
+:1046e0001874fe1224b612274ce9fb900364e0f81c
+:1046f000ebc398400479ff800912c74450f7059234
+:10470000e0f98532828533835392fe02c21174f739
+:1047100012251874fe1224b612274ce9fb9003648c
+:10472000e0f8ebc39840047900801612c74450f7b4
+:10473000eb900363f0900361e584f0a3e585f079e5
+:104740000102c20beb75f075a4f8a9f0900365e0c7
+:1047500028f584a3e039f585e5842474f582e585a0
+:1047600012c667a2e0227f010225f074f612251816
+:10477000e9ff8a218b22a2afe433fec2af90054845
+:10478000e004540ff8900547e06870057900121aac
+:104790002d12c7cf741928f582740539f583e522e7
+:1047a00012c7ce741828f582740539f583e52112f5
+:1047b000c7ce741728f582740539f583eff090059c
+:1047c00048e004540ff0eea2e092af02c84df09022
+:1047d0000548e075f003a4f8a9f022c082c083a2c6
+:1047e000afe433f8c2af5392fe900547e0f9a3e07f
+:1047f000696009740129540f900547f0e8a2e0921e
+:10480000afd083d08202111874f612251874fe12ec
+:1048100024b612274cc2af900515e0f974ff696009
+:104820001c89217522007403782112247312cabbdb
+:10483000059290051512c914e9900516f0d2af85be
+:104840003282853383122754740212249c7f020221
+:1048500025f074f312251874fe1224b612274c8921
+:1048600025eafeebffa2afe433fac2af7523ff9057
+:104870000515e0f52480058524238b2474ff652429
+:1048800060778524217522007403782112247374c3
+:10489000f52521f874043522f9888289835392fe24
+:1048a000a3a3a3a3a3a3a3e0fb888489850592a364
+:1048b000a3e06f600574ff6f70bd88848985a3e0f5
+:1048c0006e70b488848985e0652570ab900515e02d
+:1048d0006524601985232175220074037821122430
+:1048e0007374fc2521f58474043522f585eb12c917
+:1048f00014e524900516f08081eaa2e092af121828
+:104900007d853282853383122754740212249c7f62
+:10491000050225f0f0900516e00592f02274f012e1
+:10492000251874fe1224b612274c74fd12248674c6
+:10493000021224efe9f074011224efeaf0ebff74a5
+:10494000151224ef7825122285a2afe43385328236
+:10495000853383f0c2af75340012cbd87825792126
+:1049600012219a900b287825122213900516e0f454
+:1049700070057900121a2d900516e0f9892175222b
+:10498000007403782112247374f52521f5847404ce
+:104990003522f585858482858583a3a3a3a3a3a35c
+:1049a000a3ac82ad83e0900516f074021224efe010
+:1049b0000592f0ef8584828585830592a3a3f07428
+:1049c000011224efe0858482858583a3f00592a3fc
+:1049d000a3a378251222a70592900515e0fa74ff8b
+:1049e0006a700302ca8c8a2175220074037821122e
+:1049f000247312cc8f85252185262285272385289f
+:104a00002478211221e7900b2c782112221312cc4a
+:104a100086600cea8c828d83f0e99005158075ea3a
+:104a200080030592e0fe8e21752200740378211226
+:104a3000247312cabbfa74ff6a60438a217522008c
+:104a40007403782112247374f82521f584740435d5
+:104a500022f585852521852622852723852824057d
+:104a60009278211221e7900b2c782112221312cc7c
+:104a70008660afe90592f0ea8c828d8380168c8483
+:104a80008d8574ff0592f0e905928008e9f08c822b
+:104a90008d8374fff0853282853383e0a2e092af8c
+:104aa00012187d740312249c853282853383122769
+:104ab00054740212249c7f080225f012cb0de022d0
+:104ac00074f412251875230074012523c0e0852392
+:104ad000217522007403782112247312cb0dd0e0cb
+:104ae000f00523c3940340e0752400740378231277
+:104af000247374fc2523f58274043524f58374ff34
+:104b0000f0900515f0a3e4f07f040225f074fc2575
+:104b100021f58274043522f5832274f71225187565
+:104b200034001219c702c76674f012251874fe12f9
+:104b300024b612274c12cbd8803074f52af5827433
+:104b4000043bf583e0f5258582848583850592a362
+:104b5000a3e0ff0592a3e0fe1219d3effaeef9e508
+:104b60002512cbe412250312187d900515e0f525da
+:104b700074ff65256036752600740378251224734a
+:104b8000aa25ab2674f82af58274043bf5837825b0
+:104b9000122285782579211221d39009fc782512db
+:104ba0002213e525452645274528708e900547e0c8
+:104bb000f8a3e068601fe812cc18f52112cc00fec3
+:104bc00012cc0cff1219cdeefaeff9e52112cbe46d
+:104bd00012250380d702caa81239f68a218b228cab
+:104be000238d2422c333fce433fd74152cf5847427
+:104bf0000b3df5850592e0f582a3e0f58305922251
+:104c0000e82424f582e93400f583e022e82423f542
+:104c100082e93400f583e02275f003a4f8a9f0746a
+:104c2000f528f8740439f9e82422f582e93400f50e
+:104c300083e02274f0122518900547e0f8a3e0689d
+:104c400060047900803d900515e0f460341239f677
+:104c50008a258b268c278d28e0f521752200740388
+:104c6000782112247312cc8f782112228578217931
+:104c7000251221d39009fc782112221312cc8670c0
+:104c8000c1790102cab6e521452245234524227493
+:104c9000f82521f58274043522f5832274f6122555
+:104ca0001874fe1224b612274c8a848b8590051541
+:104cb000e0f52174ff652170047900801b752200e6
+:104cc0007403782112247312cc8f1222b685848249
+:104cd0008585831222c2790102c83fc082c083d277
+:104ce000bd439a10d2a95392fe900369e0a2e75007
+:104cf0000302cd8ee5c7f890036ae0f5c790ff0a7e
+:104d0000e0f5f190ff02e054bff586a3e0f5c4a3ff
+:104d1000e0f5c5a3e0f5c2a3e0f5f8a3e0f5fba339
+:104d2000e0f5fca3e0f5fa90ff0be0f5f3a3e0f566
+:104d3000f4a3e0f5f590ff15e0f4f5aba3e0f4f58e
+:104d40008da3e0f4f5ac90ff19e0f4f58fa3e0f447
+:104d5000f5f6a3e0f4f5f7a3e0f4f5aee5aea2e3d3
+:104d60005003438c8090ff20e0543842c690ff1dd2
+:104d7000e0f5e4a3e0f5cba3e0f5eb90ff22e0f44f
+:104d8000f5fda3e0f4f5fea3e0f4f5ff88c7e5ae7a
+:104d9000a2e35017e5ae5407f87401b8000280048e
+:104da000c333d8fcf8f45290e842fe800574011237
+:104db000249cd083d08202111874f212251874fe3c
+:104dc0001224b612274ce9fe8a2374f05523600b97
+:104dd00024f0604e24f0607502ce7c12ce8f7413e6
+:104de0002521f58274063400f583e0f5257526004b
+:104df000782512276074102521f58274063400f599
+:104e000083e0f52578251227607821122760059226
+:104e100090060c12277379d3121a3f740a12249c3d
+:104e2000805a12ce8fe521c333f8741b28f58474a1
+:104e3000063400f585059212277b0592782112270a
+:104e40006079d5121a3f740412249c802feaa2e0e4
+:104e5000401605929006161227737b20eefa79060b
+:104e60001219df740412249c8e21752200782112fd
+:104e7000276079d4121a3f740212249c85328285ed
+:104e80003383122754740212249c7f060225f053a8
+:104e9000230f8523828582217522002274f6122534
+:104ea00018752101752200e97821122473e924f88c
+:104eb000601214601414601614601824fd60191434
+:104ec00060228023432103801e43210c801943214b
+:104ed0003080144321c0800f9061a97401f090626a
+:104ee0004bf0800353aef7eb14600624fe600b809a
+:104ef0000cd3e521d2e7f52180034321c0e99006d8
+:104f00001af08521f274035af8eb333354fc48c489
+:104f100054f049f5b6e5a8f8c2af9004c6e0d2e275
+:104f2000f0753400e8a2e792af7f020225f074f436
+:104f30001225188a218b228c238d24e9ff740c12f0
+:104f400024efe06004780180027800e84420feea63
+:104f5000452245234524602b74206e70117b20ef81
+:104f6000fa79061219d990061678211222a778210b
+:104f700012275ceefbeffa79061219df7404122493
+:104f80009c8009eefbeffa79061219d97f040225fd
+:104f9000f0740759f87401b800028004c333d8fcd8
+:104fa000f8f4fbe9a2e7ea501b601be8fa74185911
+:104fb000600a24f8601424f86018801ce5805b4abd
+:104fc000f580801460e57a0080e3e5905b4af59017
+:104fd0008006e5a05b4af5a05392fe021118e9f89d
+:104fe000740758f97401b900028004c333d9fcf97d
+:104ff000e8a2e75004e9fa80027a00741858600abf
+:1050000024f8601024f860148018e580596a701242
+:1050100079018010e590596a700880f4e5a0596a1a
+:1050200060ee790080b2c082c08374ff122486854e
+:105030003282853383e45392fe8002e004f0e0c3c1
+:10504000941440f702cdadc082c08374ff12248651
+:10505000853282853383e45392fe8002e004f0e0df
+:10506000c3940a40f702cdadc082c083121d69c24d
+:105070009643fe40121d6343fe80121d6902cdb2ad
+:10508000c082c083c29643fe4012d0e1a29750fc7a
+:10509000121d6353febf80e274f7122518e9ff7eec
+:1050a00008efa2e7500553febf8005c29643fe40bd
+:1050b00012d0e1a29750fc12d131efc333ff1eeea4
+:1050c00070df53febf12d0e1a29750fc121d63e5c2
+:1050d00090fe12d134eea2e6b3e433f97f0102254b
+:1050e000f0121d6953fe7f2274f712251889217e64
+:1050f000007f08eec333fe53fe7fa29750fc121dc3
+:1051000069a2965004eed2e0fe121d6912d1341f3e
+:10511000ef70e0e5216007c29643fe40800353fe36
+:10512000bf12d0e1a29750fc12d13153febfee80e6
+:10513000aa121d6343fe80121d692274f7122518fe
+:1051400074fe1224b612274c892112d1e074014555
+:1051500021f9121d7be970047900801feffe700cad
+:1051600080f67901121d81e90592f0a31fef70f21c
+:105170007900121d81e90592f0eef98532828533be
+:10518000835392fe122754740212249c02d0dc74c2
+:10519000f612251874fe1224b612274ce9fe12d11d
+:1051a000e0eef9121d7be970047a00801d75210084
+:1051b00080020521e521c39f500e439201e0f912c0
+:1051c0001d7be90592a370eaaa217b0085328285c6
+:1051d00033835392fe122754740212249c02cf2967
+:1051e0008a848b85ecff53fe3f53903f121d6f2244
+:1051f00074f212251874fe1224b612274c8a238bdf
+:10520000248c218d22e9fe74101224efe0f8a3e033
+:10521000f974121224efe0f525a3e0f526741412b8
+:1052200024ef12d40f7406f00592e0fae5232a1257
+:10523000d396a3aa82ab830592e0240612d4d6e8c3
+:10524000f0a3e9f08a828b83a3a3a3a312d4c7128d
+:105250002760ea240602d48f74f612251874fe1211
+:1052600024b612274ce9fe12d5b6741b12d60f24b1
+:1052700002f0ee8a828b83a3a3a3a3a3a3a3a3120a
+:10528000d65be5842402fae5853400fb02d6487437
+:10529000f7122518e9fe8a828b83a3a3e02ef07c07
+:1052a000047d0012160d02d52a74f212251874fe20
+:1052b0001224b612274c8a238b248c218d22e9fede
+:1052c00074101224ef12d3171224ef12d40f74109b
+:1052d00002d47e74f612251874fe1224b612274cde
+:1052e000740c1224ef12d5af740c02d62a74f21289
+:1052f000251874fe1224b612274c8a238b248c2185
+:105300008d22e9fe74101224ef12d3171224ef122b
+:10531000d40f741602d47ee0f525a3e0f5267412ae
+:105320002274f712251874fe1224b612274ce9fed7
+:1053300012d5b6741812d52f0412d6068007f005c0
+:1053400092e004f014f07c047d0002d51f74f41286
+:10535000251874fe1224b612274c8a218b22e9feee
+:105360008a848b850592a3a37405f0ea240512d3e1
+:1053700096740e12d3fc04f08e23752400059278e7
+:1053800023122760121f01740212249c74ff2ef84e
+:105390000592e028804d12d4262274f41225187448
+:1053a000fe1224b612274c8a218b228c238d24e9ed
+:1053b000fe740e1224ef12d40f741212d3fc2402c6
+:1053c000f0e5230592f0a3e524f08e237524007800
+:1053d00023122760ea24020a0a12d4bd12249c0573
+:1053e00092e02ef07c047d00aa21ab2212d4b312ed
+:1053f0002754740212249c7f040225f0f00592e0e9
+:10540000f8ea2812d426a3aa82ab830592e022e010
+:10541000fca3e0fd8a848b850592a3a37405f0eac2
+:10542000240512d42622f582eb3400f5830592a3dd
+:10543000a3a32274f412251874fe1224b612274c6a
+:105440008a218b228c238d24e9fe740e1224ef1204
+:10545000d40f745202d3bb74f212251874fe1224b6
+:10546000b612274c8a238b248c218d22e9fe7410de
+:105470001224ef12d3171224ef12d40f740812d390
+:10548000fc240412d4d612d4c7122760ea2404faea
+:1054900012d4bd12249c0592e02ef07c047d00aa5b
+:1054a00023ab2412d4b3122754740212249c7f0617
+:1054b0000225f012160d85328285338322eb3400eb
+:1054c000fb121f01740222e525f0a3e526f08e21d0
+:1054d000752200782122f0e5210592f0a3e522f063
+:1054e0008a828b83a3a32274f712251874fe1224d8
+:1054f000b612274c12d5b6740a12d66812d506ec2d
+:10550000f0a3ed02d3452402f085848285858322b1
+:1055100012d52f12d5067417f0a3e4f07c04fd1207
+:10552000d4b3122754740212249c7f010225f01276
+:10553000d61bfcea2c12d6222274f612251874fe11
+:105540001224b612274c740c1224ef12d5af740437
+:1055500002d62a74f712251874fe1224b612274cac
+:1055600012d57d741302d33e74f712251874fe12ff
+:1055700024b612274c12d57d741e02d33e8a828b2c
+:1055800083a3a37405f0ea240512d58d22f584ebdc
+:105590003400f5850592a3a3a32274f7122518748d
+:1055a000fe1224b612274c12d5b6740302d510e0b1
+:1055b000f521a3e0f5228a828b83a3a3a882a98385
+:1055c0007405f0ea2405f582eb3400f583a3a3a368
+:1055d0002274f612251874fe1224b612274ce9fe26
+:1055e000740c1224efe0ff12d5b6740112d60f240a
+:1055f0000412d508a3ecf0a3ed12d606f0ef059245
+:10560000a3a3a3f0803bf0ee8584828585832212dc
+:10561000d61bf521ea252112d62222f08882898321
+:10562000e02212d58da30592e02212d6682404123e
+:10563000d65b858482858583a3a3e521f0a3e5223b
+:10564000f07c047d0012160d85328285338312278b
+:1056500054740212249c7f020225f0f08584828516
+:105660008583ecf0a3edf02212d61bfeea2e12d6b3
+:1056700022225392fe02111874f712251874fe129a
+:1056800024b612274c8a828b83a3a3a3a38582848a
+:105690008583850592a3a3ecf0a3edf08a848b8526
+:1056a000a3a3e024fcf8e434fff9e80592f0a3e9b1
+:1056b000f01213d3804b74f712251874fe1224b61f
+:1056c00012274ce9fe8a848b850592a3a3a3a3a38a
+:1056d000a3a3a38a828b830592a3a3740af0740107
+:1056e0000592f0ee8584828585830592a312d714f6
+:1056f0007402f0a3e412d714a3a3ecf0a3ed12d725
+:10570000fe853282853383122754740212249c7fd3
+:10571000010225f0f0858482858583a3a32274f796
+:1057200012251874fe1224b612274ce9fe8a848bc7
+:10573000850592a3a3a3a3a3a3a3a38a828b830516
+:1057400092a3a3740af07413809674f3122518744c
+:10575000fe1224b612274c740f1224efe0fea3e0d1
+:10576000ff74111224efe0f521a3e0f52274131267
+:1057700024efe0f523a3e0f5248a828b83a3a3a37f
+:10578000a3a3a3a3a3a882a9838a828b83a3a374c0
+:1057900010f0888289837412f012d80f04f00592f9
+:1057a00012d80f888289830592a3f088828983a307
+:1057b000a37408f0a3e412d7f0ecf0a3ed12d7f035
+:1057c000a3a3eef0a3ef12d807e521f0a3e5221280
+:1057d000d807a3a3e523f0a3e52412d7fe853282e0
+:1057e000853383122754740212249c7f050225f00e
+:1057f00012d7f422f088828983a3a3a3a322f07c8a
+:10580000057d0012160d2212d7f4a3a3a3a32290a4
+:105810000361e02471f584a3e03400f5850592e08e
+:105820002274f612251874fe1224b612274ceafed2
+:10583000ebff8e828f83a3a3a3a3a3a3a3a3a8821a
+:10584000a983a385822185832288828983e01470bd
+:105850000302d8e224ef600814700302d8e28071da
+:10586000900485e0a2e04069888489850592a3a31d
+:10587000a3a3a3a3a3a3a3a312277b88848985a39f
+:10588000a3a3a3a3a3a3a312277b88828983059242
+:10589000a3a3a3a3a3a3e0fca3e0fd88828983a321
+:1058a000a3a3a3e0faa3e0fb900363e0f912175d62
+:1058b000740412249ce970047c0080027c017d0049
+:1058c000852182852283e0f9eefaeffb121619801a
+:1058d000147c007d00852182852283e0f912161355
+:1058e0008003121811853282853383122754740283
+:1058f00012249c7f020225f074f61225188a828bee
+:1059000083a3a3e0c394045005121811802e8a8249
+:105910008b83a3a3a3a3a3a3e0f521a3e0f522789f
+:105920002112278e04000209d92fd939d934d9126e
+:1059300016078008121991800312162580b5e975a3
+:10594000f00aa4faabf0745f2afa744b3bfb539253
+:10595000fe02111874e812251874fe1224b61227dc
+:105960004c74ea12248674061224efaa82ab837563
+:105970002d00752e00752900752a0074301224f947
+:10598000853282853383e584f0a3e585f0e975f0ff
+:105990000aa4f8a9f0745f28f52f744b39f5308507
+:1059a0002f82f583a3a3a3a3782512229474021255
+:1059b00024f9852f8285308374041222ec802b1207
+:1059c000db4288828983059212db8ca882a983ec52
+:1059d000faedfb12db7212db72e08a828b83f0a39a
+:1059e0000aab8374047825122162e52545264527f4
+:1059f0004528700302dac38a828b835392fea3acdc
+:105a000082ad83e525540f24fe606b14606814603a
+:105a10005b14605814600e14600b146066146063ad
+:105a200014609c80be12db2e782112228585328282
+:105a30008533830592e02404f8a3e03400f985322d
+:105a400082853383e8f0a3e9f08a828b83e5211213
+:105a5000db1fad22ae23e524cecd8a828b83f0a35b
+:105a6000eecdf0a3edf0a30a0a02d9e012db421258
+:105a7000db18e902d9da12db25f812db3e12db185b
+:105a800002d9e312db25f529a3e0f52a12db3e8ad1
+:105a9000828b83e52912db1d74031224efe0f8e505
+:105aa0002928f8e52a3400f9e8f0e9f8740212240c
+:105ab000efe048f012db25f52da3e0f52e12db3eda
+:105ac00002d9e35392fe900549e0f8a3e0f9e849d2
+:105ad000602e782d122760ac29ad2a74041224efb1
+:105ae000aa82ab83852f82853083a3e4932404f9b3
+:105af000059290054912db68122503740212249c5a
+:105b0000741612249c8532828533831227547402c2
+:105b100012249c7f100225f0e88a828b830592f084
+:105b2000ecfaedfb2212db292212db2ee022853279
+:105b300082853383e0f584a3e0f58505922212dbac
+:105b40004d2212db29f8a3e0f912db4d22853284c5
+:105b500085338512db68a3a3853284853385e5828e
+:105b60000592f0a3e583f022e0f582a3e0f583053a
+:105b7000922212db7912db792212db8c08a9838a4c
+:105b8000828b83a30aab838882898322e08a828bfb
+:105b900083f088828983a322c082c0835392fe90bf
+:105ba00004c6e4f09004c7f0c2adc2c743a92043c5
+:105bb000b920900369e0a2e0500575358080037537
+:105bc0003500d083d08202111874f012251874fcad
+:105bd000122486853282853383eaf0a3ebf0a3ecae
+:105be000f0a3edf012dd419004cc78211222a785bc
+:105bf00032828533831222b69004c81222c28532c3
+:105c00008285338378251222859009f87825122120
+:105c1000ad782579211221d39009fc782512221321
+:105c2000e5254526452745286006d2add2c7802107
+:105c3000e5ad60fc74021224efe0f59774011224c4
+:105c4000efe0f596853282853383e0f595c2c7d2c1
+:105c5000ad740412249c7f080225f074f0122518fc
+:105c600074fe1224b612274c9004c6e0600302ddd5
+:105c700029c2af1219f7e96003753401d2afe534d8
+:105c8000700302dd29121d93e9700302dd299003e0
+:105c900069e0a2e1500302dd297e07a2e340031e72
+:105ca0001e1ee586a2e04004a2f850048fc780794a
+:105cb000a2ad40048ebe803012dd419004c878252c
+:105cc000122285782579211221d3900b287825126c
+:105cd0002213900a007825121f82405beec39405c0
+:105ce00040557e05eeff8fbe7e00900369e0a2e086
+:105cf0004017e5be54036403700f0ee5a8f8c2af69
+:105d0000e0d2e0f0e8a2e792af123940d2afeea2c3
+:105d1000e0501605929009f01227737b0a7a0079f9
+:105d2000001219df740412249c8532828533831299
+:105d30002754740202dc53eec3940740a77f068009
+:105d4000a51239f68a218b228c238d242274f41219
+:105d5000251874f8122486c2af74041224efaa82a4
+:105d6000ab831217a5e9fe853282853383aa82ab05
+:105d7000831219fd900a04782112228585328285ca
+:105d8000338378211221c09004c7e4f0ee6059e912
+:105d9000603474026e6027853282853383782112e5
+:105da000228574041224ef78211221e79009fc78ef
+:105db00021122213e521452245234524600d853219
+:105dc00082853383801074026e60209004c7740152
+:105dd000f074041224ef1222b6121871d2af7408b4
+:105de00012249c7f040225f0e970d3c2ad80ed74cb
+:105df000f612251874fe1224b612274c8a848b855d
+:105e0000e9fe74026e700479028063e584240ff564
+:105e100082e5853400f583e06013e584240ef58285
+:105e2000e5853400f583e060047900804175210c3c
+:105e300075220078211227607c377d0a12deaa12b3
+:105e4000249c8b22ea452270e0e584240cf582e54f
+:105e5000853400f583e00592f0e584240df582e5b4
+:105e6000853400f5830592e00592a3f0790185322f
+:105e7000828533835392fe02e02474f6122518e9da
+:105e8000fe740a1224efe06e6004790080198e21fe
+:105e9000752200782112276012deaa12249c8b2220
+:105ea000ea452270e5790102e02c121efb74022201
+:105eb00074f612251874fe1224b612274ce9fe8ed1
+:105ec00082ac82a2e7502d75211075220078211234
+:105ed0002760ec547ff5217404782112247390f725
+:105ee00098e02521fca3e03522fd121f0174021267
+:105ef000249c8024c333fce433fd059290f79ae0a0
+:105f00002cf582a3e03df5830592e0f8a3e0f98a41
+:105f1000828b83e8f0a3e9f085328285338302e047
+:105f20002474f1122518e9feecff8f82752600a873
+:105f3000828d82ac82eea2e75034741012dfaf5033
+:105f400006a821a9228002a9268821892278211267
+:105f50002760ee547ff52175220074047821122405
+:105f60007390f798e02521f8a3e03522802c740285
+:105f700012dfaf5006a821a9228002a92688218914
+:105f8000227821122760eec333f523e433f5249001
+:105f9000f79ae02523f8a3e03524f9e82cfce9344e
+:105fa00000fd121f01740212249c7f070225f0c31a
+:105fb0009cf52195e0f522c3e52198e5229400a205
+:105fc000d265d03322c082c083e95392fe90000193
+:105fd000f075c90bc2af80fe74f612251874fa1260
+:105fe000248679067cc77dff853282853383aa8229
+:105ff000ab831214337521067522007821122760b5
+:106000007c0e7d7874021224efaa82ab8312deaa82
+:1060100012249c8b22ea45227004790180027900c7
+:1060200074068005122754740212249c7f020225f4
+:10603000f074f3122518e9ffea8f82858221752218
+:10604000008c8285822375240024fb600714601273
+:10605000790080247823122760782112276079b88c
+:10606000800c7823122760782112276079b9121ae0
+:106070003f740412249c79017f050225f074f51207
+:1060800025188b238c218d227821122760ac237b4d
+:1060900000804074f51225188b238c218d227821e5
+:1060a000122760ac237b01802a74f51225188b23fc
+:1060b0008c218d227821122760ac237b02801474fe
+:1060c000f51225188b238c218d227821122760aca4
+:1060d000237b03121c7f740212249c7f030225f091
+:1060e00074f51225188b238c218d227821122760bc
+:1060f000ac237b0480dd74f51225188b238c218d55
+:10610000227821122760ac237b0580c774f6122504
+:1061100018e5c7fc75c70390f7f4e0a2e7500779cc
+:1061200001121a2d80f9fd8cc7e5c7fc90036ae0c7
+:10613000f5c7eda2e050047e0580027e007900895b
+:1061400082aa82740e2af58274ff3400f583e0ff80
+:106150007521017522007821122473e5215e7054a7
+:10616000eac333fae433fb74fd2af582740a3bf583
+:1061700083ef601114601614601b146020146025f6
+:1061800014602a802f740df0a3741c802674c9f04b
+:10619000a3741d801e74abf0a3741d8016747df073
+:1061a000a3741e800e7417f0a3741e8006741df075
+:1061b000a3741ef009e9c3940640848cc7eda2e0e5
+:1061c0005014900b01740df0a3741cf0900afd7430
+:1061d000abf0a3741df07f020225f0c082c08312d1
+:1061e000e299701b9008e1e064027002a3e0704a3b
+:1061f0009000017401f075c9099008cee4804074e4
+:106200002268701d9008cee070369008dfe0f8a399
+:10621000e0f990097ae8f0a3e9f09008ce740280e2
+:106220001e74206870149008cee070149008e57415
+:1062300073f0a37409f0a3e480df9008ce7404f037
+:106240008071c082c08312e299740368702690083e
+:10625000e1e064027002a3e070379008e5747cf01e
+:10626000a37409f0a3e4f0a37406f0a3e4f090088b
+:10627000ce04802274216870189008cee0701890c7
+:1062800008e57473f0a37409f0a3e4f0a374078025
+:10629000d99008ce7404f0801a5392fe9008dee084
+:1062a000f82280028000c082c0835392fe9008ce04
+:1062b0007404f0d083d08202111874f7122518a24a
+:1062c000afe433fec2af12e3737900906214e0a230
+:1062d000e05022906216e0f8a3e0e8ff8a828b8308
+:1062e000a3f0ea2402fceb3400fdeff97a287b628c
+:1062f000121e537901900972e090620ef0eea2e056
+:1063000092af7f010225f074f712251874fe122453
+:10631000b612274c8a848b85e9ff12e3738003123f
+:106320001e65906211e0a2e040f5a2afe433f521d2
+:10633000c2afeffe601f944140027e40ac84ad8549
+:10634000eef97a287b62121e5990620e7404f09066
+:1063500062117401f0900972e090620ef0e521a2e2
+:10636000e092af853282853383122754740212245f
+:106370009c808f90620ee0900972f090620e74041f
+:10638000f02274f612251874fe1224b612274c74eb
+:10639000fe122486853282853383aa82ab83121350
+:1063a0004f9004beeaf0a3ebf0853282853383126e
+:1063b000e4447a277b001223fbe8fe9004be12e43b
+:1063c000c67d008012e5842427f8e5853400f9e8cd
+:1063d0000592f0a3e9f00d8d82aa82ea75f027a458
+:1063e000f8a9f05392fe9004bee028f584a3e039aa
+:1063f000f585ee24fff8e434fff9c3ea98e499a2a6
+:10640000d265d03340bfe40592f0a3f074021224a9
+:106410009c8532828533830592122754740212249c
+:106420009c7f020225f0c082c0835392fe12e44199
+:10643000e8496004790180027900d083d08202119a
+:10644000189004bce0f8a3e0f92274f71225187440
+:10645000fe1224b612274c7900a2afe433f8c2af83
+:1064600005929004bc800709858284858385e0f5c8
+:1064700082a3e0f583e582458370ece8a2e092af69
+:106480008532828533830592122754740212249c2c
+:106490007f010225f0c082c083a2afe433fcc2af0b
+:1064a0005392fe9004bce0faa3e0fbea4b600f8a33
+:1064b000828b8312e4c68a828b83e4f0a3f0eca281
+:1064c000e092af02e43ae0f8a3e0f99004bce8f00f
+:1064d000a3e9f02274f7122518eafeebffa2afe45d
+:1064e00033f521c2afee4f603412e441e849701534
+:1064f0007b06ee2424f582ef3400f583e0547ffa26
+:1065000079011219eb12e4418e828f83e8f0a3e93e
+:10651000f0eef8eff99004bce8f0a3e9f0e521a271
+:10652000e092af02e49074f712251874fe1224b6bc
+:1065300012274c74fe122486e9fe85328485338549
+:106540009007ac74021222dbee600974011224ef92
+:106550007401800674011224efe4f08532828533e1
+:1065600083ac82ad837b027a0079010592900affa9
+:10657000e0f582a3e0f5830592122503740212244c
+:106580009c853282853383122754740212249c7fa7
+:10659000010225f074f712251874fe1224b6122792
+:1065a0004c74fe12248674804b853282853383f0ce
+:1065b00074011224efea80a2c082c0835392fe903d
+:1065c00007aee0543ff9e0c413135403600b1460aa
+:1065d00012146014146028802c1217e17900121d27
+:1065e000b180221217ed80f4a3e0f8740358fbe8a1
+:1065f0001313543ffa1217f37900121db1800612db
+:1066000017e7121db7d083d08202111874f7122534
+:106610001874fe1224b612274c9007b0e0f874ae3e
+:1066200028f58274073400f583e9f09007b0e004a0
+:10663000f0640270137b007a0079051219d9900773
+:10664000b0e4f0121dbd80160592900b4412277322
+:106650007b007a0079051219df740412249c02e58c
+:106660008174f712251874fe1224b612274ceafe24
+:10667000ebff8c848d85ee6019790085328285333d
+:10668000835392fe02e587439201e0f9121dc30590
+:1066900092a3eff874ff281f0470ec790180dcc02e
+:1066a00082c083ea70085392fe9007b0e4f0d08372
+:1066b000d0825392fe021118c082c0831217e102e9
+:1066c000e60574f7122518e5c7fe90036ae0f5c7e2
+:1066d00090ff14e0f974ff69600c121d5de960061b
+:1066e0008ec7790080048ec779017f010225f0747e
+:1066f000f112251874fe1224b612274c8925eafee1
+:10670000ebff8c238d2474111224efe0f521a3e01c
+:10671000f522e5c7f890036ae0f5c790ff25e0f59c
+:1067200026f52788c774ff652760137c007d007bf2
+:106730000012e78f1225037a01a926121d57e523bf
+:10674000452460047a0080027a01eefceffdab255f
+:1067500012e791122503e5234524600eac21ad22fa
+:10676000ab237a0112e79112250374ff6527600cb1
+:106770007c007d007b3f12e78f12250385328285e6
+:106780003383122754740212249c7f070225f07a67
+:106790000379000592900afde0f582a3e0f58305f8
+:1067a000922274ff12248612142d121ca9121a03ad
+:1067b000121451121d3f121de175c70390f7f1e04d
+:1067c0006003fe80027e0190f7f0e0faeef9121409
+:1067d0003f9005497499f0a3741df0121dd5d2aff6
+:1067e00079017ce77dff853282853383aa82ab8382
+:1067f000121433853282853383e0f52175220078c7
+:1068000021122760752101782112276075210378f4
+:1068100021122760752147782112276075210178a0
+:10682000211227607821122760782112276079b61b
+:10683000121a3f740e12249c121e41121e47121a85
+:1068400033e9700579bb121a3f1214457401122402
+:106850009c021118c082c0835392fe90032c74478f
+:10686000f0a3740cf0d083d08202111874f41225b6
+:106870001874fe1224b612274c8a848b8512135b7f
+:106880008a218b22858482858583eaf0a3ebf078c8
+:106890002112276012e90e12249c90032ce0faa327
+:1068a000e0fb0592e0f8a3e0f9059290032ce028c4
+:1068b000f8a3e039f990032ce8f0a3e9f0853282df
+:1068c000853383122754740212249c7f040225f01e
+:1068d00074f41225188a218b2212135bc3ea9521c6
+:1068e000eb952250067a007b0080217821122760e8
+:1068f00012e90e12249c90032c12e9422521f8a3e0
+:10690000e03522f990032ce8f0a3e9f080bd7c008b
+:106910007d0090032ce0faa3e0fb121f0774022213
+:10692000c082c083e5c775c703f5c75392fe90f7d1
+:106930009e12e942f8a3e0f9eac398faeb99fb0248
+:10694000e865e0faa3e0fb90032ce022c082c0835c
+:106950007534015392fe900369e0a2e05004788000
+:1069600080067800800288c6e59e6870f9906270a3
+:106970007408f0d083d082021118c082c08374fee4
+:106980001224867902853282853383aa82ab8312f0
+:1069900017bd853282853383e0f5bc74011224ef84
+:1069a000e0f5bc740212249c80c974f71225187497
+:1069b000fe1224b612274c8a848b85800b5392fedc
+:1069c00090618fe00592f0a3e9f874ff2819047034
+:1069d000ec8532828533835392fe1227547402125f
+:1069e000249c7f010225f0c082c0835392fe90f761
+:1069f00094e0f8a3e0f9900982e8f0a3e9f0d083ed
+:106a0000d08202111874f712251874fe1224b612df
+:106a1000274ceafcebf87a007b0008802fe8604303
+:106a2000a3e0fdec6d6038e96d700b059290098272
+:106a3000e0faa3e0fb185392fe900982e02efea339
+:106a4000e03400ff900982eef0a3eff0900982e0bd
+:106a5000f584a3e0f5850592e0fe70c1e860047a54
+:106a6000007b00853282853383059212275474029d
+:106a700012249c7f010225f0c082c083c2af5392d2
+:106a8000fe906270e0a2e740f5e9c333906272f0d5
+:106a9000906270e0d2e0f0e0a2e740fbd2afd0839a
+:106aa000d08202111874f7122518a2afe433f8c28d
+:106ab000afed90036bf0eca3f0a37462f0a37473da
+:106ac000f0a3e4f0e9a3f0a37412f0a3744af0eb8e
+:106ad000906272f0ea906271f07403f5d575d46b30
+:106ae00075d601906270e0d2e1f0e0a2e740fbe8e9
+:106af000a2e092af7f010225f074f612251874fe11
+:106b00001224b612274c9061b1e4f0e070f8906165
+:106b1000f3e4f09061f2f0e5c7fe7400f5c774bdd0
+:106b2000059290036bf07473059290036cf0a3745c
+:106b300061f0a374f0f0a3740df0a374ecf0a374ef
+:106b400020f0a37442f01214578ec79061b1740103
+:106b5000f0e0640170f58532828533831227547426
+:106b60000212249c7f020225f074f712251874fe8d
+:106b70001224b612274c740b1224efe0f8a3e0f9ac
+:106b80008a828b838c848d85800e0592a30592a3c7
+:106b9000e824ff18e934fff9e849601e5392fee04b
+:106ba000fa0592e06a60e3e0f80592e0c3985006c7
+:106bb0007aff7bff80087a0180027a007b008532b1
+:106bc000828533835392fe122754740212249c7fd1
+:106bd000010225f074f612251874fe1224b612274d
+:106be0004ceafeebff89218c228021aa22a9218e6a
+:106bf000848f850592a3a3e0f582a3e0f583059237
+:106c00001225038e828f83e0fea3e0ffee4f70db40
+:106c1000853282853383122754740212249c7f02aa
+:106c20000225f074f7122518e9feeaff12183b124c
+:106c3000183512134912142d12186b1219e512137c
+:106c400007eef91216cdeef91213cd1218e9121350
+:106c5000c7eef91214db121481eff91217f97f0154
+:106c60000225f0c082c0831219f112187780f874df
+:106c7000f712251874fe1224b612274c740b122436
+:106c8000efe0f8a3e0f98a848b858c828d838010f5
+:106c9000e00592f0a30592a3e824ff18e934fff978
+:106ca000e84970ec853282853383122754740212ce
+:106cb000249c7f010225f07403f5d3746b2408f53e
+:106cc000d275d100c2c0d2b85392fe02111874031b
+:106cd000f5d575d46b75d6010000000000000000ea
+:106ce0000075d70180e2c082c083853282853383fc
+:106cf0005392fee0f8a3e0f98a828b83800becf0dc
+:106d0000a3e824ff18e934fff9e84970f1d083d0f3
+:106d100082021118ffffffffffffffffffffffffd2
+:106d2000ffffffffffffffffffffffffffffffff73
+:106d3000ffffffffffffffffffffffffffffffff63
+:106d4000ffffffffffffffffffffffffffffffff53
+:106d5000ffffffffffffffffffffffffffffffff43
+:106d6000ffffffffffffffffffffffffffffffff33
+:106d7000ffffffffffffffffffffffffffffffff23
+:106d8000ffffffffffffffffffffffffffffffff13
+:106d9000ffffffffffffffffffffffffffffffff03
+:106da000fffffffffffffffffffffffffffffffff3
+:106db000ffffffffffffffffffffffffffffffffe3
+:106dc000ffffffffffffffffffffffffffffffffd3
+:106dd000ffffffffffffffffffffffffffffffffc3
+:106de000ffffffffffffffffffffffffffffffffb3
+:106df000ffffffffffffffffffffffffffffffffa3
+:106e0000ffffffffffffffffffffffffffffffff92
+:106e1000ffffffffffffffffffffffffffffffff82
+:106e2000ffffffffffffffffffffffffffffffff72
+:106e3000ffffffffffffffffffffffffffffffff62
+:106e4000ffffffffffffffffffffffffffffffff52
+:106e5000ffffffffffffffffffffffffffffffff42
+:106e6000ffffffffffffffffffffffffffffffff32
+:106e7000ffffffffffffffffffffffffffffffff22
+:106e8000ffffffffffffffffffffffffffffffff12
+:106e9000ffffffffffffffffffffffffffffffff02
+:106ea000fffffffffffffffffffffffffffffffff2
+:106eb000ffffffffffffffffffffffffffffffffe2
+:106ec000ffffffffffffffffffffffffffffffffd2
+:106ed000ffffffffffffffffffffffffffffffffc2
+:106ee000ffffffffffffffffffffffffffffffffb2
+:106ef000ffffffffffffffffffffffffffffffffa2
+:106f0000ffffffffffffffffffffffffffffffff91
+:106f1000ffffffffffffffffffffffffffffffff81
+:106f2000ffffffffffffffffffffffffffffffff71
+:106f3000ffffffffffffffffffffffffffffffff61
+:106f4000ffffffffffffffffffffffffffffffff51
+:106f5000ffffffffffffffffffffffffffffffff41
+:106f6000ffffffffffffffffffffffffffffffff31
+:106f7000ffffffffffffffffffffffffffffffff21
+:106f8000ffffffffffffffffffffffffffffffff11
+:106f9000ffffffffffffffffffffffffffffffff01
+:106fa000fffffffffffffffffffffffffffffffff1
+:106fb000ffffffffffffffffffffffffffffffffe1
+:106fc000ffffffffffffffffffffffffffffffffd1
+:106fd000ffffffffffffffffffffffffffffffffc1
+:106fe000ffffffffffffffffffffffffffffffffb1
+:106ff000ffffffffffffffffffffffffffffffffa1
+:10700000ffffffffffffffffffffffffffffffff90
+:10701000ffffffffffffffffffffffffffffffff80
+:10702000ffffffffffffffffffffffffffffffff70
+:10703000ffffffffffffffffffffffffffffffff60
+:10704000ffffffffffffffffffffffffffffffff50
+:10705000ffffffffffffffffffffffffffffffff40
+:10706000ffffffffffffffffffffffffffffffff30
+:10707000ffffffffffffffffffffffffffffffff20
+:10708000ffffffffffffffffffffffffffffffff10
+:10709000ffffffffffffffffffffffffffffffff00
+:1070a000fffffffffffffffffffffffffffffffff0
+:1070b000ffffffffffffffffffffffffffffffffe0
+:1070c000ffffffffffffffffffffffffffffffffd0
+:1070d000ffffffffffffffffffffffffffffffffc0
+:1070e000ffffffffffffffffffffffffffffffffb0
+:1070f000ffffffffffffffffffffffffffffffffa0
+:10710000ffffffffffffffffffffffffffffffff8f
+:10711000ffffffffffffffffffffffffffffffff7f
+:10712000ffffffffffffffffffffffffffffffff6f
+:10713000ffffffffffffffffffffffffffffffff5f
+:10714000ffffffffffffffffffffffffffffffff4f
+:10715000ffffffffffffffffffffffffffffffff3f
+:10716000ffffffffffffffffffffffffffffffff2f
+:10717000ffffffffffffffffffffffffffffffff1f
+:10718000ffffffffffffffffffffffffffffffff0f
+:10719000ffffffffffffffffffffffffffffffffff
+:1071a000ffffffffffffffffffffffffffffffffef
+:1071b000ffffffffffffffffffffffffffffffffdf
+:1071c000ffffffffffffffffffffffffffffffffcf
+:1071d000ffffffffffffffffffffffffffffffffbf
+:1071e000ffffffffffffffffffffffffffffffffaf
+:1071f000ffffffffffffffffffffffffffffffff9f
+:10720000ffffffffffffffffffffffffffffffff8e
+:10721000ffffffffffffffffffffffffffffffff7e
+:10722000ffffffffffffffffffffffffffffffff6e
+:10723000ffffffffffffffffffffffffffffffff5e
+:10724000ffffffffffffffffffffffffffffffff4e
+:10725000ffffffffffffffffffffffffffffffff3e
+:10726000ffffffffffffffffffffffffffffffff2e
+:10727000ffffffffffffffffffffffffffffffff1e
+:10728000ffffffffffffffffffffffffffffffff0e
+:10729000fffffffffffffffffffffffffffffffffe
+:1072a000ffffffffffffffffffffffffffffffffee
+:1072b000ffffffffffffffffffffffffffffffffde
+:1072c000ffffffffffffffffffffffffffffffffce
+:1072d000ffffffffffffffffffffffffffffffffbe
+:1072e000ffffffffffffffffffffffffffffffffae
+:1072f000ffffffffffffffffffffffffffffffff9e
+:10730000ffffffffffffffffffffffffffffffff8d
+:10731000ffffffffffffffffffffffffffffffff7d
+:10732000ffffffffffffffffffffffffffffffff6d
+:10733000ffffffffffffffffffffffffffffffff5d
+:10734000ffffffffffffffffffffffffffffffff4d
+:10735000ffffffffffffffffffffffffffffffff3d
+:10736000ffffffffffffffffffffffffffffffff2d
+:10737000ffffffffffffffffffffffffffffffff1d
+:10738000ffffffffffffffffffffffffffffffff0d
+:10739000fffffffffffffffffffffffffffffffffd
+:1073a000ffffffffffffffffffffffffffffffffed
+:1073b000ffffffffffffffffffffffffffffffffdd
+:1073c000ffffffffffffffffffffffffffffffffcd
+:1073d000ffffffffffffffffffffffffffffffffbd
+:1073e000ffffffffffffffffffffffffffffffffad
+:1073f000ffffffffffffffffffffffffffffffff9d
+:10740000ffffffffffffffffffffffffffffffff8c
+:10741000ffffffffffffffffffffffffffffffff7c
+:10742000ffffffffffffffffffffffffffffffff6c
+:10743000ffffffffffffffffffffffffffffffff5c
+:10744000ffffffffffffffffffffffffffffffff4c
+:10745000ffffffffffffffffffffffffffffffff3c
+:10746000ffffffffffffffffffffffffffffffff2c
+:10747000ffffffffffffffffffffffffffffffff1c
+:10748000ffffffffffffffffffffffffffffffff0c
+:10749000fffffffffffffffffffffffffffffffffc
+:1074a000ffffffffffffffffffffffffffffffffec
+:1074b000ffffffffffffffffffffffffffffffffdc
+:1074c000ffffffffffffffffffffffffffffffffcc
+:1074d000ffffffffffffffffffffffffffffffffbc
+:1074e000ffffffffffffffffffffffffffffffffac
+:1074f000ffffffffffffffffffffffffffffffff9c
+:10750000ffffffffffffffffffffffffffffffff8b
+:10751000ffffffffffffffffffffffffffffffff7b
+:10752000ffffffffffffffffffffffffffffffff6b
+:10753000ffffffffffffffffffffffffffffffff5b
+:10754000ffffffffffffffffffffffffffffffff4b
+:10755000ffffffffffffffffffffffffffffffff3b
+:10756000ffffffffffffffffffffffffffffffff2b
+:10757000ffffffffffffffffffffffffffffffff1b
+:10758000ffffffffffffffffffffffffffffffff0b
+:10759000fffffffffffffffffffffffffffffffffb
+:1075a000ffffffffffffffffffffffffffffffffeb
+:1075b000ffffffffffffffffffffffffffffffffdb
+:1075c000ffffffffffffffffffffffffffffffffcb
+:1075d000ffffffffffffffffffffffffffffffffbb
+:1075e000ffffffffffffffffffffffffffffffffab
+:1075f000ffffffffffffffffffffffffffffffff9b
+:10760000ffffffffffffffffffffffffffffffff8a
+:10761000ffffffffffffffffffffffffffffffff7a
+:10762000ffffffffffffffffffffffffffffffff6a
+:10763000ffffffffffffffffffffffffffffffff5a
+:10764000ffffffffffffffffffffffffffffffff4a
+:10765000ffffffffffffffffffffffffffffffff3a
+:10766000ffffffffffffffffffffffffffffffff2a
+:10767000ffffffffffffffffffffffffffffffff1a
+:10768000ffffffffffffffffffffffffffffffff0a
+:10769000fffffffffffffffffffffffffffffffffa
+:1076a000ffffffffffffffffffffffffffffffffea
+:1076b000ffffffffffffffffffffffffffffffffda
+:1076c000ffffffffffffffffffffffffffffffffca
+:1076d000ffffffffffffffffffffffffffffffffba
+:1076e000ffffffffffffffffffffffffffffffffaa
+:1076f000ffffffffffffffffffffffffffffffff9a
+:10770000ffffffffffffffffffffffffffffffff89
+:10771000ffffffffffffffffffffffffffffffff79
+:10772000ffffffffffffffffffffffffffffffff69
+:10773000ffffffffffffffffffffffffffffffff59
+:10774000ffffffffffffffffffffffffffffffff49
+:10775000ffffffffffffffffffffffffffffffff39
+:10776000ffffffffffffffffffffffffffffffff29
+:10777000ffffffffffffffffffffffffffffffff19
+:10778000ffffffffffffffffffffffffffffffff09
+:10779000fffffffffffffffffffffffffffffffff9
+:1077a000ffffffffffffffffffffffffffffffffe9
+:1077b000ffffffffffffffffffffffffffffffffd9
+:1077c000ffffffffffffffffffffffffffffffffc9
+:1077d000ffffffffffffffffffffffffffffffffb9
+:1077e000ffffffffffffffffffffffffffffffffa9
+:1077f000ffffffffffffffffffffffffffffffff99
+:10780000ffffffffffffffffffffffffffffffff88
+:10781000ffffffffffffffffffffffffffffffff78
+:10782000ffffffffffffffffffffffffffffffff68
+:10783000ffffffffffffffffffffffffffffffff58
+:10784000ffffffffffffffffffffffffffffffff48
+:10785000ffffffffffffffffffffffffffffffff38
+:10786000ffffffffffffffffffffffffffffffff28
+:10787000ffffffffffffffffffffffffffffffff18
+:10788000ffffffffffffffffffffffffffffffff08
+:10789000fffffffffffffffffffffffffffffffff8
+:1078a000ffffffffffffffffffffffffffffffffe8
+:1078b000ffffffffffffffffffffffffffffffffd8
+:1078c000ffffffffffffffffffffffffffffffffc8
+:1078d000ffffffffffffffffffffffffffffffffb8
+:1078e000ffffffffffffffffffffffffffffffffa8
+:1078f000ffffffffffffffffffffffffffffffff98
+:10790000ffffffffffffffffffffffffffffffff87
+:10791000ffffffffffffffffffffffffffffffff77
+:10792000ffffffffffffffffffffffffffffffff67
+:10793000ffffffffffffffffffffffffffffffff57
+:10794000ffffffffffffffffffffffffffffffff47
+:10795000ffffffffffffffffffffffffffffffff37
+:10796000ffffffffffffffffffffffffffffffff27
+:10797000ffffffffffffffffffffffffffffffff17
+:10798000ffffffffffffffffffffffffffffffff07
+:10799000fffffffffffffffffffffffffffffffff7
+:1079a000ffffffffffffffffffffffffffffffffe7
+:1079b000ffffffffffffffffffffffffffffffffd7
+:1079c000ffffffffffffffffffffffffffffffffc7
+:1079d000ffffffffffffffffffffffffffffffffb7
+:1079e000ffffffffffffffffffffffffffffffffa7
+:1079f000ffffffffffffffffffffffffffffffff97
+:107a0000ffffffffffffffffffffffffffffffff86
+:107a1000ffffffffffffffffffffffffffffffff76
+:107a2000ffffffffffffffffffffffffffffffff66
+:107a3000ffffffffffffffffffffffffffffffff56
+:107a4000ffffffffffffffffffffffffffffffff46
+:107a5000ffffffffffffffffffffffffffffffff36
+:107a6000ffffffffffffffffffffffffffffffff26
+:107a7000ffffffffffffffffffffffffffffffff16
+:107a8000ffffffffffffffffffffffffffffffff06
+:107a9000fffffffffffffffffffffffffffffffff6
+:107aa000ffffffffffffffffffffffffffffffffe6
+:107ab000ffffffffffffffffffffffffffffffffd6
+:107ac000ffffffffffffffffffffffffffffffffc6
+:107ad000ffffffffffffffffffffffffffffffffb6
+:107ae000ffffffffffffffffffffffffffffffffa6
+:107af000ffffffffffffffffffffffffffffffff96
+:107b0000ffffffffffffffffffffffffffffffff85
+:107b1000ffffffffffffffffffffffffffffffff75
+:107b2000ffffffffffffffffffffffffffffffff65
+:107b3000ffffffffffffffffffffffffffffffff55
+:107b4000ffffffffffffffffffffffffffffffff45
+:107b5000ffffffffffffffffffffffffffffffff35
+:107b6000ffffffffffffffffffffffffffffffff25
+:107b7000ffffffffffffffffffffffffffffffff15
+:107b8000ffffffffffffffffffffffffffffffff05
+:107b9000fffffffffffffffffffffffffffffffff5
+:107ba000ffffffffffffffffffffffffffffffffe5
+:107bb000ffffffffffffffffffffffffffffffffd5
+:107bc000ffffffffffffffffffffffffffffffffc5
+:107bd000ffffffffffffffffffffffffffffffffb5
+:107be000ffffffffffffffffffffffffffffffffa5
+:107bf000ffffffffffffffffffffffffffffffff95
+:107c0000ffffffffffffffffffffffffffffffff84
+:107c1000ffffffffffffffffffffffffffffffff74
+:107c2000ffffffffffffffffffffffffffffffff64
+:107c3000ffffffffffffffffffffffffffffffff54
+:107c4000ffffffffffffffffffffffffffffffff44
+:107c5000ffffffffffffffffffffffffffffffff34
+:107c6000ffffffffffffffffffffffffffffffff24
+:107c7000ffffffffffffffffffffffffffffffff14
+:107c8000ffffffffffffffffffffffffffffffff04
+:107c9000fffffffffffffffffffffffffffffffff4
+:107ca000ffffffffffffffffffffffffffffffffe4
+:107cb000ffffffffffffffffffffffffffffffffd4
+:107cc000ffffffffffffffffffffffffffffffffc4
+:107cd000ffffffffffffffffffffffffffffffffb4
+:107ce000ffffffffffffffffffffffffffffffffa4
+:107cf000ffffffffffffffffffffffffffffffff94
+:107d0000ffffffffffffffffffffffffffffffff83
+:107d1000ffffffffffffffffffffffffffffffff73
+:107d2000ffffffffffffffffffffffffffffffff63
+:107d3000ffffffffffffffffffffffffffffffff53
+:107d4000ffffffffffffffffffffffffffffffff43
+:107d5000ffffffffffffffffffffffffffffffff33
+:107d6000ffffffffffffffffffffffffffffffff23
+:107d7000ffffffffffffffffffffffffffffffff13
+:107d8000ffffffffffffffffffffffffffffffff03
+:107d9000fffffffffffffffffffffffffffffffff3
+:107da000ffffffffffffffffffffffffffffffffe3
+:107db000ffffffffffffffffffffffffffffffffd3
+:107dc000ffffffffffffffffffffffffffffffffc3
+:107dd000ffffffffffffffffffffffffffffffffb3
+:107de000ffffffffffffffffffffffffffffffffa3
+:107df000ffffffffffffffffffffffffffffffff93
+:107e0000ffffffffffffffffffffffffffffffff82
+:107e1000ffffffffffffffffffffffffffffffff72
+:107e2000ffffffffffffffffffffffffffffffff62
+:107e3000ffffffffffffffffffffffffffffffff52
+:107e4000ffffffffffffffffffffffffffffffff42
+:107e5000ffffffffffffffffffffffffffffffff32
+:107e6000ffffffffffffffffffffffffffffffff22
+:107e7000ffffffffffffffffffffffffffffffff12
+:107e8000ffffffffffffffffffffffffffffffff02
+:107e9000fffffffffffffffffffffffffffffffff2
+:107ea000ffffffffffffffffffffffffffffffffe2
+:107eb000ffffffffffffffffffffffffffffffffd2
+:107ec000ffffffffffffffffffffffffffffffffc2
+:107ed000ffffffffffffffffffffffffffffffffb2
+:107ee000ffffffffffffffffffffffffffffffffa2
+:107ef000ffffffffffffffffffffffffffffffff92
+:107f0000ffffffffffffffffffffffffffffffff81
+:107f1000ffffffffffffffffffffffffffffffff71
+:107f2000ffffffffffffffffffffffffffffffff61
+:107f3000ffffffffffffffffffffffffffffffff51
+:107f4000ffffffffffffffffffffffffffffffff41
+:107f5000ffffffffffffffffffffffffffffffff31
+:107f6000ffffffffffffffffffffffffffffffff21
+:107f7000ffffffffffffffffffffffffffffffff11
+:107f8000ffffffffffffffffffffffffffffffff01
+:107f9000fffffffffffffffffffffffffffffffff1
+:107fa000ffffffffffffffffffffffffffffffffe1
+:107fb000ffffffffffffffffffffffffffffffffd1
+:107fc000ffffffffffffffffffffffffffffffffc1
+:107fd000ffffffffffffffffffffffffffffffffb1
+:107fe000ffffffffffffffffffffffffffffffffa1
+:107ff000ffffffffffffffffffffffffffffff068a
+:10800000ffffffffffffffffffffffffffffffff80
+:10801000ffffffffffffffffffffffffffffffff70
+:10802000ffffffffffffffffffffffffffffffff60
+:10803000ffffffffffffffffffffffffffffffff50
+:10804000ffffffffffffffffffffffffffffffff40
+:10805000ffffffffffffffffffffffffffffffff30
+:10806000ffffffffffffffffffffffffffffffff20
+:10807000ffffffffffffffffffffffffffffffff10
+:10808000ffffffffffffffffffffffffffffffff00
+:10809000fffffffffffffffffffffffffffffffff0
+:1080a000ffffffffffffffffffffffffffffffffe0
+:1080b000ffffffffffffffffffffffffffffffffd0
+:1080c000ffffffffffffffffffffffffffffffffc0
+:1080d000ffffffffffffffffffffffffffffffffb0
+:1080e000ffffffffffffffffffffffffffffffffa0
+:1080f000ffffffffffffffffffffffffffffffff90
+:10810000ffffffffffffffffffffffffffffffff7f
+:10811000ffffffffffffffffffffffffffffffff6f
+:10812000ffffffffffffffffffffffffffffffff5f
+:10813000ffffffffffffffffffffffffffffffff4f
+:10814000ffffffffffffffffffffffffffffffff3f
+:10815000ffffffffffffffffffffffffffffffff2f
+:10816000ffffffffffffffffffffffffffffffff1f
+:10817000ffffffffffffffffffffffffffffffff0f
+:10818000ffffffffffffffffffffffffffffffffff
+:10819000ffffffffffffffffffffffffffffffffef
+:1081a000ffffffffffffffffffffffffffffffffdf
+:1081b000ffffffffffffffffffffffffffffffffcf
+:1081c000ffffffffffffffffffffffffffffffffbf
+:1081d000ffffffffffffffffffffffffffffffffaf
+:1081e000ffffffffffffffffffffffffffffffff9f
+:1081f000ffffffffffffffffffffffffffffffff8f
+:10820000ffffffffffffffffffffffffffffffff7e
+:10821000ffffffffffffffffffffffffffffffff6e
+:10822000ffffffffffffffffffffffffffffffff5e
+:10823000ffffffffffffffffffffffffffffffff4e
+:10824000ffffffffffffffffffffffffffffffff3e
+:10825000ffffffffffffffffffffffffffffffff2e
+:10826000ffffffffffffffffffffffffffffffff1e
+:10827000ffffffffffffffffffffffffffffffff0e
+:10828000fffffffffffffffffffffffffffffffffe
+:10829000ffffffffffffffffffffffffffffffffee
+:1082a000ffffffffffffffffffffffffffffffffde
+:1082b000ffffffffffffffffffffffffffffffffce
+:1082c000ffffffffffffffffffffffffffffffffbe
+:1082d000ffffffffffffffffffffffffffffffffae
+:1082e000ffffffffffffffffffffffffffffffff9e
+:1082f000ffffffffffffffffffffffffffffffff8e
+:10830000ffffffffffffffffffffffffffffffff7d
+:10831000ffffffffffffffffffffffffffffffff6d
+:10832000ffffffffffffffffffffffffffffffff5d
+:10833000ffffffffffffffffffffffffffffffff4d
+:10834000ffffffffffffffffffffffffffffffff3d
+:10835000ffffffffffffffffffffffffffffffff2d
+:10836000ffffffffffffffffffffffffffffffff1d
+:10837000ffffffffffffffffffffffffffffffff0d
+:10838000fffffffffffffffffffffffffffffffffd
+:10839000ffffffffffffffffffffffffffffffffed
+:1083a000ffffffffffffffffffffffffffffffffdd
+:1083b000ffffffffffffffffffffffffffffffffcd
+:1083c000ffffffffffffffffffffffffffffffffbd
+:1083d000ffffffffffffffffffffffffffffffffad
+:1083e000ffffffffffffffffffffffffffffffff9d
+:1083f000ffffffffffffffffffffffffffffffff8d
+:10840000ffffffffffffffffffffffffffffffff7c
+:10841000ffffffffffffffffffffffffffffffff6c
+:10842000ffffffffffffffffffffffffffffffff5c
+:10843000ffffffffffffffffffffffffffffffff4c
+:10844000ffffffffffffffffffffffffffffffff3c
+:10845000ffffffffffffffffffffffffffffffff2c
+:10846000ffffffffffffffffffffffffffffffff1c
+:10847000ffffffffffffffffffffffffffffffff0c
+:10848000fffffffffffffffffffffffffffffffffc
+:10849000ffffffffffffffffffffffffffffffffec
+:1084a000ffffffffffffffffffffffffffffffffdc
+:1084b000ffffffffffffffffffffffffffffffffcc
+:1084c000ffffffffffffffffffffffffffffffffbc
+:1084d000ffffffffffffffffffffffffffffffffac
+:1084e000ffffffffffffffffffffffffffffffff9c
+:1084f000ffffffffffffffffffffffffffffffff8c
+:10850000ffffffffffffffffffffffffffffffff7b
+:10851000ffffffffffffffffffffffffffffffff6b
+:10852000ffffffffffffffffffffffffffffffff5b
+:10853000ffffffffffffffffffffffffffffffff4b
+:10854000ffffffffffffffffffffffffffffffff3b
+:10855000ffffffffffffffffffffffffffffffff2b
+:10856000ffffffffffffffffffffffffffffffff1b
+:10857000ffffffffffffffffffffffffffffffff0b
+:10858000fffffffffffffffffffffffffffffffffb
+:10859000ffffffffffffffffffffffffffffffffeb
+:1085a000ffffffffffffffffffffffffffffffffdb
+:1085b000ffffffffffffffffffffffffffffffffcb
+:1085c000ffffffffffffffffffffffffffffffffbb
+:1085d000ffffffffffffffffffffffffffffffffab
+:1085e000ffffffffffffffffffffffffffffffff9b
+:1085f000ffffffffffffffffffffffffffffffff8b
+:10860000ffffffffffffffffffffffffffffffff7a
+:10861000ffffffffffffffffffffffffffffffff6a
+:10862000ffffffffffffffffffffffffffffffff5a
+:10863000ffffffffffffffffffffffffffffffff4a
+:10864000ffffffffffffffffffffffffffffffff3a
+:10865000ffffffffffffffffffffffffffffffff2a
+:10866000ffffffffffffffffffffffffffffffff1a
+:10867000ffffffffffffffffffffffffffffffff0a
+:10868000fffffffffffffffffffffffffffffffffa
+:10869000ffffffffffffffffffffffffffffffffea
+:1086a000ffffffffffffffffffffffffffffffffda
+:1086b000ffffffffffffffffffffffffffffffffca
+:1086c000ffffffffffffffffffffffffffffffffba
+:1086d000ffffffffffffffffffffffffffffffffaa
+:1086e000ffffffffffffffffffffffffffffffff9a
+:1086f000ffffffffffffffffffffffffffffffff8a
+:10870000ffffffffffffffffffffffffffffffff79
+:10871000ffffffffffffffffffffffffffffffff69
+:10872000ffffffffffffffffffffffffffffffff59
+:10873000ffffffffffffffffffffffffffffffff49
+:10874000ffffffffffffffffffffffffffffffff39
+:10875000ffffffffffffffffffffffffffffffff29
+:10876000ffffffffffffffffffffffffffffffff19
+:10877000ffffffffffffffffffffffffffffffff09
+:10878000fffffffffffffffffffffffffffffffff9
+:10879000ffffffffffffffffffffffffffffffffe9
+:1087a000ffffffffffffffffffffffffffffffffd9
+:1087b000ffffffffffffffffffffffffffffffffc9
+:1087c000ffffffffffffffffffffffffffffffffb9
+:1087d000ffffffffffffffffffffffffffffffffa9
+:1087e000ffffffffffffffffffffffffffffffff99
+:1087f000ffffffffffffffffffffffffffffffff89
+:10880000ffffffffffffffffffffffffffffffff78
+:10881000ffffffffffffffffffffffffffffffff68
+:10882000ffffffffffffffffffffffffffffffff58
+:10883000ffffffffffffffffffffffffffffffff48
+:10884000ffffffffffffffffffffffffffffffff38
+:10885000ffffffffffffffffffffffffffffffff28
+:10886000ffffffffffffffffffffffffffffffff18
+:10887000ffffffffffffffffffffffffffffffff08
+:10888000fffffffffffffffffffffffffffffffff8
+:10889000ffffffffffffffffffffffffffffffffe8
+:1088a000ffffffffffffffffffffffffffffffffd8
+:1088b000ffffffffffffffffffffffffffffffffc8
+:1088c000ffffffffffffffffffffffffffffffffb8
+:1088d000ffffffffffffffffffffffffffffffffa8
+:1088e000ffffffffffffffffffffffffffffffff98
+:1088f000ffffffffffffffffffffffffffffffff88
+:10890000ffffffffffffffffffffffffffffffff77
+:10891000ffffffffffffffffffffffffffffffff67
+:10892000ffffffffffffffffffffffffffffffff57
+:10893000ffffffffffffffffffffffffffffffff47
+:10894000ffffffffffffffffffffffffffffffff37
+:10895000ffffffffffffffffffffffffffffffff27
+:10896000ffffffffffffffffffffffffffffffff17
+:10897000ffffffffffffffffffffffffffffffff07
+:10898000fffffffffffffffffffffffffffffffff7
+:10899000ffffffffffffffffffffffffffffffffe7
+:1089a000ffffffffffffffffffffffffffffffffd7
+:1089b000ffffffffffffffffffffffffffffffffc7
+:1089c000ffffffffffffffffffffffffffffffffb7
+:1089d000ffffffffffffffffffffffffffffffffa7
+:1089e000ffffffffffffffffffffffffffffffff97
+:1089f000ffffffffffffffffffffffffffffffff87
+:108a0000ffffffffffffffffffffffffffffffff76
+:108a1000ffffffffffffffffffffffffffffffff66
+:108a2000ffffffffffffffffffffffffffffffff56
+:108a3000ffffffffffffffffffffffffffffffff46
+:108a4000ffffffffffffffffffffffffffffffff36
+:108a5000ffffffffffffffffffffffffffffffff26
+:108a6000ffffffffffffffffffffffffffffffff16
+:108a7000ffffffffffffffffffffffffffffffff06
+:108a8000fffffffffffffffffffffffffffffffff6
+:108a9000ffffffffffffffffffffffffffffffffe6
+:108aa000ffffffffffffffffffffffffffffffffd6
+:108ab000ffffffffffffffffffffffffffffffffc6
+:108ac000ffffffffffffffffffffffffffffffffb6
+:108ad000ffffffffffffffffffffffffffffffffa6
+:108ae000ffffffffffffffffffffffffffffffff96
+:108af000ffffffffffffffffffffffffffffffff86
+:108b0000ffffffffffffffffffffffffffffffff75
+:108b1000ffffffffffffffffffffffffffffffff65
+:108b2000ffffffffffffffffffffffffffffffff55
+:108b3000ffffffffffffffffffffffffffffffff45
+:108b4000ffffffffffffffffffffffffffffffff35
+:108b5000ffffffffffffffffffffffffffffffff25
+:108b6000ffffffffffffffffffffffffffffffff15
+:108b7000ffffffffffffffffffffffffffffffff05
+:108b8000fffffffffffffffffffffffffffffffff5
+:108b9000ffffffffffffffffffffffffffffffffe5
+:108ba000ffffffffffffffffffffffffffffffffd5
+:108bb000ffffffffffffffffffffffffffffffffc5
+:108bc000ffffffffffffffffffffffffffffffffb5
+:108bd000ffffffffffffffffffffffffffffffffa5
+:108be000ffffffffffffffffffffffffffffffff95
+:108bf000ffffffffffffffffffffffffffffffff85
+:108c0000ffffffffffffffffffffffffffffffff74
+:108c1000ffffffffffffffffffffffffffffffff64
+:108c2000ffffffffffffffffffffffffffffffff54
+:108c3000ffffffffffffffffffffffffffffffff44
+:108c4000ffffffffffffffffffffffffffffffff34
+:108c5000ffffffffffffffffffffffffffffffff24
+:108c6000ffffffffffffffffffffffffffffffff14
+:108c7000ffffffffffffffffffffffffffffffff04
+:108c8000fffffffffffffffffffffffffffffffff4
+:108c9000ffffffffffffffffffffffffffffffffe4
+:108ca000ffffffffffffffffffffffffffffffffd4
+:108cb000ffffffffffffffffffffffffffffffffc4
+:108cc000ffffffffffffffffffffffffffffffffb4
+:108cd000ffffffffffffffffffffffffffffffffa4
+:108ce000ffffffffffffffffffffffffffffffff94
+:108cf000ffffffffffffffffffffffffffffffff84
+:108d0000ffffffffffffffffffffffffffffffff73
+:108d1000ffffffffffffffffffffffffffffffff63
+:108d2000ffffffffffffffffffffffffffffffff53
+:108d3000ffffffffffffffffffffffffffffffff43
+:108d4000ffffffffffffffffffffffffffffffff33
+:108d5000ffffffffffffffffffffffffffffffff23
+:108d6000ffffffffffffffffffffffffffffffff13
+:108d7000ffffffffffffffffffffffffffffffff03
+:108d8000fffffffffffffffffffffffffffffffff3
+:108d9000ffffffffffffffffffffffffffffffffe3
+:108da000ffffffffffffffffffffffffffffffffd3
+:108db000ffffffffffffffffffffffffffffffffc3
+:108dc000ffffffffffffffffffffffffffffffffb3
+:108dd000ffffffffffffffffffffffffffffffffa3
+:108de000ffffffffffffffffffffffffffffffff93
+:108df000ffffffffffffffffffffffffffffffff83
+:108e0000ffffffffffffffffffffffffffffffff72
+:108e1000ffffffffffffffffffffffffffffffff62
+:108e2000ffffffffffffffffffffffffffffffff52
+:108e3000ffffffffffffffffffffffffffffffff42
+:108e4000ffffffffffffffffffffffffffffffff32
+:108e5000ffffffffffffffffffffffffffffffff22
+:108e6000ffffffffffffffffffffffffffffffff12
+:108e7000ffffffffffffffffffffffffffffffff02
+:108e8000fffffffffffffffffffffffffffffffff2
+:108e9000ffffffffffffffffffffffffffffffffe2
+:108ea000ffffffffffffffffffffffffffffffffd2
+:108eb000ffffffffffffffffffffffffffffffffc2
+:108ec000ffffffffffffffffffffffffffffffffb2
+:108ed000ffffffffffffffffffffffffffffffffa2
+:108ee000ffffffffffffffffffffffffffffffff92
+:108ef000ffffffffffffffffffffffffffffffff82
+:108f0000ffffffffffffffffffffffffffffffff71
+:108f1000ffffffffffffffffffffffffffffffff61
+:108f2000ffffffffffffffffffffffffffffffff51
+:108f3000ffffffffffffffffffffffffffffffff41
+:108f4000ffffffffffffffffffffffffffffffff31
+:108f5000ffffffffffffffffffffffffffffffff21
+:108f6000ffffffffffffffffffffffffffffffff11
+:108f7000ffffffffffffffffffffffffffffffff01
+:108f8000fffffffffffffffffffffffffffffffff1
+:108f9000ffffffffffffffffffffffffffffffffe1
+:108fa000ffffffffffffffffffffffffffffffffd1
+:108fb000ffffffffffffffffffffffffffffffffc1
+:108fc000ffffffffffffffffffffffffffffffffb1
+:108fd000ffffffffffffffffffffffffffffffffa1
+:108fe000ffffffffffffffffffffffffffffffff91
+:108ff000ffffffffffffffffffffffffffffffff81
+:10900000ffffffffffffffffffffffffffffffff70
+:10901000ffffffffffffffffffffffffffffffff60
+:10902000ffffffffffffffffffffffffffffffff50
+:10903000ffffffffffffffffffffffffffffffff40
+:10904000ffffffffffffffffffffffffffffffff30
+:10905000ffffffffffffffffffffffffffffffff20
+:10906000ffffffffffffffffffffffffffffffff10
+:10907000ffffffffffffffffffffffffffffffff00
+:10908000fffffffffffffffffffffffffffffffff0
+:10909000ffffffffffffffffffffffffffffffffe0
+:1090a000ffffffffffffffffffffffffffffffffd0
+:1090b000ffffffffffffffffffffffffffffffffc0
+:1090c000ffffffffffffffffffffffffffffffffb0
+:1090d000ffffffffffffffffffffffffffffffffa0
+:1090e000ffffffffffffffffffffffffffffffff90
+:1090f000ffffffffffffffffffffffffffffffff80
+:10910000ffffffffffffffffffffffffffffffff6f
+:10911000ffffffffffffffffffffffffffffffff5f
+:10912000ffffffffffffffffffffffffffffffff4f
+:10913000ffffffffffffffffffffffffffffffff3f
+:10914000ffffffffffffffffffffffffffffffff2f
+:10915000ffffffffffffffffffffffffffffffff1f
+:10916000ffffffffffffffffffffffffffffffff0f
+:10917000ffffffffffffffffffffffffffffffffff
+:10918000ffffffffffffffffffffffffffffffffef
+:10919000ffffffffffffffffffffffffffffffffdf
+:1091a000ffffffffffffffffffffffffffffffffcf
+:1091b000ffffffffffffffffffffffffffffffffbf
+:1091c000ffffffffffffffffffffffffffffffffaf
+:1091d000ffffffffffffffffffffffffffffffff9f
+:1091e000ffffffffffffffffffffffffffffffff8f
+:1091f000ffffffffffffffffffffffffffffffff7f
+:10920000ffffffffffffffffffffffffffffffff6e
+:10921000ffffffffffffffffffffffffffffffff5e
+:10922000ffffffffffffffffffffffffffffffff4e
+:10923000ffffffffffffffffffffffffffffffff3e
+:10924000ffffffffffffffffffffffffffffffff2e
+:10925000ffffffffffffffffffffffffffffffff1e
+:10926000ffffffffffffffffffffffffffffffff0e
+:10927000fffffffffffffffffffffffffffffffffe
+:10928000ffffffffffffffffffffffffffffffffee
+:10929000ffffffffffffffffffffffffffffffffde
+:1092a000ffffffffffffffffffffffffffffffffce
+:1092b000ffffffffffffffffffffffffffffffffbe
+:1092c000ffffffffffffffffffffffffffffffffae
+:1092d000ffffffffffffffffffffffffffffffff9e
+:1092e000ffffffffffffffffffffffffffffffff8e
+:1092f000ffffffffffffffffffffffffffffffff7e
+:10930000ffffffffffffffffffffffffffffffff6d
+:10931000ffffffffffffffffffffffffffffffff5d
+:10932000ffffffffffffffffffffffffffffffff4d
+:10933000ffffffffffffffffffffffffffffffff3d
+:10934000ffffffffffffffffffffffffffffffff2d
+:10935000ffffffffffffffffffffffffffffffff1d
+:10936000ffffffffffffffffffffffffffffffff0d
+:10937000fffffffffffffffffffffffffffffffffd
+:10938000ffffffffffffffffffffffffffffffffed
+:10939000ffffffffffffffffffffffffffffffffdd
+:1093a000ffffffffffffffffffffffffffffffffcd
+:1093b000ffffffffffffffffffffffffffffffffbd
+:1093c000ffffffffffffffffffffffffffffffffad
+:1093d000ffffffffffffffffffffffffffffffff9d
+:1093e000ffffffffffffffffffffffffffffffff8d
+:1093f000ffffffffffffffffffffffffffffffff7d
+:10940000ffffffffffffffffffffffffffffffff6c
+:10941000ffffffffffffffffffffffffffffffff5c
+:10942000ffffffffffffffffffffffffffffffff4c
+:10943000ffffffffffffffffffffffffffffffff3c
+:10944000ffffffffffffffffffffffffffffffff2c
+:10945000ffffffffffffffffffffffffffffffff1c
+:10946000ffffffffffffffffffffffffffffffff0c
+:10947000fffffffffffffffffffffffffffffffffc
+:10948000ffffffffffffffffffffffffffffffffec
+:10949000ffffffffffffffffffffffffffffffffdc
+:1094a000ffffffffffffffffffffffffffffffffcc
+:1094b000ffffffffffffffffffffffffffffffffbc
+:1094c000ffffffffffffffffffffffffffffffffac
+:1094d000ffffffffffffffffffffffffffffffff9c
+:1094e000ffffffffffffffffffffffffffffffff8c
+:1094f000ffffffffffffffffffffffffffffffff7c
+:10950000ffffffffffffffffffffffffffffffff6b
+:10951000ffffffffffffffffffffffffffffffff5b
+:10952000ffffffffffffffffffffffffffffffff4b
+:10953000ffffffffffffffffffffffffffffffff3b
+:10954000ffffffffffffffffffffffffffffffff2b
+:10955000ffffffffffffffffffffffffffffffff1b
+:10956000ffffffffffffffffffffffffffffffff0b
+:10957000fffffffffffffffffffffffffffffffffb
+:10958000ffffffffffffffffffffffffffffffffeb
+:10959000ffffffffffffffffffffffffffffffffdb
+:1095a000ffffffffffffffffffffffffffffffffcb
+:1095b000ffffffffffffffffffffffffffffffffbb
+:1095c000ffffffffffffffffffffffffffffffffab
+:1095d000ffffffffffffffffffffffffffffffff9b
+:1095e000ffffffffffffffffffffffffffffffff8b
+:1095f000ffffffffffffffffffffffffffffffff7b
+:10960000ffffffffffffffffffffffffffffffff6a
+:10961000ffffffffffffffffffffffffffffffff5a
+:10962000ffffffffffffffffffffffffffffffff4a
+:10963000ffffffffffffffffffffffffffffffff3a
+:10964000ffffffffffffffffffffffffffffffff2a
+:10965000ffffffffffffffffffffffffffffffff1a
+:10966000ffffffffffffffffffffffffffffffff0a
+:10967000fffffffffffffffffffffffffffffffffa
+:10968000ffffffffffffffffffffffffffffffffea
+:10969000ffffffffffffffffffffffffffffffffda
+:1096a000ffffffffffffffffffffffffffffffffca
+:1096b000ffffffffffffffffffffffffffffffffba
+:1096c000ffffffffffffffffffffffffffffffffaa
+:1096d000ffffffffffffffffffffffffffffffff9a
+:1096e000ffffffffffffffffffffffffffffffff8a
+:1096f000ffffffffffffffffffffffffffffffff7a
+:10970000ffffffffffffffffffffffffffffffff69
+:10971000ffffffffffffffffffffffffffffffff59
+:10972000ffffffffffffffffffffffffffffffff49
+:10973000ffffffffffffffffffffffffffffffff39
+:10974000ffffffffffffffffffffffffffffffff29
+:10975000ffffffffffffffffffffffffffffffff19
+:10976000ffffffffffffffffffffffffffffffff09
+:10977000fffffffffffffffffffffffffffffffff9
+:10978000ffffffffffffffffffffffffffffffffe9
+:10979000ffffffffffffffffffffffffffffffffd9
+:1097a000ffffffffffffffffffffffffffffffffc9
+:1097b000ffffffffffffffffffffffffffffffffb9
+:1097c000ffffffffffffffffffffffffffffffffa9
+:1097d000ffffffffffffffffffffffffffffffff99
+:1097e000ffffffffffffffffffffffffffffffff89
+:1097f000ffffffffffffffffffffffffffffffff79
+:10980000ffffffffffffffffffffffffffffffff68
+:10981000ffffffffffffffffffffffffffffffff58
+:10982000ffffffffffffffffffffffffffffffff48
+:10983000ffffffffffffffffffffffffffffffff38
+:10984000ffffffffffffffffffffffffffffffff28
+:10985000ffffffffffffffffffffffffffffffff18
+:10986000ffffffffffffffffffffffffffffffff08
+:10987000fffffffffffffffffffffffffffffffff8
+:10988000ffffffffffffffffffffffffffffffffe8
+:10989000ffffffffffffffffffffffffffffffffd8
+:1098a000ffffffffffffffffffffffffffffffffc8
+:1098b000ffffffffffffffffffffffffffffffffb8
+:1098c000ffffffffffffffffffffffffffffffffa8
+:1098d000ffffffffffffffffffffffffffffffff98
+:1098e000ffffffffffffffffffffffffffffffff88
+:1098f000ffffffffffffffffffffffffffffffff78
+:10990000ffffffffffffffffffffffffffffffff67
+:10991000ffffffffffffffffffffffffffffffff57
+:10992000ffffffffffffffffffffffffffffffff47
+:10993000ffffffffffffffffffffffffffffffff37
+:10994000ffffffffffffffffffffffffffffffff27
+:10995000ffffffffffffffffffffffffffffffff17
+:10996000ffffffffffffffffffffffffffffffff07
+:10997000fffffffffffffffffffffffffffffffff7
+:10998000ffffffffffffffffffffffffffffffffe7
+:10999000ffffffffffffffffffffffffffffffffd7
+:1099a000ffffffffffffffffffffffffffffffffc7
+:1099b000ffffffffffffffffffffffffffffffffb7
+:1099c000ffffffffffffffffffffffffffffffffa7
+:1099d000ffffffffffffffffffffffffffffffff97
+:1099e000ffffffffffffffffffffffffffffffff87
+:1099f000ffffffffffffffffffffffffffffffff77
+:109a0000ffffffffffffffffffffffffffffffff66
+:109a1000ffffffffffffffffffffffffffffffff56
+:109a2000ffffffffffffffffffffffffffffffff46
+:109a3000ffffffffffffffffffffffffffffffff36
+:109a4000ffffffffffffffffffffffffffffffff26
+:109a5000ffffffffffffffffffffffffffffffff16
+:109a6000ffffffffffffffffffffffffffffffff06
+:109a7000fffffffffffffffffffffffffffffffff6
+:109a8000ffffffffffffffffffffffffffffffffe6
+:109a9000ffffffffffffffffffffffffffffffffd6
+:109aa000ffffffffffffffffffffffffffffffffc6
+:109ab000ffffffffffffffffffffffffffffffffb6
+:109ac000ffffffffffffffffffffffffffffffffa6
+:109ad000ffffffffffffffffffffffffffffffff96
+:109ae000ffffffffffffffffffffffffffffffff86
+:109af000ffffffffffffffffffffffffffffffff76
+:109b0000ffffffffffffffffffffffffffffffff65
+:109b1000ffffffffffffffffffffffffffffffff55
+:109b2000ffffffffffffffffffffffffffffffff45
+:109b3000ffffffffffffffffffffffffffffffff35
+:109b4000ffffffffffffffffffffffffffffffff25
+:109b5000ffffffffffffffffffffffffffffffff15
+:109b6000ffffffffffffffffffffffffffffffff05
+:109b7000fffffffffffffffffffffffffffffffff5
+:109b8000ffffffffffffffffffffffffffffffffe5
+:109b9000ffffffffffffffffffffffffffffffffd5
+:109ba000ffffffffffffffffffffffffffffffffc5
+:109bb000ffffffffffffffffffffffffffffffffb5
+:109bc000ffffffffffffffffffffffffffffffffa5
+:109bd000ffffffffffffffffffffffffffffffff95
+:109be000ffffffffffffffffffffffffffffffff85
+:109bf000ffffffffffffffffffffffffffffffff75
+:109c0000ffffffffffffffffffffffffffffffff64
+:109c1000ffffffffffffffffffffffffffffffff54
+:109c2000ffffffffffffffffffffffffffffffff44
+:109c3000ffffffffffffffffffffffffffffffff34
+:109c4000ffffffffffffffffffffffffffffffff24
+:109c5000ffffffffffffffffffffffffffffffff14
+:109c6000ffffffffffffffffffffffffffffffff04
+:109c7000fffffffffffffffffffffffffffffffff4
+:109c8000ffffffffffffffffffffffffffffffffe4
+:109c9000ffffffffffffffffffffffffffffffffd4
+:109ca000ffffffffffffffffffffffffffffffffc4
+:109cb000ffffffffffffffffffffffffffffffffb4
+:109cc000ffffffffffffffffffffffffffffffffa4
+:109cd000ffffffffffffffffffffffffffffffff94
+:109ce000ffffffffffffffffffffffffffffffff84
+:109cf000ffffffffffffffffffffffffffffffff74
+:109d0000ffffffffffffffffffffffffffffffff63
+:109d1000ffffffffffffffffffffffffffffffff53
+:109d2000ffffffffffffffffffffffffffffffff43
+:109d3000ffffffffffffffffffffffffffffffff33
+:109d4000ffffffffffffffffffffffffffffffff23
+:109d5000ffffffffffffffffffffffffffffffff13
+:109d6000ffffffffffffffffffffffffffffffff03
+:109d7000fffffffffffffffffffffffffffffffff3
+:109d8000ffffffffffffffffffffffffffffffffe3
+:109d9000ffffffffffffffffffffffffffffffffd3
+:109da000ffffffffffffffffffffffffffffffffc3
+:109db000ffffffffffffffffffffffffffffffffb3
+:109dc000ffffffffffffffffffffffffffffffffa3
+:109dd000ffffffffffffffffffffffffffffffff93
+:109de000ffffffffffffffffffffffffffffffff83
+:109df000ffffffffffffffffffffffffffffffff73
+:109e0000ffffffffffffffffffffffffffffffff62
+:109e1000ffffffffffffffffffffffffffffffff52
+:109e2000ffffffffffffffffffffffffffffffff42
+:109e3000ffffffffffffffffffffffffffffffff32
+:109e4000ffffffffffffffffffffffffffffffff22
+:109e5000ffffffffffffffffffffffffffffffff12
+:109e6000ffffffffffffffffffffffffffffffff02
+:109e7000fffffffffffffffffffffffffffffffff2
+:109e8000ffffffffffffffffffffffffffffffffe2
+:109e9000ffffffffffffffffffffffffffffffffd2
+:109ea000ffffffffffffffffffffffffffffffffc2
+:109eb000ffffffffffffffffffffffffffffffffb2
+:109ec000ffffffffffffffffffffffffffffffffa2
+:109ed000ffffffffffffffffffffffffffffffff92
+:109ee000ffffffffffffffffffffffffffffffff82
+:109ef000ffffffffffffffffffffffffffffffff72
+:109f0000ffffffffffffffffffffffffffffffff61
+:109f1000ffffffffffffffffffffffffffffffff51
+:109f2000ffffffffffffffffffffffffffffffff41
+:109f3000ffffffffffffffffffffffffffffffff31
+:109f4000ffffffffffffffffffffffffffffffff21
+:109f5000ffffffffffffffffffffffffffffffff11
+:109f6000ffffffffffffffffffffffffffffffff01
+:109f7000fffffffffffffffffffffffffffffffff1
+:109f8000ffffffffffffffffffffffffffffffffe1
+:109f9000ffffffffffffffffffffffffffffffffd1
+:109fa000ffffffffffffffffffffffffffffffffc1
+:109fb000ffffffffffffffffffffffffffffffffb1
+:109fc000ffffffffffffffffffffffffffffffffa1
+:109fd000ffffffffffffffffffffffffffffffff91
+:109fe000ffffffffffffffffffffffffffffffff81
+:109ff000ffffffffffffffffffffffffffffffff71
+:10a00000ffffffffffffffffffffffffffffffff60
+:10a01000ffffffffffffffffffffffffffffffff50
+:10a02000ffffffffffffffffffffffffffffffff40
+:10a03000ffffffffffffffffffffffffffffffff30
+:10a04000ffffffffffffffffffffffffffffffff20
+:10a05000ffffffffffffffffffffffffffffffff10
+:10a06000ffffffffffffffffffffffffffffffff00
+:10a07000fffffffffffffffffffffffffffffffff0
+:10a08000ffffffffffffffffffffffffffffffffe0
+:10a09000ffffffffffffffffffffffffffffffffd0
+:10a0a000ffffffffffffffffffffffffffffffffc0
+:10a0b000ffffffffffffffffffffffffffffffffb0
+:10a0c000ffffffffffffffffffffffffffffffffa0
+:10a0d000ffffffffffffffffffffffffffffffff90
+:10a0e000ffffffffffffffffffffffffffffffff80
+:10a0f000ffffffffffffffffffffffffffffffff70
+:10a10000ffffffffffffffffffffffffffffffff5f
+:10a11000ffffffffffffffffffffffffffffffff4f
+:10a12000ffffffffffffffffffffffffffffffff3f
+:10a13000ffffffffffffffffffffffffffffffff2f
+:10a14000ffffffffffffffffffffffffffffffff1f
+:10a15000ffffffffffffffffffffffffffffffff0f
+:10a16000ffffffffffffffffffffffffffffffffff
+:10a17000ffffffffffffffffffffffffffffffffef
+:10a18000ffffffffffffffffffffffffffffffffdf
+:10a19000ffffffffffffffffffffffffffffffffcf
+:10a1a000ffffffffffffffffffffffffffffffffbf
+:10a1b000ffffffffffffffffffffffffffffffffaf
+:10a1c000ffffffffffffffffffffffffffffffff9f
+:10a1d000ffffffffffffffffffffffffffffffff8f
+:10a1e000ffffffffffffffffffffffffffffffff7f
+:10a1f000ffffffffffffffffffffffffffffffff6f
+:10a20000ffffffffffffffffffffffffffffffff5e
+:10a21000ffffffffffffffffffffffffffffffff4e
+:10a22000ffffffffffffffffffffffffffffffff3e
+:10a23000ffffffffffffffffffffffffffffffff2e
+:10a24000ffffffffffffffffffffffffffffffff1e
+:10a25000ffffffffffffffffffffffffffffffff0e
+:10a26000fffffffffffffffffffffffffffffffffe
+:10a27000ffffffffffffffffffffffffffffffffee
+:10a28000ffffffffffffffffffffffffffffffffde
+:10a29000ffffffffffffffffffffffffffffffffce
+:10a2a000ffffffffffffffffffffffffffffffffbe
+:10a2b000ffffffffffffffffffffffffffffffffae
+:10a2c000ffffffffffffffffffffffffffffffff9e
+:10a2d000ffffffffffffffffffffffffffffffff8e
+:10a2e000ffffffffffffffffffffffffffffffff7e
+:10a2f000ffffffffffffffffffffffffffffffff6e
+:10a30000ffffffffffffffffffffffffffffffff5d
+:10a31000ffffffffffffffffffffffffffffffff4d
+:10a32000ffffffffffffffffffffffffffffffff3d
+:10a33000ffffffffffffffffffffffffffffffff2d
+:10a34000ffffffffffffffffffffffffffffffff1d
+:10a35000ffffffffffffffffffffffffffffffff0d
+:10a36000fffffffffffffffffffffffffffffffffd
+:10a37000ffffffffffffffffffffffffffffffffed
+:10a38000ffffffffffffffffffffffffffffffffdd
+:10a39000ffffffffffffffffffffffffffffffffcd
+:10a3a000ffffffffffffffffffffffffffffffffbd
+:10a3b000ffffffffffffffffffffffffffffffffad
+:10a3c000ffffffffffffffffffffffffffffffff9d
+:10a3d000ffffffffffffffffffffffffffffffff8d
+:10a3e000ffffffffffffffffffffffffffffffff7d
+:10a3f000ffffffffffffffffffffffffffffffff6d
+:10a40000ffffffffffffffffffffffffffffffff5c
+:10a41000ffffffffffffffffffffffffffffffff4c
+:10a42000ffffffffffffffffffffffffffffffff3c
+:10a43000ffffffffffffffffffffffffffffffff2c
+:10a44000ffffffffffffffffffffffffffffffff1c
+:10a45000ffffffffffffffffffffffffffffffff0c
+:10a46000fffffffffffffffffffffffffffffffffc
+:10a47000ffffffffffffffffffffffffffffffffec
+:10a48000ffffffffffffffffffffffffffffffffdc
+:10a49000ffffffffffffffffffffffffffffffffcc
+:10a4a000ffffffffffffffffffffffffffffffffbc
+:10a4b000ffffffffffffffffffffffffffffffffac
+:10a4c000ffffffffffffffffffffffffffffffff9c
+:10a4d000ffffffffffffffffffffffffffffffff8c
+:10a4e000ffffffffffffffffffffffffffffffff7c
+:10a4f000ffffffffffffffffffffffffffffffff6c
+:10a50000ffffffffffffffffffffffffffffffff5b
+:10a51000ffffffffffffffffffffffffffffffff4b
+:10a52000ffffffffffffffffffffffffffffffff3b
+:10a53000ffffffffffffffffffffffffffffffff2b
+:10a54000ffffffffffffffffffffffffffffffff1b
+:10a55000ffffffffffffffffffffffffffffffff0b
+:10a56000fffffffffffffffffffffffffffffffffb
+:10a57000ffffffffffffffffffffffffffffffffeb
+:10a58000ffffffffffffffffffffffffffffffffdb
+:10a59000ffffffffffffffffffffffffffffffffcb
+:10a5a000ffffffffffffffffffffffffffffffffbb
+:10a5b000ffffffffffffffffffffffffffffffffab
+:10a5c000ffffffffffffffffffffffffffffffff9b
+:10a5d000ffffffffffffffffffffffffffffffff8b
+:10a5e000ffffffffffffffffffffffffffffffff7b
+:10a5f000ffffffffffffffffffffffffffffffff6b
+:10a60000ffffffffffffffffffffffffffffffff5a
+:10a61000ffffffffffffffffffffffffffffffff4a
+:10a62000ffffffffffffffffffffffffffffffff3a
+:10a63000ffffffffffffffffffffffffffffffff2a
+:10a64000ffffffffffffffffffffffffffffffff1a
+:10a65000ffffffffffffffffffffffffffffffff0a
+:10a66000fffffffffffffffffffffffffffffffffa
+:10a67000ffffffffffffffffffffffffffffffffea
+:10a68000ffffffffffffffffffffffffffffffffda
+:10a69000ffffffffffffffffffffffffffffffffca
+:10a6a000ffffffffffffffffffffffffffffffffba
+:10a6b000ffffffffffffffffffffffffffffffffaa
+:10a6c000ffffffffffffffffffffffffffffffff9a
+:10a6d000ffffffffffffffffffffffffffffffff8a
+:10a6e000ffffffffffffffffffffffffffffffff7a
+:10a6f000ffffffffffffffffffffffffffffffff6a
+:10a70000ffffffffffffffffffffffffffffffff59
+:10a71000ffffffffffffffffffffffffffffffff49
+:10a72000ffffffffffffffffffffffffffffffff39
+:10a73000ffffffffffffffffffffffffffffffff29
+:10a74000ffffffffffffffffffffffffffffffff19
+:10a75000ffffffffffffffffffffffffffffffff09
+:10a76000fffffffffffffffffffffffffffffffff9
+:10a77000ffffffffffffffffffffffffffffffffe9
+:10a78000ffffffffffffffffffffffffffffffffd9
+:10a79000ffffffffffffffffffffffffffffffffc9
+:10a7a000ffffffffffffffffffffffffffffffffb9
+:10a7b000ffffffffffffffffffffffffffffffffa9
+:10a7c000ffffffffffffffffffffffffffffffff99
+:10a7d000ffffffffffffffffffffffffffffffff89
+:10a7e000ffffffffffffffffffffffffffffffff79
+:10a7f000ffffffffffffffffffffffffffffffff69
+:10a80000ffffffffffffffffffffffffffffffff58
+:10a81000ffffffffffffffffffffffffffffffff48
+:10a82000ffffffffffffffffffffffffffffffff38
+:10a83000ffffffffffffffffffffffffffffffff28
+:10a84000ffffffffffffffffffffffffffffffff18
+:10a85000ffffffffffffffffffffffffffffffff08
+:10a86000fffffffffffffffffffffffffffffffff8
+:10a87000ffffffffffffffffffffffffffffffffe8
+:10a88000ffffffffffffffffffffffffffffffffd8
+:10a89000ffffffffffffffffffffffffffffffffc8
+:10a8a000ffffffffffffffffffffffffffffffffb8
+:10a8b000ffffffffffffffffffffffffffffffffa8
+:10a8c000ffffffffffffffffffffffffffffffff98
+:10a8d000ffffffffffffffffffffffffffffffff88
+:10a8e000ffffffffffffffffffffffffffffffff78
+:10a8f000ffffffffffffffffffffffffffffffff68
+:10a90000ffffffffffffffffffffffffffffffff57
+:10a91000ffffffffffffffffffffffffffffffff47
+:10a92000ffffffffffffffffffffffffffffffff37
+:10a93000ffffffffffffffffffffffffffffffff27
+:10a94000ffffffffffffffffffffffffffffffff17
+:10a95000ffffffffffffffffffffffffffffffff07
+:10a96000fffffffffffffffffffffffffffffffff7
+:10a97000ffffffffffffffffffffffffffffffffe7
+:10a98000ffffffffffffffffffffffffffffffffd7
+:10a99000ffffffffffffffffffffffffffffffffc7
+:10a9a000ffffffffffffffffffffffffffffffffb7
+:10a9b000ffffffffffffffffffffffffffffffffa7
+:10a9c000ffffffffffffffffffffffffffffffff97
+:10a9d000ffffffffffffffffffffffffffffffff87
+:10a9e000ffffffffffffffffffffffffffffffff77
+:10a9f000ffffffffffffffffffffffffffffffff67
+:10aa0000ffffffffffffffffffffffffffffffff56
+:10aa1000ffffffffffffffffffffffffffffffff46
+:10aa2000ffffffffffffffffffffffffffffffff36
+:10aa3000ffffffffffffffffffffffffffffffff26
+:10aa4000ffffffffffffffffffffffffffffffff16
+:10aa5000ffffffffffffffffffffffffffffffff06
+:10aa6000fffffffffffffffffffffffffffffffff6
+:10aa7000ffffffffffffffffffffffffffffffffe6
+:10aa8000ffffffffffffffffffffffffffffffffd6
+:10aa9000ffffffffffffffffffffffffffffffffc6
+:10aaa000ffffffffffffffffffffffffffffffffb6
+:10aab000ffffffffffffffffffffffffffffffffa6
+:10aac000ffffffffffffffffffffffffffffffff96
+:10aad000ffffffffffffffffffffffffffffffff86
+:10aae000ffffffffffffffffffffffffffffffff76
+:10aaf000ffffffffffffffffffffffffffffffff66
+:10ab0000ffffffffffffffffffffffffffffffff55
+:10ab1000ffffffffffffffffffffffffffffffff45
+:10ab2000ffffffffffffffffffffffffffffffff35
+:10ab3000ffffffffffffffffffffffffffffffff25
+:10ab4000ffffffffffffffffffffffffffffffff15
+:10ab5000ffffffffffffffffffffffffffffffff05
+:10ab6000fffffffffffffffffffffffffffffffff5
+:10ab7000ffffffffffffffffffffffffffffffffe5
+:10ab8000ffffffffffffffffffffffffffffffffd5
+:10ab9000ffffffffffffffffffffffffffffffffc5
+:10aba000ffffffffffffffffffffffffffffffffb5
+:10abb000ffffffffffffffffffffffffffffffffa5
+:10abc000ffffffffffffffffffffffffffffffff95
+:10abd000ffffffffffffffffffffffffffffffff85
+:10abe000ffffffffffffffffffffffffffffffff75
+:10abf000ffffffffffffffffffffffffffffffff65
+:10ac0000ffffffffffffffffffffffffffffffff54
+:10ac1000ffffffffffffffffffffffffffffffff44
+:10ac2000ffffffffffffffffffffffffffffffff34
+:10ac3000ffffffffffffffffffffffffffffffff24
+:10ac4000ffffffffffffffffffffffffffffffff14
+:10ac5000ffffffffffffffffffffffffffffffff04
+:10ac6000fffffffffffffffffffffffffffffffff4
+:10ac7000ffffffffffffffffffffffffffffffffe4
+:10ac8000ffffffffffffffffffffffffffffffffd4
+:10ac9000ffffffffffffffffffffffffffffffffc4
+:10aca000ffffffffffffffffffffffffffffffffb4
+:10acb000ffffffffffffffffffffffffffffffffa4
+:10acc000ffffffffffffffffffffffffffffffff94
+:10acd000ffffffffffffffffffffffffffffffff84
+:10ace000ffffffffffffffffffffffffffffffff74
+:10acf000ffffffffffffffffffffffffffffffff64
+:10ad0000ffffffffffffffffffffffffffffffff53
+:10ad1000ffffffffffffffffffffffffffffffff43
+:10ad2000ffffffffffffffffffffffffffffffff33
+:10ad3000ffffffffffffffffffffffffffffffff23
+:10ad4000ffffffffffffffffffffffffffffffff13
+:10ad5000ffffffffffffffffffffffffffffffff03
+:10ad6000fffffffffffffffffffffffffffffffff3
+:10ad7000ffffffffffffffffffffffffffffffffe3
+:10ad8000ffffffffffffffffffffffffffffffffd3
+:10ad9000ffffffffffffffffffffffffffffffffc3
+:10ada000ffffffffffffffffffffffffffffffffb3
+:10adb000ffffffffffffffffffffffffffffffffa3
+:10adc000ffffffffffffffffffffffffffffffff93
+:10add000ffffffffffffffffffffffffffffffff83
+:10ade000ffffffffffffffffffffffffffffffff73
+:10adf000ffffffffffffffffffffffffffffffff63
+:10ae0000ffffffffffffffffffffffffffffffff52
+:10ae1000ffffffffffffffffffffffffffffffff42
+:10ae2000ffffffffffffffffffffffffffffffff32
+:10ae3000ffffffffffffffffffffffffffffffff22
+:10ae4000ffffffffffffffffffffffffffffffff12
+:10ae5000ffffffffffffffffffffffffffffffff02
+:10ae6000fffffffffffffffffffffffffffffffff2
+:10ae7000ffffffffffffffffffffffffffffffffe2
+:10ae8000ffffffffffffffffffffffffffffffffd2
+:10ae9000ffffffffffffffffffffffffffffffffc2
+:10aea000ffffffffffffffffffffffffffffffffb2
+:10aeb000ffffffffffffffffffffffffffffffffa2
+:10aec000ffffffffffffffffffffffffffffffff92
+:10aed000ffffffffffffffffffffffffffffffff82
+:10aee000ffffffffffffffffffffffffffffffff72
+:10aef000ffffffffffffffffffffffffffffffff62
+:10af0000ffffffffffffffffffffffffffffffff51
+:10af1000ffffffffffffffffffffffffffffffff41
+:10af2000ffffffffffffffffffffffffffffffff31
+:10af3000ffffffffffffffffffffffffffffffff21
+:10af4000ffffffffffffffffffffffffffffffff11
+:10af5000ffffffffffffffffffffffffffffffff01
+:10af6000fffffffffffffffffffffffffffffffff1
+:10af7000ffffffffffffffffffffffffffffffffe1
+:10af8000ffffffffffffffffffffffffffffffffd1
+:10af9000ffffffffffffffffffffffffffffffffc1
+:10afa000ffffffffffffffffffffffffffffffffb1
+:10afb000ffffffffffffffffffffffffffffffffa1
+:10afc000ffffffffffffffffffffffffffffffff91
+:10afd000ffffffffffffffffffffffffffffffff81
+:10afe000ffffffffffffffffffffffffffffffff71
+:10aff000ffffffffffffffffffffffffffffffff61
+:10b00000ffffffffffffffffffffffffffffffff50
+:10b01000ffffffffffffffffffffffffffffffff40
+:10b02000ffffffffffffffffffffffffffffffff30
+:10b03000ffffffffffffffffffffffffffffffff20
+:10b04000ffffffffffffffffffffffffffffffff10
+:10b05000ffffffffffffffffffffffffffffffff00
+:10b06000fffffffffffffffffffffffffffffffff0
+:10b07000ffffffffffffffffffffffffffffffffe0
+:10b08000ffffffffffffffffffffffffffffffffd0
+:10b09000ffffffffffffffffffffffffffffffffc0
+:10b0a000ffffffffffffffffffffffffffffffffb0
+:10b0b000ffffffffffffffffffffffffffffffffa0
+:10b0c000ffffffffffffffffffffffffffffffff90
+:10b0d000ffffffffffffffffffffffffffffffff80
+:10b0e000ffffffffffffffffffffffffffffffff70
+:10b0f000ffffffffffffffffffffffffffffffff60
+:10b10000ffffffffffffffffffffffffffffffff4f
+:10b11000ffffffffffffffffffffffffffffffff3f
+:10b12000ffffffffffffffffffffffffffffffff2f
+:10b13000ffffffffffffffffffffffffffffffff1f
+:10b14000ffffffffffffffffffffffffffffffff0f
+:10b15000ffffffffffffffffffffffffffffffffff
+:10b16000ffffffffffffffffffffffffffffffffef
+:10b17000ffffffffffffffffffffffffffffffffdf
+:10b18000ffffffffffffffffffffffffffffffffcf
+:10b19000ffffffffffffffffffffffffffffffffbf
+:10b1a000ffffffffffffffffffffffffffffffffaf
+:10b1b000ffffffffffffffffffffffffffffffff9f
+:10b1c000ffffffffffffffffffffffffffffffff8f
+:10b1d000ffffffffffffffffffffffffffffffff7f
+:10b1e000ffffffffffffffffffffffffffffffff6f
+:10b1f000ffffffffffffffffffffffffffffffff5f
+:10b20000ffffffffffffffffffffffffffffffff4e
+:10b21000ffffffffffffffffffffffffffffffff3e
+:10b22000ffffffffffffffffffffffffffffffff2e
+:10b23000ffffffffffffffffffffffffffffffff1e
+:10b24000ffffffffffffffffffffffffffffffff0e
+:10b25000fffffffffffffffffffffffffffffffffe
+:10b26000ffffffffffffffffffffffffffffffffee
+:10b27000ffffffffffffffffffffffffffffffffde
+:10b28000ffffffffffffffffffffffffffffffffce
+:10b29000ffffffffffffffffffffffffffffffffbe
+:10b2a000ffffffffffffffffffffffffffffffffae
+:10b2b000ffffffffffffffffffffffffffffffff9e
+:10b2c000ffffffffffffffffffffffffffffffff8e
+:10b2d000ffffffffffffffffffffffffffffffff7e
+:10b2e000ffffffffffffffffffffffffffffffff6e
+:10b2f000ffffffffffffffffffffffffffffffff5e
+:10b30000ffffffffffffffffffffffffffffffff4d
+:10b31000ffffffffffffffffffffffffffffffff3d
+:10b32000ffffffffffffffffffffffffffffffff2d
+:10b33000ffffffffffffffffffffffffffffffff1d
+:10b34000ffffffffffffffffffffffffffffffff0d
+:10b35000fffffffffffffffffffffffffffffffffd
+:10b36000ffffffffffffffffffffffffffffffffed
+:10b37000ffffffffffffffffffffffffffffffffdd
+:10b38000ffffffffffffffffffffffffffffffffcd
+:10b39000ffffffffffffffffffffffffffffffffbd
+:10b3a000ffffffffffffffffffffffffffffffffad
+:10b3b000ffffffffffffffffffffffffffffffff9d
+:10b3c000ffffffffffffffffffffffffffffffff8d
+:10b3d000ffffffffffffffffffffffffffffffff7d
+:10b3e000ffffffffffffffffffffffffffffffff6d
+:10b3f000ffffffffffffffffffffffffffffffff5d
+:10b40000ffffffffffffffffffffffffffffffff4c
+:10b41000ffffffffffffffffffffffffffffffff3c
+:10b42000ffffffffffffffffffffffffffffffff2c
+:10b43000ffffffffffffffffffffffffffffffff1c
+:10b44000ffffffffffffffffffffffffffffffff0c
+:10b45000fffffffffffffffffffffffffffffffffc
+:10b46000ffffffffffffffffffffffffffffffffec
+:10b47000ffffffffffffffffffffffffffffffffdc
+:10b48000ffffffffffffffffffffffffffffffffcc
+:10b49000ffffffffffffffffffffffffffffffffbc
+:10b4a000ffffffffffffffffffffffffffffffffac
+:10b4b000ffffffffffffffffffffffffffffffff9c
+:10b4c000ffffffffffffffffffffffffffffffff8c
+:10b4d000ffffffffffffffffffffffffffffffff7c
+:10b4e000ffffffffffffffffffffffffffffffff6c
+:10b4f000ffffffffffffffffffffffffffffffff5c
+:10b50000ffffffffffffffffffffffffffffffff4b
+:10b51000ffffffffffffffffffffffffffffffff3b
+:10b52000ffffffffffffffffffffffffffffffff2b
+:10b53000ffffffffffffffffffffffffffffffff1b
+:10b54000ffffffffffffffffffffffffffffffff0b
+:10b55000fffffffffffffffffffffffffffffffffb
+:10b56000ffffffffffffffffffffffffffffffffeb
+:10b57000ffffffffffffffffffffffffffffffffdb
+:10b58000ffffffffffffffffffffffffffffffffcb
+:10b59000ffffffffffffffffffffffffffffffffbb
+:10b5a000ffffffffffffffffffffffffffffffffab
+:10b5b000ffffffffffffffffffffffffffffffff9b
+:10b5c000ffffffffffffffffffffffffffffffff8b
+:10b5d000ffffffffffffffffffffffffffffffff7b
+:10b5e000ffffffffffffffffffffffffffffffff6b
+:10b5f000ffffffffffffffffffffffffffffffff5b
+:10b60000ffffffffffffffffffffffffffffffff4a
+:10b61000ffffffffffffffffffffffffffffffff3a
+:10b62000ffffffffffffffffffffffffffffffff2a
+:10b63000ffffffffffffffffffffffffffffffff1a
+:10b64000ffffffffffffffffffffffffffffffff0a
+:10b65000fffffffffffffffffffffffffffffffffa
+:10b66000ffffffffffffffffffffffffffffffffea
+:10b67000ffffffffffffffffffffffffffffffffda
+:10b68000ffffffffffffffffffffffffffffffffca
+:10b69000ffffffffffffffffffffffffffffffffba
+:10b6a000ffffffffffffffffffffffffffffffffaa
+:10b6b000ffffffffffffffffffffffffffffffff9a
+:10b6c000ffffffffffffffffffffffffffffffff8a
+:10b6d000ffffffffffffffffffffffffffffffff7a
+:10b6e000ffffffffffffffffffffffffffffffff6a
+:10b6f000ffffffffffffffffffffffffffffffff5a
+:10b70000ffffffffffffffffffffffffffffffff49
+:10b71000ffffffffffffffffffffffffffffffff39
+:10b72000ffffffffffffffffffffffffffffffff29
+:10b73000ffffffffffffffffffffffffffffffff19
+:10b74000ffffffffffffffffffffffffffffffff09
+:10b75000fffffffffffffffffffffffffffffffff9
+:10b76000ffffffffffffffffffffffffffffffffe9
+:10b77000ffffffffffffffffffffffffffffffffd9
+:10b78000ffffffffffffffffffffffffffffffffc9
+:10b79000ffffffffffffffffffffffffffffffffb9
+:10b7a000ffffffffffffffffffffffffffffffffa9
+:10b7b000ffffffffffffffffffffffffffffffff99
+:10b7c000ffffffffffffffffffffffffffffffff89
+:10b7d000ffffffffffffffffffffffffffffffff79
+:10b7e000ffffffffffffffffffffffffffffffff69
+:10b7f000ffffffffffffffffffffffffffffffff59
+:10b80000ffffffffffffffffffffffffffffffff48
+:10b81000ffffffffffffffffffffffffffffffff38
+:10b82000ffffffffffffffffffffffffffffffff28
+:10b83000ffffffffffffffffffffffffffffffff18
+:10b84000ffffffffffffffffffffffffffffffff08
+:10b85000fffffffffffffffffffffffffffffffff8
+:10b86000ffffffffffffffffffffffffffffffffe8
+:10b87000ffffffffffffffffffffffffffffffffd8
+:10b88000ffffffffffffffffffffffffffffffffc8
+:10b89000ffffffffffffffffffffffffffffffffb8
+:10b8a000ffffffffffffffffffffffffffffffffa8
+:10b8b000ffffffffffffffffffffffffffffffff98
+:10b8c000ffffffffffffffffffffffffffffffff88
+:10b8d000ffffffffffffffffffffffffffffffff78
+:10b8e000ffffffffffffffffffffffffffffffff68
+:10b8f000ffffffffffffffffffffffffffffffff58
+:10b90000ffffffffffffffffffffffffffffffff47
+:10b91000ffffffffffffffffffffffffffffffff37
+:10b92000ffffffffffffffffffffffffffffffff27
+:10b93000ffffffffffffffffffffffffffffffff17
+:10b94000ffffffffffffffffffffffffffffffff07
+:10b95000fffffffffffffffffffffffffffffffff7
+:10b96000ffffffffffffffffffffffffffffffffe7
+:10b97000ffffffffffffffffffffffffffffffffd7
+:10b98000ffffffffffffffffffffffffffffffffc7
+:10b99000ffffffffffffffffffffffffffffffffb7
+:10b9a000ffffffffffffffffffffffffffffffffa7
+:10b9b000ffffffffffffffffffffffffffffffff97
+:10b9c000ffffffffffffffffffffffffffffffff87
+:10b9d000ffffffffffffffffffffffffffffffff77
+:10b9e000ffffffffffffffffffffffffffffffff67
+:10b9f000ffffffffffffffffffffffffffffffff57
+:10ba0000ffffffffffffffffffffffffffffffff46
+:10ba1000ffffffffffffffffffffffffffffffff36
+:10ba2000ffffffffffffffffffffffffffffffff26
+:10ba3000ffffffffffffffffffffffffffffffff16
+:10ba4000ffffffffffffffffffffffffffffffff06
+:10ba5000fffffffffffffffffffffffffffffffff6
+:10ba6000ffffffffffffffffffffffffffffffffe6
+:10ba7000ffffffffffffffffffffffffffffffffd6
+:10ba8000ffffffffffffffffffffffffffffffffc6
+:10ba9000ffffffffffffffffffffffffffffffffb6
+:10baa000ffffffffffffffffffffffffffffffffa6
+:10bab000ffffffffffffffffffffffffffffffff96
+:10bac000ffffffffffffffffffffffffffffffff86
+:10bad000ffffffffffffffffffffffffffffffff76
+:10bae000ffffffffffffffffffffffffffffffff66
+:10baf000ffffffffffffffffffffffffffffffff56
+:10bb0000ffffffffffffffffffffffffffffffff45
+:10bb1000ffffffffffffffffffffffffffffffff35
+:10bb2000ffffffffffffffffffffffffffffffff25
+:10bb3000ffffffffffffffffffffffffffffffff15
+:10bb4000ffffffffffffffffffffffffffffffff05
+:10bb5000fffffffffffffffffffffffffffffffff5
+:10bb6000ffffffffffffffffffffffffffffffffe5
+:10bb7000ffffffffffffffffffffffffffffffffd5
+:10bb8000ffffffffffffffffffffffffffffffffc5
+:10bb9000ffffffffffffffffffffffffffffffffb5
+:10bba000ffffffffffffffffffffffffffffffffa5
+:10bbb000ffffffffffffffffffffffffffffffff95
+:10bbc000ffffffffffffffffffffffffffffffff85
+:10bbd000ffffffffffffffffffffffffffffffff75
+:10bbe000ffffffffffffffffffffffffffffffff65
+:10bbf000ffffffffffffffffffffffffffffffff55
+:10bc0000ffffffffffffffffffffffffffffffff44
+:10bc1000ffffffffffffffffffffffffffffffff34
+:10bc2000ffffffffffffffffffffffffffffffff24
+:10bc3000ffffffffffffffffffffffffffffffff14
+:10bc4000ffffffffffffffffffffffffffffffff04
+:10bc5000fffffffffffffffffffffffffffffffff4
+:10bc6000ffffffffffffffffffffffffffffffffe4
+:10bc7000ffffffffffffffffffffffffffffffffd4
+:10bc8000ffffffffffffffffffffffffffffffffc4
+:10bc9000ffffffffffffffffffffffffffffffffb4
+:10bca000ffffffffffffffffffffffffffffffffa4
+:10bcb000ffffffffffffffffffffffffffffffff94
+:10bcc000ffffffffffffffffffffffffffffffff84
+:10bcd000ffffffffffffffffffffffffffffffff74
+:10bce000ffffffffffffffffffffffffffffffff64
+:10bcf000ffffffffffffffffffffffffffffffff54
+:10bd0000ffffffffffffffffffffffffffffffff43
+:10bd1000ffffffffffffffffffffffffffffffff33
+:10bd2000ffffffffffffffffffffffffffffffff23
+:10bd3000ffffffffffffffffffffffffffffffff13
+:10bd4000ffffffffffffffffffffffffffffffff03
+:10bd5000fffffffffffffffffffffffffffffffff3
+:10bd6000ffffffffffffffffffffffffffffffffe3
+:10bd7000ffffffffffffffffffffffffffffffffd3
+:10bd8000ffffffffffffffffffffffffffffffffc3
+:10bd9000ffffffffffffffffffffffffffffffffb3
+:10bda000ffffffffffffffffffffffffffffffffa3
+:10bdb000ffffffffffffffffffffffffffffffff93
+:10bdc000ffffffffffffffffffffffffffffffff83
+:10bdd000ffffffffffffffffffffffffffffffff73
+:10bde000ffffffffffffffffffffffffffffffff63
+:10bdf000ffffffffffffffffffffffffffffffff53
+:10be0000ffffffffffffffffffffffffffffffff42
+:10be1000ffffffffffffffffffffffffffffffff32
+:10be2000ffffffffffffffffffffffffffffffff22
+:10be3000ffffffffffffffffffffffffffffffff12
+:10be4000ffffffffffffffffffffffffffffffff02
+:10be5000fffffffffffffffffffffffffffffffff2
+:10be6000ffffffffffffffffffffffffffffffffe2
+:10be7000ffffffffffffffffffffffffffffffffd2
+:10be8000ffffffffffffffffffffffffffffffffc2
+:10be9000ffffffffffffffffffffffffffffffffb2
+:10bea000ffffffffffffffffffffffffffffffffa2
+:10beb000ffffffffffffffffffffffffffffffff92
+:10bec000ffffffffffffffffffffffffffffffff82
+:10bed000ffffffffffffffffffffffffffffffff72
+:10bee000ffffffffffffffffffffffffffffffff62
+:10bef000ffffffffffffffffffffffffffffffff52
+:10bf0000ffffffffffffffffffffffffffffffff41
+:10bf1000ffffffffffffffffffffffffffffffff31
+:10bf2000ffffffffffffffffffffffffffffffff21
+:10bf3000ffffffffffffffffffffffffffffffff11
+:10bf4000ffffffffffffffffffffffffffffffff01
+:10bf5000fffffffffffffffffffffffffffffffff1
+:10bf6000ffffffffffffffffffffffffffffffffe1
+:10bf7000ffffffffffffffffffffffffffffffffd1
+:10bf8000ffffffffffffffffffffffffffffffffc1
+:10bf9000ffffffffffffffffffffffffffffffffb1
+:10bfa000ffffffffffffffffffffffffffffffffa1
+:10bfb000ffffffffffffffffffffffffffffffff91
+:10bfc000ffffffffffffffffffffffffffffffff81
+:10bfd000ffffffffffffffffffffffffffffffff71
+:10bfe000ffffffffffffffffffffffffffffffff61
+:10bff000ffffffffffffffffffffffffffffffff51
+:10c00000ffffffffffffffffffffffffffffffff40
+:10c01000ffffffffffffffffffffffffffffffff30
+:10c02000ffffffffffffffffffffffffffffffff20
+:10c03000ffffffffffffffffffffffffffffffff10
+:10c04000ffffffffffffffffffffffffffffffff00
+:10c05000fffffffffffffffffffffffffffffffff0
+:10c06000ffffffffffffffffffffffffffffffffe0
+:10c07000ffffffffffffffffffffffffffffffffd0
+:10c08000ffffffffffffffffffffffffffffffffc0
+:10c09000ffffffffffffffffffffffffffffffffb0
+:10c0a000ffffffffffffffffffffffffffffffffa0
+:10c0b000ffffffffffffffffffffffffffffffff90
+:10c0c000ffffffffffffffffffffffffffffffff80
+:10c0d000ffffffffffffffffffffffffffffffff70
+:10c0e000ffffffffffffffffffffffffffffffff60
+:10c0f000ffffffffffffffffffffffffffffffff50
+:10c10000ffffffffffffffffffffffffffffffff3f
+:10c11000ffffffffffffffffffffffffffffffff2f
+:10c12000ffffffffffffffffffffffffffffffff1f
+:10c13000ffffffffffffffffffffffffffffffff0f
+:10c14000ffffffffffffffffffffffffffffffffff
+:10c15000ffffffffffffffffffffffffffffffffef
+:10c16000ffffffffffffffffffffffffffffffffdf
+:10c17000ffffffffffffffffffffffffffffffffcf
+:10c18000ffffffffffffffffffffffffffffffffbf
+:10c19000ffffffffffffffffffffffffffffffffaf
+:10c1a000ffffffffffffffffffffffffffffffff9f
+:10c1b000ffffffffffffffffffffffffffffffff8f
+:10c1c000ffffffffffffffffffffffffffffffff7f
+:10c1d000ffffffffffffffffffffffffffffffff6f
+:10c1e000ffffffffffffffffffffffffffffffff5f
+:10c1f000ffffffffffffffffffffffffffffffff4f
+:10c20000ffffffffffffffffffffffffffffffff3e
+:10c21000ffffffffffffffffffffffffffffffff2e
+:10c22000ffffffffffffffffffffffffffffffff1e
+:10c23000ffffffffffffffffffffffffffffffff0e
+:10c24000fffffffffffffffffffffffffffffffffe
+:10c25000ffffffffffffffffffffffffffffffffee
+:10c26000ffffffffffffffffffffffffffffffffde
+:10c27000ffffffffffffffffffffffffffffffffce
+:10c28000ffffffffffffffffffffffffffffffffbe
+:10c29000ffffffffffffffffffffffffffffffffae
+:10c2a000ffffffffffffffffffffffffffffffff9e
+:10c2b000ffffffffffffffffffffffffffffffff8e
+:10c2c000ffffffffffffffffffffffffffffffff7e
+:10c2d000ffffffffffffffffffffffffffffffff6e
+:10c2e000ffffffffffffffffffffffffffffffff5e
+:10c2f000ffffffffffffffffffffffffffffffff4e
+:10c30000ffffffffffffffffffffffffffffffff3d
+:10c31000ffffffffffffffffffffffffffffffff2d
+:10c32000ffffffffffffffffffffffffffffffff1d
+:10c33000ffffffffffffffffffffffffffffffff0d
+:10c34000fffffffffffffffffffffffffffffffffd
+:10c35000ffffffffffffffffffffffffffffffffed
+:10c36000ffffffffffffffffffffffffffffffffdd
+:10c37000ffffffffffffffffffffffffffffffffcd
+:10c38000ffffffffffffffffffffffffffffffffbd
+:10c39000ffffffffffffffffffffffffffffffffad
+:10c3a000ffffffffffffffffffffffffffffffff9d
+:10c3b000ffffffffffffffffffffffffffffffff8d
+:10c3c000ffffffffffffffffffffffffffffffff7d
+:10c3d000ffffffffffffffffffffffffffffffff6d
+:10c3e000ffffffffffffffffffffffffffffffff5d
+:10c3f000ffffffffffffffffffffffffffffffff4d
+:10c40000ffffffffffffffffffffffffffffffff3c
+:10c41000ffffffffffffffffffffffffffffffff2c
+:10c42000ffffffffffffffffffffffffffffffff1c
+:10c43000ffffffffffffffffffffffffffffffff0c
+:10c44000fffffffffffffffffffffffffffffffffc
+:10c45000ffffffffffffffffffffffffffffffffec
+:10c46000ffffffffffffffffffffffffffffffffdc
+:10c47000ffffffffffffffffffffffffffffffffcc
+:10c48000ffffffffffffffffffffffffffffffffbc
+:10c49000ffffffffffffffffffffffffffffffffac
+:10c4a000ffffffffffffffffffffffffffffffff9c
+:10c4b000ffffffffffffffffffffffffffffffff8c
+:10c4c000ffffffffffffffffffffffffffffffff7c
+:10c4d000ffffffffffffffffffffffffffffffff6c
+:10c4e000ffffffffffffffffffffffffffffffff5c
+:10c4f000ffffffffffffffffffffffffffffffff4c
+:10c50000ffffffffffffffffffffffffffffffff3b
+:10c51000ffffffffffffffffffffffffffffffff2b
+:10c52000ffffffffffffffffffffffffffffffff1b
+:10c53000ffffffffffffffffffffffffffffffff0b
+:10c54000fffffffffffffffffffffffffffffffffb
+:10c55000ffffffffffffffffffffffffffffffffeb
+:10c56000ffffffffffffffffffffffffffffffffdb
+:10c57000ffffffffffffffffffffffffffffffffcb
+:10c58000ffffffffffffffffffffffffffffffffbb
+:10c59000ffffffffffffffffffffffffffffffffab
+:10c5a000ffffffffffffffffffffffffffffffff9b
+:10c5b000ffffffffffffffffffffffffffffffff8b
+:10c5c000ffffffffffffffffffffffffffffffff7b
+:10c5d000ffffffffffffffffffffffffffffffff6b
+:10c5e000ffffffffffffffffffffffffffffffff5b
+:10c5f000ffffffffffffffffffffffffffffffff4b
+:10c60000ffffffffffffffffffffffffffffffff3a
+:10c61000ffffffffffffffffffffffffffffffff2a
+:10c62000ffffffffffffffffffffffffffffffff1a
+:10c63000ffffffffffffffffffffffffffffffff0a
+:10c64000fffffffffffffffffffffffffffffffffa
+:10c65000ffffffffffffffffffffffffffffffffea
+:10c66000ffffffffffffffffffffffffffffffffda
+:10c67000ffffffffffffffffffffffffffffffffca
+:10c68000ffffffffffffffffffffffffffffffffba
+:10c69000ffffffffffffffffffffffffffffffffaa
+:10c6a000ffffffffffffffffffffffffffffffff9a
+:10c6b000ffffffffffffffffffffffffffffffff8a
+:10c6c000ffffffffffffffffffffffffffffffff7a
+:10c6d000ffffffffffffffffffffffffffffffff6a
+:10c6e000ffffffffffffffffffffffffffffffff5a
+:10c6f000ffffffffffffffffffffffffffffffff4a
+:10c70000ffffffffffffffffffffffffffffffff39
+:10c71000ffffffffffffffffffffffffffffffff29
+:10c72000ffffffffffffffffffffffffffffffff19
+:10c73000ffffffffffffffffffffffffffffffff09
+:10c74000fffffffffffffffffffffffffffffffff9
+:10c75000ffffffffffffffffffffffffffffffffe9
+:10c76000ffffffffffffffffffffffffffffffffd9
+:10c77000ffffffffffffffffffffffffffffffffc9
+:10c78000ffffffffffffffffffffffffffffffffb9
+:10c79000ffffffffffffffffffffffffffffffffa9
+:10c7a000ffffffffffffffffffffffffffffffff99
+:10c7b000ffffffffffffffffffffffffffffffff89
+:10c7c000ffffffffffffffffffffffffffffffff79
+:10c7d000ffffffffffffffffffffffffffffffff69
+:10c7e000ffffffffffffffffffffffffffffffff59
+:10c7f000ffffffffffffffffffffffffffffffff49
+:10c80000ffffffffffffffffffffffffffffffff38
+:10c81000ffffffffffffffffffffffffffffffff28
+:10c82000ffffffffffffffffffffffffffffffff18
+:10c83000ffffffffffffffffffffffffffffffff08
+:10c84000fffffffffffffffffffffffffffffffff8
+:10c85000ffffffffffffffffffffffffffffffffe8
+:10c86000ffffffffffffffffffffffffffffffffd8
+:10c87000ffffffffffffffffffffffffffffffffc8
+:10c88000ffffffffffffffffffffffffffffffffb8
+:10c89000ffffffffffffffffffffffffffffffffa8
+:10c8a000ffffffffffffffffffffffffffffffff98
+:10c8b000ffffffffffffffffffffffffffffffff88
+:10c8c000ffffffffffffffffffffffffffffffff78
+:10c8d000ffffffffffffffffffffffffffffffff68
+:10c8e000ffffffffffffffffffffffffffffffff58
+:10c8f000ffffffffffffffffffffffffffffffff48
+:10c90000ffffffffffffffffffffffffffffffff37
+:10c91000ffffffffffffffffffffffffffffffff27
+:10c92000ffffffffffffffffffffffffffffffff17
+:10c93000ffffffffffffffffffffffffffffffff07
+:10c94000fffffffffffffffffffffffffffffffff7
+:10c95000ffffffffffffffffffffffffffffffffe7
+:10c96000ffffffffffffffffffffffffffffffffd7
+:10c97000ffffffffffffffffffffffffffffffffc7
+:10c98000ffffffffffffffffffffffffffffffffb7
+:10c99000ffffffffffffffffffffffffffffffffa7
+:10c9a000ffffffffffffffffffffffffffffffff97
+:10c9b000ffffffffffffffffffffffffffffffff87
+:10c9c000ffffffffffffffffffffffffffffffff77
+:10c9d000ffffffffffffffffffffffffffffffff67
+:10c9e000ffffffffffffffffffffffffffffffff57
+:10c9f000ffffffffffffffffffffffffffffffff47
+:10ca0000ffffffffffffffffffffffffffffffff36
+:10ca1000ffffffffffffffffffffffffffffffff26
+:10ca2000ffffffffffffffffffffffffffffffff16
+:10ca3000ffffffffffffffffffffffffffffffff06
+:10ca4000fffffffffffffffffffffffffffffffff6
+:10ca5000ffffffffffffffffffffffffffffffffe6
+:10ca6000ffffffffffffffffffffffffffffffffd6
+:10ca7000ffffffffffffffffffffffffffffffffc6
+:10ca8000ffffffffffffffffffffffffffffffffb6
+:10ca9000ffffffffffffffffffffffffffffffffa6
+:10caa000ffffffffffffffffffffffffffffffff96
+:10cab000ffffffffffffffffffffffffffffffff86
+:10cac000ffffffffffffffffffffffffffffffff76
+:10cad000ffffffffffffffffffffffffffffffff66
+:10cae000ffffffffffffffffffffffffffffffff56
+:10caf000ffffffffffffffffffffffffffffffff46
+:10cb0000ffffffffffffffffffffffffffffffff35
+:10cb1000ffffffffffffffffffffffffffffffff25
+:10cb2000ffffffffffffffffffffffffffffffff15
+:10cb3000ffffffffffffffffffffffffffffffff05
+:10cb4000fffffffffffffffffffffffffffffffff5
+:10cb5000ffffffffffffffffffffffffffffffffe5
+:10cb6000ffffffffffffffffffffffffffffffffd5
+:10cb7000ffffffffffffffffffffffffffffffffc5
+:10cb8000ffffffffffffffffffffffffffffffffb5
+:10cb9000ffffffffffffffffffffffffffffffffa5
+:10cba000ffffffffffffffffffffffffffffffff95
+:10cbb000ffffffffffffffffffffffffffffffff85
+:10cbc000ffffffffffffffffffffffffffffffff75
+:10cbd000ffffffffffffffffffffffffffffffff65
+:10cbe000ffffffffffffffffffffffffffffffff55
+:10cbf000ffffffffffffffffffffffffffffffff45
+:10cc0000ffffffffffffffffffffffffffffffff34
+:10cc1000ffffffffffffffffffffffffffffffff24
+:10cc2000ffffffffffffffffffffffffffffffff14
+:10cc3000ffffffffffffffffffffffffffffffff04
+:10cc4000fffffffffffffffffffffffffffffffff4
+:10cc5000ffffffffffffffffffffffffffffffffe4
+:10cc6000ffffffffffffffffffffffffffffffffd4
+:10cc7000ffffffffffffffffffffffffffffffffc4
+:10cc8000ffffffffffffffffffffffffffffffffb4
+:10cc9000ffffffffffffffffffffffffffffffffa4
+:10cca000ffffffffffffffffffffffffffffffff94
+:10ccb000ffffffffffffffffffffffffffffffff84
+:10ccc000ffffffffffffffffffffffffffffffff74
+:10ccd000ffffffffffffffffffffffffffffffff64
+:10cce000ffffffffffffffffffffffffffffffff54
+:10ccf000ffffffffffffffffffffffffffffffff44
+:10cd0000ffffffffffffffffffffffffffffffff33
+:10cd1000ffffffffffffffffffffffffffffffff23
+:10cd2000ffffffffffffffffffffffffffffffff13
+:10cd3000ffffffffffffffffffffffffffffffff03
+:10cd4000fffffffffffffffffffffffffffffffff3
+:10cd5000ffffffffffffffffffffffffffffffffe3
+:10cd6000ffffffffffffffffffffffffffffffffd3
+:10cd7000ffffffffffffffffffffffffffffffffc3
+:10cd8000ffffffffffffffffffffffffffffffffb3
+:10cd9000ffffffffffffffffffffffffffffffffa3
+:10cda000ffffffffffffffffffffffffffffffff93
+:10cdb000ffffffffffffffffffffffffffffffff83
+:10cdc000ffffffffffffffffffffffffffffffff73
+:10cdd000ffffffffffffffffffffffffffffffff63
+:10cde000ffffffffffffffffffffffffffffffff53
+:10cdf000ffffffffffffffffffffffffffffffff43
+:10ce0000ffffffffffffffffffffffffffffffff32
+:10ce1000ffffffffffffffffffffffffffffffff22
+:10ce2000ffffffffffffffffffffffffffffffff12
+:10ce3000ffffffffffffffffffffffffffffffff02
+:10ce4000fffffffffffffffffffffffffffffffff2
+:10ce5000ffffffffffffffffffffffffffffffffe2
+:10ce6000ffffffffffffffffffffffffffffffffd2
+:10ce7000ffffffffffffffffffffffffffffffffc2
+:10ce8000ffffffffffffffffffffffffffffffffb2
+:10ce9000ffffffffffffffffffffffffffffffffa2
+:10cea000ffffffffffffffffffffffffffffffff92
+:10ceb000ffffffffffffffffffffffffffffffff82
+:10cec000ffffffffffffffffffffffffffffffff72
+:10ced000ffffffffffffffffffffffffffffffff62
+:10cee000ffffffffffffffffffffffffffffffff52
+:10cef000ffffffffffffffffffffffffffffffff42
+:10cf0000ffffffffffffffffffffffffffffffff31
+:10cf1000ffffffffffffffffffffffffffffffff21
+:10cf2000ffffffffffffffffffffffffffffffff11
+:10cf3000ffffffffffffffffffffffffffffffff01
+:10cf4000fffffffffffffffffffffffffffffffff1
+:10cf5000ffffffffffffffffffffffffffffffffe1
+:10cf6000ffffffffffffffffffffffffffffffffd1
+:10cf7000ffffffffffffffffffffffffffffffffc1
+:10cf8000ffffffffffffffffffffffffffffffffb1
+:10cf9000ffffffffffffffffffffffffffffffffa1
+:10cfa000ffffffffffffffffffffffffffffffff91
+:10cfb000ffffffffffffffffffffffffffffffff81
+:10cfc000ffffffffffffffffffffffffffffffff71
+:10cfd000ffffffffffffffffffffffffffffffff61
+:10cfe000ffffffffffffffffffffffffffffffff51
+:10cff000ffffffffffffffffffffffffffffffff41
+:10d00000ffffffffffffffffffffffffffffffff30
+:10d01000ffffffffffffffffffffffffffffffff20
+:10d02000ffffffffffffffffffffffffffffffff10
+:10d03000ffffffffffffffffffffffffffffffff00
+:10d04000fffffffffffffffffffffffffffffffff0
+:10d05000ffffffffffffffffffffffffffffffffe0
+:10d06000ffffffffffffffffffffffffffffffffd0
+:10d07000ffffffffffffffffffffffffffffffffc0
+:10d08000ffffffffffffffffffffffffffffffffb0
+:10d09000ffffffffffffffffffffffffffffffffa0
+:10d0a000ffffffffffffffffffffffffffffffff90
+:10d0b000ffffffffffffffffffffffffffffffff80
+:10d0c000ffffffffffffffffffffffffffffffff70
+:10d0d000ffffffffffffffffffffffffffffffff60
+:10d0e000ffffffffffffffffffffffffffffffff50
+:10d0f000ffffffffffffffffffffffffffffffff40
+:10d10000ffffffffffffffffffffffffffffffff2f
+:10d11000ffffffffffffffffffffffffffffffff1f
+:10d12000ffffffffffffffffffffffffffffffff0f
+:10d13000ffffffffffffffffffffffffffffffffff
+:10d14000ffffffffffffffffffffffffffffffffef
+:10d15000ffffffffffffffffffffffffffffffffdf
+:10d16000ffffffffffffffffffffffffffffffffcf
+:10d17000ffffffffffffffffffffffffffffffffbf
+:10d18000ffffffffffffffffffffffffffffffffaf
+:10d19000ffffffffffffffffffffffffffffffff9f
+:10d1a000ffffffffffffffffffffffffffffffff8f
+:10d1b000ffffffffffffffffffffffffffffffff7f
+:10d1c000ffffffffffffffffffffffffffffffff6f
+:10d1d000ffffffffffffffffffffffffffffffff5f
+:10d1e000ffffffffffffffffffffffffffffffff4f
+:10d1f000ffffffffffffffffffffffffffffffff3f
+:10d20000ffffffffffffffffffffffffffffffff2e
+:10d21000ffffffffffffffffffffffffffffffff1e
+:10d22000ffffffffffffffffffffffffffffffff0e
+:10d23000fffffffffffffffffffffffffffffffffe
+:10d24000ffffffffffffffffffffffffffffffffee
+:10d25000ffffffffffffffffffffffffffffffffde
+:10d26000ffffffffffffffffffffffffffffffffce
+:10d27000ffffffffffffffffffffffffffffffffbe
+:10d28000ffffffffffffffffffffffffffffffffae
+:10d29000ffffffffffffffffffffffffffffffff9e
+:10d2a000ffffffffffffffffffffffffffffffff8e
+:10d2b000ffffffffffffffffffffffffffffffff7e
+:10d2c000ffffffffffffffffffffffffffffffff6e
+:10d2d000ffffffffffffffffffffffffffffffff5e
+:10d2e000ffffffffffffffffffffffffffffffff4e
+:10d2f000ffffffffffffffffffffffffffffffff3e
+:10d30000ffffffffffffffffffffffffffffffff2d
+:10d31000ffffffffffffffffffffffffffffffff1d
+:10d32000ffffffffffffffffffffffffffffffff0d
+:10d33000fffffffffffffffffffffffffffffffffd
+:10d34000ffffffffffffffffffffffffffffffffed
+:10d35000ffffffffffffffffffffffffffffffffdd
+:10d36000ffffffffffffffffffffffffffffffffcd
+:10d37000ffffffffffffffffffffffffffffffffbd
+:10d38000ffffffffffffffffffffffffffffffffad
+:10d39000ffffffffffffffffffffffffffffffff9d
+:10d3a000ffffffffffffffffffffffffffffffff8d
+:10d3b000ffffffffffffffffffffffffffffffff7d
+:10d3c000ffffffffffffffffffffffffffffffff6d
+:10d3d000ffffffffffffffffffffffffffffffff5d
+:10d3e000ffffffffffffffffffffffffffffffff4d
+:10d3f000ffffffffffffffffffffffffffffffff3d
+:10d40000ffffffffffffffffffffffffffffffff2c
+:10d41000ffffffffffffffffffffffffffffffff1c
+:10d42000ffffffffffffffffffffffffffffffff0c
+:10d43000fffffffffffffffffffffffffffffffffc
+:10d44000ffffffffffffffffffffffffffffffffec
+:10d45000ffffffffffffffffffffffffffffffffdc
+:10d46000ffffffffffffffffffffffffffffffffcc
+:10d47000ffffffffffffffffffffffffffffffffbc
+:10d48000ffffffffffffffffffffffffffffffffac
+:10d49000ffffffffffffffffffffffffffffffff9c
+:10d4a000ffffffffffffffffffffffffffffffff8c
+:10d4b000ffffffffffffffffffffffffffffffff7c
+:10d4c000ffffffffffffffffffffffffffffffff6c
+:10d4d000ffffffffffffffffffffffffffffffff5c
+:10d4e000ffffffffffffffffffffffffffffffff4c
+:10d4f000ffffffffffffffffffffffffffffffff3c
+:10d50000ffffffffffffffffffffffffffffffff2b
+:10d51000ffffffffffffffffffffffffffffffff1b
+:10d52000ffffffffffffffffffffffffffffffff0b
+:10d53000fffffffffffffffffffffffffffffffffb
+:10d54000ffffffffffffffffffffffffffffffffeb
+:10d55000ffffffffffffffffffffffffffffffffdb
+:10d56000ffffffffffffffffffffffffffffffffcb
+:10d57000ffffffffffffffffffffffffffffffffbb
+:10d58000ffffffffffffffffffffffffffffffffab
+:10d59000ffffffffffffffffffffffffffffffff9b
+:10d5a000ffffffffffffffffffffffffffffffff8b
+:10d5b000ffffffffffffffffffffffffffffffff7b
+:10d5c000ffffffffffffffffffffffffffffffff6b
+:10d5d000ffffffffffffffffffffffffffffffff5b
+:10d5e000ffffffffffffffffffffffffffffffff4b
+:10d5f000ffffffffffffffffffffffffffffffff3b
+:10d60000ffffffffffffffffffffffffffffffff2a
+:10d61000ffffffffffffffffffffffffffffffff1a
+:10d62000ffffffffffffffffffffffffffffffff0a
+:10d63000fffffffffffffffffffffffffffffffffa
+:10d64000ffffffffffffffffffffffffffffffffea
+:10d65000ffffffffffffffffffffffffffffffffda
+:10d66000ffffffffffffffffffffffffffffffffca
+:10d67000ffffffffffffffffffffffffffffffffba
+:10d68000ffffffffffffffffffffffffffffffffaa
+:10d69000ffffffffffffffffffffffffffffffff9a
+:10d6a000ffffffffffffffffffffffffffffffff8a
+:10d6b000ffffffffffffffffffffffffffffffff7a
+:10d6c000ffffffffffffffffffffffffffffffff6a
+:10d6d000ffffffffffffffffffffffffffffffff5a
+:10d6e000ffffffffffffffffffffffffffffffff4a
+:10d6f000ffffffffffffffffffffffffffffffff3a
+:10d70000ffffffffffffffffffffffffffffffff29
+:10d71000ffffffffffffffffffffffffffffffff19
+:10d72000ffffffffffffffffffffffffffffffff09
+:10d73000fffffffffffffffffffffffffffffffff9
+:10d74000ffffffffffffffffffffffffffffffffe9
+:10d75000ffffffffffffffffffffffffffffffffd9
+:10d76000ffffffffffffffffffffffffffffffffc9
+:10d77000ffffffffffffffffffffffffffffffffb9
+:10d78000ffffffffffffffffffffffffffffffffa9
+:10d79000ffffffffffffffffffffffffffffffff99
+:10d7a000ffffffffffffffffffffffffffffffff89
+:10d7b000ffffffffffffffffffffffffffffffff79
+:10d7c000ffffffffffffffffffffffffffffffff69
+:10d7d000ffffffffffffffffffffffffffffffff59
+:10d7e000ffffffffffffffffffffffffffffffff49
+:10d7f000ffffffffffffffffffffffffffffffff39
+:10d80000ffffffffffffffffffffffffffffffff28
+:10d81000ffffffffffffffffffffffffffffffff18
+:10d82000ffffffffffffffffffffffffffffffff08
+:10d83000fffffffffffffffffffffffffffffffff8
+:10d84000ffffffffffffffffffffffffffffffffe8
+:10d85000ffffffffffffffffffffffffffffffffd8
+:10d86000ffffffffffffffffffffffffffffffffc8
+:10d87000ffffffffffffffffffffffffffffffffb8
+:10d88000ffffffffffffffffffffffffffffffffa8
+:10d89000ffffffffffffffffffffffffffffffff98
+:10d8a000ffffffffffffffffffffffffffffffff88
+:10d8b000ffffffffffffffffffffffffffffffff78
+:10d8c000ffffffffffffffffffffffffffffffff68
+:10d8d000ffffffffffffffffffffffffffffffff58
+:10d8e000ffffffffffffffffffffffffffffffff48
+:10d8f000ffffffffffffffffffffffffffffffff38
+:10d90000ffffffffffffffffffffffffffffffff27
+:10d91000ffffffffffffffffffffffffffffffff17
+:10d92000ffffffffffffffffffffffffffffffff07
+:10d93000fffffffffffffffffffffffffffffffff7
+:10d94000ffffffffffffffffffffffffffffffffe7
+:10d95000ffffffffffffffffffffffffffffffffd7
+:10d96000ffffffffffffffffffffffffffffffffc7
+:10d97000ffffffffffffffffffffffffffffffffb7
+:10d98000ffffffffffffffffffffffffffffffffa7
+:10d99000ffffffffffffffffffffffffffffffff97
+:10d9a000ffffffffffffffffffffffffffffffff87
+:10d9b000ffffffffffffffffffffffffffffffff77
+:10d9c000ffffffffffffffffffffffffffffffff67
+:10d9d000ffffffffffffffffffffffffffffffff57
+:10d9e000ffffffffffffffffffffffffffffffff47
+:10d9f000ffffffffffffffffffffffffffffffff37
+:10da0000ffffffffffffffffffffffffffffffff26
+:10da1000ffffffffffffffffffffffffffffffff16
+:10da2000ffffffffffffffffffffffffffffffff06
+:10da3000fffffffffffffffffffffffffffffffff6
+:10da4000ffffffffffffffffffffffffffffffffe6
+:10da5000ffffffffffffffffffffffffffffffffd6
+:10da6000ffffffffffffffffffffffffffffffffc6
+:10da7000ffffffffffffffffffffffffffffffffb6
+:10da8000ffffffffffffffffffffffffffffffffa6
+:10da9000ffffffffffffffffffffffffffffffff96
+:10daa000ffffffffffffffffffffffffffffffff86
+:10dab000ffffffffffffffffffffffffffffffff76
+:10dac000ffffffffffffffffffffffffffffffff66
+:10dad000ffffffffffffffffffffffffffffffff56
+:10dae000ffffffffffffffffffffffffffffffff46
+:10daf000ffffffffffffffffffffffffffffffff36
+:10db0000ffffffffffffffffffffffffffffffff25
+:10db1000ffffffffffffffffffffffffffffffff15
+:10db2000ffffffffffffffffffffffffffffffff05
+:10db3000fffffffffffffffffffffffffffffffff5
+:10db4000ffffffffffffffffffffffffffffffffe5
+:10db5000ffffffffffffffffffffffffffffffffd5
+:10db6000ffffffffffffffffffffffffffffffffc5
+:10db7000ffffffffffffffffffffffffffffffffb5
+:10db8000ffffffffffffffffffffffffffffffffa5
+:10db9000ffffffffffffffffffffffffffffffff95
+:10dba000ffffffffffffffffffffffffffffffff85
+:10dbb000ffffffffffffffffffffffffffffffff75
+:10dbc000ffffffffffffffffffffffffffffffff65
+:10dbd000ffffffffffffffffffffffffffffffff55
+:10dbe000ffffffffffffffffffffffffffffffff45
+:10dbf000ffffffffffffffffffffffffffffffff35
+:10dc0000ffffffffffffffffffffffffffffffff24
+:10dc1000ffffffffffffffffffffffffffffffff14
+:10dc2000ffffffffffffffffffffffffffffffff04
+:10dc3000fffffffffffffffffffffffffffffffff4
+:10dc4000ffffffffffffffffffffffffffffffffe4
+:10dc5000ffffffffffffffffffffffffffffffffd4
+:10dc6000ffffffffffffffffffffffffffffffffc4
+:10dc7000ffffffffffffffffffffffffffffffffb4
+:10dc8000ffffffffffffffffffffffffffffffffa4
+:10dc9000ffffffffffffffffffffffffffffffff94
+:10dca000ffffffffffffffffffffffffffffffff84
+:10dcb000ffffffffffffffffffffffffffffffff74
+:10dcc000ffffffffffffffffffffffffffffffff64
+:10dcd000ffffffffffffffffffffffffffffffff54
+:10dce000ffffffffffffffffffffffffffffffff44
+:10dcf000ffffffffffffffffffffffffffffffff34
+:10dd0000ffffffffffffffffffffffffffffffff23
+:10dd1000ffffffffffffffffffffffffffffffff13
+:10dd2000ffffffffffffffffffffffffffffffff03
+:10dd3000fffffffffffffffffffffffffffffffff3
+:10dd4000ffffffffffffffffffffffffffffffffe3
+:10dd5000ffffffffffffffffffffffffffffffffd3
+:10dd6000ffffffffffffffffffffffffffffffffc3
+:10dd7000ffffffffffffffffffffffffffffffffb3
+:10dd8000ffffffffffffffffffffffffffffffffa3
+:10dd9000ffffffffffffffffffffffffffffffff93
+:10dda000ffffffffffffffffffffffffffffffff83
+:10ddb000ffffffffffffffffffffffffffffffff73
+:10ddc000ffffffffffffffffffffffffffffffff63
+:10ddd000ffffffffffffffffffffffffffffffff53
+:10dde000ffffffffffffffffffffffffffffffff43
+:10ddf000ffffffffffffffffffffffffffffffff33
+:10de0000ffffffffffffffffffffffffffffffff22
+:10de1000ffffffffffffffffffffffffffffffff12
+:10de2000ffffffffffffffffffffffffffffffff02
+:10de3000fffffffffffffffffffffffffffffffff2
+:10de4000ffffffffffffffffffffffffffffffffe2
+:10de5000ffffffffffffffffffffffffffffffffd2
+:10de6000ffffffffffffffffffffffffffffffffc2
+:10de7000ffffffffffffffffffffffffffffffffb2
+:10de8000ffffffffffffffffffffffffffffffffa2
+:10de9000ffffffffffffffffffffffffffffffff92
+:10dea000ffffffffffffffffffffffffffffffff82
+:10deb000ffffffffffffffffffffffffffffffff72
+:10dec000ffffffffffffffffffffffffffffffff62
+:10ded000ffffffffffffffffffffffffffffffff52
+:10dee000ffffffffffffffffffffffffffffffff42
+:10def000ffffffffffffffffffffffffffffffff32
+:10df0000ffffffffffffffffffffffffffffffff21
+:10df1000ffffffffffffffffffffffffffffffff11
+:10df2000ffffffffffffffffffffffffffffffff01
+:10df3000fffffffffffffffffffffffffffffffff1
+:10df4000ffffffffffffffffffffffffffffffffe1
+:10df5000ffffffffffffffffffffffffffffffffd1
+:10df6000ffffffffffffffffffffffffffffffffc1
+:10df7000ffffffffffffffffffffffffffffffffb1
+:10df8000ffffffffffffffffffffffffffffffffa1
+:10df9000ffffffffffffffffffffffffffffffff91
+:10dfa000ffffffffffffffffffffffffffffffff81
+:10dfb000ffffffffffffffffffffffffffffffff71
+:10dfc000ffffffffffffffffffffffffffffffff61
+:10dfd000ffffffffffffffffffffffffffffffff51
+:10dfe000ffffffffffffffffffffffffffffffff41
+:10dff000ffffffffffffffffffffffffffffffff31
+:10e00000ffffffffffffffffffffffffffffffff20
+:10e01000ffffffffffffffffffffffffffffffff10
+:10e02000ffffffffffffffffffffffffffffffff00
+:10e03000fffffffffffffffffffffffffffffffff0
+:10e04000ffffffffffffffffffffffffffffffffe0
+:10e05000ffffffffffffffffffffffffffffffffd0
+:10e06000ffffffffffffffffffffffffffffffffc0
+:10e07000ffffffffffffffffffffffffffffffffb0
+:10e08000ffffffffffffffffffffffffffffffffa0
+:10e09000ffffffffffffffffffffffffffffffff90
+:10e0a000ffffffffffffffffffffffffffffffff80
+:10e0b000ffffffffffffffffffffffffffffffff70
+:10e0c000ffffffffffffffffffffffffffffffff60
+:10e0d000ffffffffffffffffffffffffffffffff50
+:10e0e000ffffffffffffffffffffffffffffffff40
+:10e0f000ffffffffffffffffffffffffffffffff30
+:10e10000ffffffffffffffffffffffffffffffff1f
+:10e11000ffffffffffffffffffffffffffffffff0f
+:10e12000ffffffffffffffffffffffffffffffffff
+:10e13000ffffffffffffffffffffffffffffffffef
+:10e14000ffffffffffffffffffffffffffffffffdf
+:10e15000ffffffffffffffffffffffffffffffffcf
+:10e16000ffffffffffffffffffffffffffffffffbf
+:10e17000ffffffffffffffffffffffffffffffffaf
+:10e18000ffffffffffffffffffffffffffffffff9f
+:10e19000ffffffffffffffffffffffffffffffff8f
+:10e1a000ffffffffffffffffffffffffffffffff7f
+:10e1b000ffffffffffffffffffffffffffffffff6f
+:10e1c000ffffffffffffffffffffffffffffffff5f
+:10e1d000ffffffffffffffffffffffffffffffff4f
+:10e1e000ffffffffffffffffffffffffffffffff3f
+:10e1f000ffffffffffffffffffffffffffffffff2f
+:10e20000ffffffffffffffffffffffffffffffff1e
+:10e21000ffffffffffffffffffffffffffffffff0e
+:10e22000fffffffffffffffffffffffffffffffffe
+:10e23000ffffffffffffffffffffffffffffffffee
+:10e24000ffffffffffffffffffffffffffffffffde
+:10e25000ffffffffffffffffffffffffffffffffce
+:10e26000ffffffffffffffffffffffffffffffffbe
+:10e27000ffffffffffffffffffffffffffffffffae
+:10e28000ffffffffffffffffffffffffffffffff9e
+:10e29000ffffffffffffffffffffffffffffffff8e
+:10e2a000ffffffffffffffffffffffffffffffff7e
+:10e2b000ffffffffffffffffffffffffffffffff6e
+:10e2c000ffffffffffffffffffffffffffffffff5e
+:10e2d000ffffffffffffffffffffffffffffffff4e
+:10e2e000ffffffffffffffffffffffffffffffff3e
+:10e2f000ffffffffffffffffffffffffffffffff2e
+:10e30000ffffffffffffffffffffffffffffffff1d
+:10e31000ffffffffffffffffffffffffffffffff0d
+:10e32000fffffffffffffffffffffffffffffffffd
+:10e33000ffffffffffffffffffffffffffffffffed
+:10e34000ffffffffffffffffffffffffffffffffdd
+:10e35000ffffffffffffffffffffffffffffffffcd
+:10e36000ffffffffffffffffffffffffffffffffbd
+:10e37000ffffffffffffffffffffffffffffffffad
+:10e38000ffffffffffffffffffffffffffffffff9d
+:10e39000ffffffffffffffffffffffffffffffff8d
+:10e3a000ffffffffffffffffffffffffffffffff7d
+:10e3b000ffffffffffffffffffffffffffffffff6d
+:10e3c000ffffffffffffffffffffffffffffffff5d
+:10e3d000ffffffffffffffffffffffffffffffff4d
+:10e3e000ffffffffffffffffffffffffffffffff3d
+:10e3f000ffffffffffffffffffffffffffffffff2d
+:10e40000ffffffffffffffffffffffffffffffff1c
+:10e41000ffffffffffffffffffffffffffffffff0c
+:10e42000fffffffffffffffffffffffffffffffffc
+:10e43000ffffffffffffffffffffffffffffffffec
+:10e44000ffffffffffffffffffffffffffffffffdc
+:10e45000ffffffffffffffffffffffffffffffffcc
+:10e46000ffffffffffffffffffffffffffffffffbc
+:10e47000ffffffffffffffffffffffffffffffffac
+:10e48000ffffffffffffffffffffffffffffffff9c
+:10e49000ffffffffffffffffffffffffffffffff8c
+:10e4a000ffffffffffffffffffffffffffffffff7c
+:10e4b000ffffffffffffffffffffffffffffffff6c
+:10e4c000ffffffffffffffffffffffffffffffff5c
+:10e4d000ffffffffffffffffffffffffffffffff4c
+:10e4e000ffffffffffffffffffffffffffffffff3c
+:10e4f000ffffffffffffffffffffffffffffffff2c
+:10e50000ffffffffffffffffffffffffffffffff1b
+:10e51000ffffffffffffffffffffffffffffffff0b
+:10e52000fffffffffffffffffffffffffffffffffb
+:10e53000ffffffffffffffffffffffffffffffffeb
+:10e54000ffffffffffffffffffffffffffffffffdb
+:10e55000ffffffffffffffffffffffffffffffffcb
+:10e56000ffffffffffffffffffffffffffffffffbb
+:10e57000ffffffffffffffffffffffffffffffffab
+:10e58000ffffffffffffffffffffffffffffffff9b
+:10e59000ffffffffffffffffffffffffffffffff8b
+:10e5a000ffffffffffffffffffffffffffffffff7b
+:10e5b000ffffffffffffffffffffffffffffffff6b
+:10e5c000ffffffffffffffffffffffffffffffff5b
+:10e5d000ffffffffffffffffffffffffffffffff4b
+:10e5e000ffffffffffffffffffffffffffffffff3b
+:10e5f000ffffffffffffffffffffffffffffffff2b
+:10e60000ffffffffffffffffffffffffffffffff1a
+:10e61000ffffffffffffffffffffffffffffffff0a
+:10e62000fffffffffffffffffffffffffffffffffa
+:10e63000ffffffffffffffffffffffffffffffffea
+:10e64000ffffffffffffffffffffffffffffffffda
+:10e65000ffffffffffffffffffffffffffffffffca
+:10e66000ffffffffffffffffffffffffffffffffba
+:10e67000ffffffffffffffffffffffffffffffffaa
+:10e68000ffffffffffffffffffffffffffffffff9a
+:10e69000ffffffffffffffffffffffffffffffff8a
+:10e6a000ffffffffffffffffffffffffffffffff7a
+:10e6b000ffffffffffffffffffffffffffffffff6a
+:10e6c000ffffffffffffffffffffffffffffffff5a
+:10e6d000ffffffffffffffffffffffffffffffff4a
+:10e6e000ffffffffffffffffffffffffffffffff3a
+:10e6f000ffffffffffffffffffffffffffffffff2a
+:10e70000ffffffffffffffffffffffffffffffff19
+:10e71000ffffffffffffffffffffffffffffffff09
+:10e72000fffffffffffffffffffffffffffffffff9
+:10e73000ffffffffffffffffffffffffffffffffe9
+:10e74000ffffffffffffffffffffffffffffffffd9
+:10e75000ffffffffffffffffffffffffffffffffc9
+:10e76000ffffffffffffffffffffffffffffffffb9
+:10e77000ffffffffffffffffffffffffffffffffa9
+:10e78000ffffffffffffffffffffffffffffffff99
+:10e79000ffffffffffffffffffffffffffffffff89
+:10e7a000ffffffffffffffffffffffffffffffff79
+:10e7b000ffffffffffffffffffffffffffffffff69
+:10e7c000ffffffffffffffffffffffffffffffff59
+:10e7d000ffffffffffffffffffffffffffffffff49
+:10e7e000ffffffffffffffffffffffffffffffff39
+:10e7f000ffffffffffffffffffffffffffffffff29
+:10e80000ffffffffffffffffffffffffffffffff18
+:10e81000ffffffffffffffffffffffffffffffff08
+:10e82000fffffffffffffffffffffffffffffffff8
+:10e83000ffffffffffffffffffffffffffffffffe8
+:10e84000ffffffffffffffffffffffffffffffffd8
+:10e85000ffffffffffffffffffffffffffffffffc8
+:10e86000ffffffffffffffffffffffffffffffffb8
+:10e87000ffffffffffffffffffffffffffffffffa8
+:10e88000ffffffffffffffffffffffffffffffff98
+:10e89000ffffffffffffffffffffffffffffffff88
+:10e8a000ffffffffffffffffffffffffffffffff78
+:10e8b000ffffffffffffffffffffffffffffffff68
+:10e8c000ffffffffffffffffffffffffffffffff58
+:10e8d000ffffffffffffffffffffffffffffffff48
+:10e8e000ffffffffffffffffffffffffffffffff38
+:10e8f000ffffffffffffffffffffffffffffffff28
+:10e90000ffffffffffffffffffffffffffffffff17
+:10e91000ffffffffffffffffffffffffffffffff07
+:10e92000fffffffffffffffffffffffffffffffff7
+:10e93000ffffffffffffffffffffffffffffffffe7
+:10e94000ffffffffffffffffffffffffffffffffd7
+:10e95000ffffffffffffffffffffffffffffffffc7
+:10e96000ffffffffffffffffffffffffffffffffb7
+:10e97000ffffffffffffffffffffffffffffffffa7
+:10e98000ffffffffffffffffffffffffffffffff97
+:10e99000ffffffffffffffffffffffffffffffff87
+:10e9a000ffffffffffffffffffffffffffffffff77
+:10e9b000ffffffffffffffffffffffffffffffff67
+:10e9c000ffffffffffffffffffffffffffffffff57
+:10e9d000ffffffffffffffffffffffffffffffff47
+:10e9e000ffffffffffffffffffffffffffffffff37
+:10e9f000ffffffffffffffffffffffffffffffff27
+:10ea0000ffffffffffffffffffffffffffffffff16
+:10ea1000ffffffffffffffffffffffffffffffff06
+:10ea2000fffffffffffffffffffffffffffffffff6
+:10ea3000ffffffffffffffffffffffffffffffffe6
+:10ea4000ffffffffffffffffffffffffffffffffd6
+:10ea5000ffffffffffffffffffffffffffffffffc6
+:10ea6000ffffffffffffffffffffffffffffffffb6
+:10ea7000ffffffffffffffffffffffffffffffffa6
+:10ea8000ffffffffffffffffffffffffffffffff96
+:10ea9000ffffffffffffffffffffffffffffffff86
+:10eaa000ffffffffffffffffffffffffffffffff76
+:10eab000ffffffffffffffffffffffffffffffff66
+:10eac000ffffffffffffffffffffffffffffffff56
+:10ead000ffffffffffffffffffffffffffffffff46
+:10eae000ffffffffffffffffffffffffffffffff36
+:10eaf000ffffffffffffffffffffffffffffffff26
+:10eb0000ffffffffffffffffffffffffffffffff15
+:10eb1000ffffffffffffffffffffffffffffffff05
+:10eb2000fffffffffffffffffffffffffffffffff5
+:10eb3000ffffffffffffffffffffffffffffffffe5
+:10eb4000ffffffffffffffffffffffffffffffffd5
+:10eb5000ffffffffffffffffffffffffffffffffc5
+:10eb6000ffffffffffffffffffffffffffffffffb5
+:10eb7000ffffffffffffffffffffffffffffffffa5
+:10eb8000ffffffffffffffffffffffffffffffff95
+:10eb9000ffffffffffffffffffffffffffffffff85
+:10eba000ffffffffffffffffffffffffffffffff75
+:10ebb000ffffffffffffffffffffffffffffffff65
+:10ebc000ffffffffffffffffffffffffffffffff55
+:10ebd000ffffffffffffffffffffffffffffffff45
+:10ebe000ffffffffffffffffffffffffffffffff35
+:10ebf000ffffffffffffffffffffffffffffffff25
+:10ec0000ffffffffffffffffffffffffffffffff14
+:10ec1000ffffffffffffffffffffffffffffffff04
+:10ec2000fffffffffffffffffffffffffffffffff4
+:10ec3000ffffffffffffffffffffffffffffffffe4
+:10ec4000ffffffffffffffffffffffffffffffffd4
+:10ec5000ffffffffffffffffffffffffffffffffc4
+:10ec6000ffffffffffffffffffffffffffffffffb4
+:10ec7000ffffffffffffffffffffffffffffffffa4
+:10ec8000ffffffffffffffffffffffffffffffff94
+:10ec9000ffffffffffffffffffffffffffffffff84
+:10eca000ffffffffffffffffffffffffffffffff74
+:10ecb000ffffffffffffffffffffffffffffffff64
+:10ecc000ffffffffffffffffffffffffffffffff54
+:10ecd000ffffffffffffffffffffffffffffffff44
+:10ece000ffffffffffffffffffffffffffffffff34
+:10ecf000ffffffffffffffffffffffffffffffff24
+:10ed0000ffffffffffffffffffffffffffffffff13
+:10ed1000ffffffffffffffffffffffffffffffff03
+:10ed2000fffffffffffffffffffffffffffffffff3
+:10ed3000ffffffffffffffffffffffffffffffffe3
+:10ed4000ffffffffffffffffffffffffffffffffd3
+:10ed5000ffffffffffffffffffffffffffffffffc3
+:10ed6000ffffffffffffffffffffffffffffffffb3
+:10ed7000ffffffffffffffffffffffffffffffffa3
+:10ed8000ffffffffffffffffffffffffffffffff93
+:10ed9000ffffffffffffffffffffffffffffffff83
+:10eda000ffffffffffffffffffffffffffffffff73
+:10edb000ffffffffffffffffffffffffffffffff63
+:10edc000ffffffffffffffffffffffffffffffff53
+:10edd000ffffffffffffffffffffffffffffffff43
+:10ede000ffffffffffffffffffffffffffffffff33
+:10edf000ffffffffffffffffffffffffffffffff23
+:10ee0000ffffffffffffffffffffffffffffffff12
+:10ee1000ffffffffffffffffffffffffffffffff02
+:10ee2000fffffffffffffffffffffffffffffffff2
+:10ee3000ffffffffffffffffffffffffffffffffe2
+:10ee4000ffffffffffffffffffffffffffffffffd2
+:10ee5000ffffffffffffffffffffffffffffffffc2
+:10ee6000ffffffffffffffffffffffffffffffffb2
+:10ee7000ffffffffffffffffffffffffffffffffa2
+:10ee8000ffffffffffffffffffffffffffffffff92
+:10ee9000ffffffffffffffffffffffffffffffff82
+:10eea000ffffffffffffffffffffffffffffffff72
+:10eeb000ffffffffffffffffffffffffffffffff62
+:10eec000ffffffffffffffffffffffffffffffff52
+:10eed000ffffffffffffffffffffffffffffffff42
+:10eee000ffffffffffffffffffffffffffffffff32
+:10eef000ffffffffffffffffffffffffffffffff22
+:10ef0000ffffffffffffffffffffffffffffffff11
+:10ef1000ffffffffffffffffffffffffffffffff01
+:10ef2000fffffffffffffffffffffffffffffffff1
+:10ef3000ffffffffffffffffffffffffffffffffe1
+:10ef4000ffffffffffffffffffffffffffffffffd1
+:10ef5000ffffffffffffffffffffffffffffffffc1
+:10ef6000ffffffffffffffffffffffffffffffffb1
+:10ef7000ffffffffffffffffffffffffffffffffa1
+:10ef8000ffffffffffffffffffffffffffffffff91
+:10ef9000ffffffffffffffffffffffffffffffff81
+:10efa000ffffffffffffffffffffffffffffffff71
+:10efb000ffffffffffffffffffffffffffffffff61
+:10efc000ffffffffffffffffffffffffffffffff51
+:10efd000ffffffffffffffffffffffffffffffff41
+:10efe000ffffffffffffff14002000220028003278
+:10eff0000040004a004e00ffff54005600ffffff94
+:10f00000ffffffffffffffffffffffffffffff6aa5
+:10f0100001ffffffffffff3f02ffffd304f801ffe7
+:10f02000ff47027003ffffffffffffffffffffff30
+:10f03000ffffffffffffffffffffffffff36003671
+:10f04000040e360f365f0e360036080e36003610c8
+:10f050000e360036140e3600360c0e360036000e14
+:10f060003602366736010f3601366836010f360232
+:10f07000366936010f3604366a36010f3609366bab
+:10f0800036010f3642366c36010f364f366d36017b
+:10f090000f3642366e36010f3611366f36010f3697
+:10f0a00015367036010f3679368036010f36053643
+:10f0b0007f36010f36f4367e36010f3631367d3617
+:10f0c000010f36b5367c36010f36ce367b36010f52
+:10f0d000364e367a36010f3699367936010f36a418
+:10f0e000367836010f360f367736010f364b3676c7
+:10f0f00036010f361e367536010f3612367436015c
+:10f100000f362d367336010f3600367236010f3644
+:10f11000d0367136010f151b140020001007164061
+:10f120002f1501001a3667361a0d16412f150104e6
+:10f130000216392f360436280e1536280c19100bf6
+:10f14000180b0a0d426f6f746564210a0d16092fa2
+:10f15000171536280c19100e180e0a0d436f6e6e17
+:10f160006563746564210a0d16092f36001c01368b
+:10f17000240e36011c013603330bc3011536280c4f
+:10f1800019101518155374617274696e6720456ef5
+:10f190006372797074696f6e0d0a16092f15362423
+:10f1a0000c19100016312f14f701360236040e1513
+:10f1b00036280c19100f180f5374617274696e673a
+:10f1c0002046696e640d0a16092f1536001c0119b8
+:10f1d0001b0100ffff10021802002816262f173609
+:10f1e000051c01361009360636011d36d009403699
+:10f1f0000736011d360009400b3e0236011c02365f
+:10f200001c0e36031c0236200e1536280c19101061
+:10f210001810466f756e6420736572766963652198
+:10f220000d0a16092f171501040216392f17360378
+:10f230001c013610090bf302360436011d36fb099a
+:10f24000360536011d367b09400b87023601360034
+:10f250000e36011c0236140e1536280c19100a1829
+:10f260000a464f554e445f44530d0a16092f360483
+:10f2700036011d36bd09360536011d361d09400b08
+:10f28000bd02360236000e36011c02360c0e153653
+:10f29000280c19100a180a464f554e445f4e530d5c
+:10f2a0000a16092f360436011d36d90936053601ee
+:10f2b0001d36d909400bf302360036000e36011c0c
+:10f2c0000236180e1536280c19100a180a464f5522
+:10f2d0004e445f43500d0a16092f36031c013602b7
+:10f2e000090b6f03360436011d3602093605360157
+:10f2f0001d362909400b6f0336000c3601090b40ff
+:10f300000336011c0236100e360036000e15362864
+:10f310000c19100e180e464f554e445f44535f4370
+:10f3200043430d0a16092f36000c3602090b6f03f2
+:10f3300036011c0236080e360036000e1536280c33
+:10f3400019100e180e464f554e445f4e535f4343ff
+:10f35000430d0a16092f1736040c3606330bad037e
+:10f360001536280c19100c180c6261642073746136
+:10f370007465210d0a16092f360236040e15360063
+:10f380001c01191b0100ffff10021802002816269d
+:10f390002f14d20436011c02360c0c090b850436de
+:10f3a0000536011d3600090b8504360736011d366a
+:10f3b00001090be0031536280c1910061806434105
+:10f3c0004c4c0d0a16092f360736011d3602090b63
+:10f3d000ff031536280c19100818084d49535345da
+:10f3e000440d0a16092f360736011d3603090b1d79
+:10f3f000041536280c1910071807564d41494c0db5
+:10f400000a16092f1536280c19100418046e730dee
+:10f410000a16092f3600362c36010f360936011d23
+:10f42000362d36010f360a36011d362e36010f36bf
+:10f430000b36011d362f36010f360c36011d3630c6
+:10f4400036010f3601363136010f360b36323601b2
+:10f450000f3600363336010f1536001c01193618e9
+:10f460000c1a1008362c36080d162a2f36011c02ed
+:10f4700036140c090bd2041536280c191004180484
+:10f4800064730d0a16092f36041c013608320bd29c
+:10f49000041536280c1936041c0136080319360ddc
+:10f4a00036041c013608031d16092f1536280c19c1
+:10f4b000100218020d0a16092f171536280c1910fc
+:10f4c0000818080a0d646f6e650a0d16092f3601bb
+:10f4d0001c0236630e365f0c365b0e365b0c360054
+:10f4e000320b2b05365b0c360103365b0e3630369d
+:10f4f000630c36630c360a08360a070302364c36ac
+:10f500005b0c0236010f36630c360a0836630e14a4
+:10f51000f4041536280c19365f0c19364c365f0c7e
+:10f520000d16092f1536280c19100218020d0a168f
+:10f53000092f36040c3604090b780536011c0236f7
+:10f5400000090b7805360636040e1536280c1910fe
+:10f55000091809696e69746564210d0a16092f3648
+:10f56000040c3605090bda0536080c3600320bb1ef
+:10f5700005360436040e3601364a36010f3600369b
+:10f580004b36010f15100036080c1a1002364a3699
+:10f59000020d162a2f14da051536280c19101d181d
+:10f5a0001d6174745f68616e646c655f6e735f6328
+:10f5b0006363206e6f7420666f756e640d0a1609a2
+:10f5c0002f36040c3603090b3c0636100c3600327d
+:10f5d0000b1306360536040e3601364a36010f3651
+:10f5e00000364b36010f15100036100c1a1002367b
+:10f5f0004a36020d162a2f143c061536280c19100f
+:10f600001d181d6174745f68616e646c655f64735e
+:10f610005f636363206e6f7420666f756e640d0a9e
+:10f6200016092f36040c3602090bab0636200c36b1
+:10f6300000320b8706360336040e1536280c1910d7
+:10f6400017181746696e64696e6720617474726971
+:10f6500062757465732e2e2e0d0a16092f15100073
+:10f66000361c0c1a36200c1a16282f14ab06153629
+:10f67000280c1910181818436f756c646e277420c5
+:10f6800066696e642073657276696365210d0a167a
+:10f69000092f1717020300002a4c454402050001f8
+:10f6a0002a4142020800292a426c75656769676130
+:10f6b000020a00282a312e30020c00262a32350296
+:10f6c0000e00242a424c453131320a11004c0742c7
+:10f6d00089b27aae963549476d8f327cee0a00ffcb
+:10f6e0001e014c454420546f67676c650001047e21
+:10f6f000f70202010494f60504010499f6030201dd
+:10f70000049cf605050104a1f60200010484f70239
+:10f71000020104a3f605070104a8f608020104b0db
+:10f72000f605080104b5f603020104b8f60509015f
+:10f7300004bdf602020104bff6050a0104c4f60680
+:10f7400000010458f710020104caf613810306dd14
+:10f75000f6050b0104e2f60a3898ba29e61eaf86d0
+:10f76000aa4ed69ac5bb4a384c074289b27aae96a1
+:10f770003549476d8f327cee002801280328001898
+:10f78000002a012a0a18292a282a262a242a012995
+:10f79000e7ef94f694f6ecf658f778f71204ff1eac
+:10f7a0001100000000000000000000000000000048
+:10f7b0000000000000000000000000000000000049
+:10f7c0000000000000000000000000000000000039
+:10f7d0000000000000000000000000000000000029
+:10f7e00000000000000000000000000000e8030d21
+:10f7f0006d00c50c0000000000000001004700bec5
+:10f80000ffffffffffffffffffffffffffffffff08
+:10f81000fffffffffffffffffffffffffffffffff8
+:10f82000ffffffffffffffffffffffffffffffffe8
+:10f83000ffffffffffffffffffffffffffffffffd8
+:10f84000ffffffffffffffffffffffffffffffffc8
+:10f85000ffffffffffffffffffffffffffffffffb8
+:10f86000ffffffffffffffffffffffffffffffffa8
+:10f87000ffffffffffffffffffffffffffffffff98
+:10f88000ffffffffffffffffffffffffffffffff88
+:10f89000ffffffffffffffffffffffffffffffff78
+:10f8a000ffffffffffffffffffffffffffffffff68
+:10f8b000ffffffffffffffffffffffffffffffff58
+:10f8c000ffffffffffffffffffffffffffffffff48
+:10f8d000ffffffffffffffffffffffffffffffff38
+:10f8e000ffffffffffffffffffffffffffffffff28
+:10f8f000ffffffffffffffffffffffffffffffff18
+:10f90000ffffffffffffffffffffffffffffffff07
+:10f91000fffffffffffffffffffffffffffffffff7
+:10f92000ffffffffffffffffffffffffffffffffe7
+:10f93000ffffffffffffffffffffffffffffffffd7
+:10f94000ffffffffffffffffffffffffffffffffc7
+:10f95000ffffffffffffffffffffffffffffffffb7
+:10f96000ffffffffffffffffffffffffffffffffa7
+:10f97000ffffffffffffffffffffffffffffffff97
+:10f98000ffffffffffffffffffffffffffffffff87
+:10f99000ffffffffffffffffffffffffffffffff77
+:10f9a000ffffffffffffffffffffffffffffffff67
+:10f9b000ffffffffffffffffffffffffffffffff57
+:10f9c000ffffffffffffffffffffffffffffffff47
+:10f9d000ffffffffffffffffffffffffffffffff37
+:10f9e000ffffffffffffffffffffffffffffffff27
+:10f9f000ffffffffffffffffffffffffffffffff17
+:10fa0000ffffffffffffffffffffffffffffffff06
+:10fa1000fffffffffffffffffffffffffffffffff6
+:10fa2000ffffffffffffffffffffffffffffffffe6
+:10fa3000ffffffffffffffffffffffffffffffffd6
+:10fa4000ffffffffffffffffffffffffffffffffc6
+:10fa5000ffffffffffffffffffffffffffffffffb6
+:10fa6000ffffffffffffffffffffffffffffffffa6
+:10fa7000ffffffffffffffffffffffffffffffff96
+:10fa8000ffffffffffffffffffffffffffffffff86
+:10fa9000ffffffffffffffffffffffffffffffff76
+:10faa000ffffffffffffffffffffffffffffffff66
+:10fab000ffffffffffffffffffffffffffffffff56
+:10fac000ffffffffffffffffffffffffffffffff46
+:10fad000ffffffffffffffffffffffffffffffff36
+:10fae000ffffffffffffffffffffffffffffffff26
+:10faf000ffffffffffffffffffffffffffffffff16
+:10fb0000ffffffffffffffffffffffffffffffff05
+:10fb1000fffffffffffffffffffffffffffffffff5
+:10fb2000ffffffffffffffffffffffffffffffffe5
+:10fb3000ffffffffffffffffffffffffffffffffd5
+:10fb4000ffffffffffffffffffffffffffffffffc5
+:10fb5000ffffffffffffffffffffffffffffffffb5
+:10fb6000ffffffffffffffffffffffffffffffffa5
+:10fb7000ffffffffffffffffffffffffffffffff95
+:10fb8000ffffffffffffffffffffffffffffffff85
+:10fb9000ffffffffffffffffffffffffffffffff75
+:10fba000ffffffffffffffffffffffffffffffff65
+:10fbb000ffffffffffffffffffffffffffffffff55
+:10fbc000ffffffffffffffffffffffffffffffff45
+:10fbd000ffffffffffffffffffffffffffffffff35
+:10fbe000ffffffffffffffffffffffffffffffff25
+:10fbf000ffffffffffffffffffffffffffffffff15
+:10fc0000ffffffffffffffffffffffffffffffff04
+:10fc1000fffffffffffffffffffffffffffffffff4
+:10fc2000ffffffffffffffffffffffffffffffffe4
+:10fc3000ffffffffffffffffffffffffffffffffd4
+:10fc4000ffffffffffffffffffffffffffffffffc4
+:10fc5000ffffffffffffffffffffffffffffffffb4
+:10fc6000ffffffffffffffffffffffffffffffffa4
+:10fc7000ffffffffffffffffffffffffffffffff94
+:10fc8000ffffffffffffffffffffffffffffffff84
+:10fc9000ffffffffffffffffffffffffffffffff74
+:10fca000ffffffffffffffffffffffffffffffff64
+:10fcb000ffffffffffffffffffffffffffffffff54
+:10fcc000ffffffffffffffffffffffffffffffff44
+:10fcd000ffffffffffffffffffffffffffffffff34
+:10fce000ffffffffffffffffffffffffffffffff24
+:10fcf000ffffffffffffffffffffffffffffffff14
+:10fd0000ffffffffffffffffffffffffffffffff03
+:10fd1000fffffffffffffffffffffffffffffffff3
+:10fd2000ffffffffffffffffffffffffffffffffe3
+:10fd3000ffffffffffffffffffffffffffffffffd3
+:10fd4000ffffffffffffffffffffffffffffffffc3
+:10fd5000ffffffffffffffffffffffffffffffffb3
+:10fd6000ffffffffffffffffffffffffffffffffa3
+:10fd7000ffffffffffffffffffffffffffffffff93
+:10fd8000ffffffffffffffffffffffffffffffff83
+:10fd9000ffffffffffffffffffffffffffffffff73
+:10fda000ffffffffffffffffffffffffffffffff63
+:10fdb000ffffffffffffffffffffffffffffffff53
+:10fdc000ffffffffffffffffffffffffffffffff43
+:10fdd000ffffffffffffffffffffffffffffffff33
+:10fde000ffffffffffffffffffffffffffffffff23
+:10fdf000ffffffffffffffffffffffffffffffff13
+:10fe0000ffffffffffffffffffffffffffffffff02
+:10fe1000fffffffffffffffffffffffffffffffff2
+:10fe2000ffffffffffffffffffffffffffffffffe2
+:10fe3000ffffffffffffffffffffffffffffffffd2
+:10fe4000ffffffffffffffffffffffffffffffffc2
+:10fe5000ffffffffffffffffffffffffffffffffb2
+:10fe6000ffffffffffffffffffffffffffffffffa2
+:10fe7000ffffffffffffffffffffffffffffffff92
+:10fe8000ffffffffffffffffffffffffffffffff82
+:10fe9000ffffffffffffffffffffffffffffffff72
+:10fea000ffffffffffffffffffffffffffffffff62
+:10feb000ffffffffffffffffffffffffffffffff52
+:10fec000ffffffffffffffffffffffffffffffff42
+:10fed000ffffffffffffffffffffffffffffffff32
+:10fee000ffffffffffffffffffffffffffffffff22
+:10fef000ffffffffffffffffffffffffffffffff12
+:10ff00007cf0c0020bd800420000003c000002ff61
+:10ff100000ffffffffffffff03ffffffff000000e9
+:10ff200000ffffffffffffffffffffffffffffffe0
+:10ff3000ffffffffffffffffffffffffffffffffd1
+:10ff4000ffffffffffffffffffffffffffffffffc1
+:10ff5000ffffffffffffffffffffffffffffffffb1
+:10ff6000ffffffffffffffffffffffffffffffffa1
+:10ff7000ffffffffffffffffffffffffffffffff91
+:10ff8000ffffffffffffffffffffffffffffffff81
+:10ff9000ffffffffffffffffffffffffffffffff71
+:10ffa000ffffffffffffffffffffffffffffffff61
+:10ffb000ffffffffffffffffffffffffffffffff51
+:10ffc000ffffffffffffffffffffffffffffffff41
+:10ffd000ffffffffffffffffffffffffffffffff31
+:10ffe000ffffffffffffffffffffffffffffffff21
+:10fff000ffffffffffffffffffffffffffffffff11
+:00000001ff
diff --git a/iOS/ANCS/project.xml b/iOS/ANCS/project.xml
new file mode 100644
index 0000000..ff90cd5
--- /dev/null
+++ b/iOS/ANCS/project.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/iOS/ANCS/variable_memory_usage.txt b/iOS/ANCS/variable_memory_usage.txt
new file mode 100644
index 0000000..c20f74a
--- /dev/null
+++ b/iOS/ANCS/variable_memory_usage.txt
@@ -0,0 +1,107 @@
+133
+0:0 GAP_AD_FLAG_BREDR_NOT_SUPPORTED
+0:0 GAP_AD_FLAG_GENERAL_DISCOVERABLE
+0:0 GAP_AD_FLAG_LIMITED_DISCOVERABLE
+0:0 GAP_AD_FLAG_MASK
+0:0 GAP_AD_FLAG_SIMULTANEOUS_LEBREDR_CTRL
+0:0 GAP_AD_FLAG_SIMULTANEOUS_LEBREDR_HOST
+0:0 GAP_SCAN_HEADER_ADV_DIRECT_IND
+0:0 GAP_SCAN_HEADER_ADV_DISCOVER_IND
+0:0 GAP_SCAN_HEADER_ADV_IND
+0:0 GAP_SCAN_HEADER_ADV_NONCONN_IND
+0:0 GAP_SCAN_HEADER_CONNECT_REQ
+0:0 GAP_SCAN_HEADER_SCAN_REQ
+0:0 GAP_SCAN_HEADER_SCAN_RSP
+0:0 attclient_attribute_value_type_indicate
+0:0 attclient_attribute_value_type_indicate_rsp_req
+0:0 attclient_attribute_value_type_notify
+0:0 attclient_attribute_value_type_read
+0:0 attclient_attribute_value_type_read_blob
+0:0 attclient_attribute_value_type_read_by_type
+0:0 attributes_attribute_change_reason_write_command
+0:0 attributes_attribute_change_reason_write_request
+0:0 attributes_attribute_change_reason_write_request_user
+0:0 attributes_attribute_status_flag_indicate
+0:0 attributes_attribute_status_flag_notify
+0:0 connection_completed
+0:0 connection_connected
+0:0 connection_encrypted
+0:0 connection_parameters_change
+0:0 gap_ad_type_flags
+0:0 gap_ad_type_localname_complete
+0:0 gap_ad_type_localname_short
+0:0 gap_ad_type_none
+0:0 gap_ad_type_services_128bit_all
+0:0 gap_ad_type_services_128bit_more
+0:0 gap_ad_type_services_16bit_all
+0:0 gap_ad_type_services_16bit_more
+0:0 gap_ad_type_services_32bit_all
+0:0 gap_ad_type_services_32bit_more
+0:0 gap_ad_type_txpower
+0:0 gap_address_type_public
+0:0 gap_address_type_random
+0:0 gap_adv_policy_all
+0:0 gap_adv_policy_whitelist_all
+0:0 gap_adv_policy_whitelist_connect
+0:0 gap_adv_policy_whitelist_scan
+0:0 gap_broadcast
+0:0 gap_directed_connectable
+0:0 gap_discover_generic
+0:0 gap_discover_limited
+0:0 gap_discover_observation
+0:0 gap_general_discoverable
+0:0 gap_limited_discoverable
+0:0 gap_non_connectable
+0:0 gap_non_discoverable
+0:0 gap_scan_policy_all
+0:0 gap_scan_policy_whitelist
+0:0 gap_scannable_connectable
+0:0 gap_undirected_connectable
+0:0 gap_user_data
+0:0 sm_bonding_key_addr_public
+0:0 sm_bonding_key_addr_static
+0:0 sm_bonding_key_csrk
+0:0 sm_bonding_key_edivrand
+0:0 sm_bonding_key_irk
+0:0 sm_bonding_key_ltk
+0:0 sm_bonding_key_masterid
+0:0 sm_io_capability_displayonly
+0:0 sm_io_capability_displayyesno
+0:0 sm_io_capability_keyboarddisplay
+0:0 sm_io_capability_keyboardonly
+0:0 sm_io_capability_noinputnooutput
+0:0 system_endpoint_api
+0:0 system_endpoint_script
+0:0 system_endpoint_test
+0:0 system_endpoint_uart0
+0:0 system_endpoint_uart1
+0:0 system_endpoint_usb
+0:0 xgatt_led
+0:0 STATE_STANDBY
+0:0 STATE_CONNECTING
+0:0 STATE_FINDING_SERVICES
+0:0 STATE_FINDING_ATTRIBUTES
+0:0 STATE_SUBSCRIBING_NS
+0:0 STATE_SUBSCRIBING_DS
+0:0 STATE_LISTENING
+0:0 FOUND_NONE
+0:0 FOUND_DS
+0:0 FOUND_NS
+0:4 find_state
+4:4 device_state
+8:4 att_handle_ns_ccc
+12:4 att_handle_ns
+16:4 att_handle_ds_ccc
+20:4 att_handle_ds
+24:4 att_handle_cp
+28:4 att_handlesearch_start
+32:4 att_handlesearch_end
+36:4 ancs_connection
+40:4 endpoint
+44:30 get_notification_attr_buf
+74:2 indicate_buf
+76:15 atoi_buf
+91:4 atoi_buf_pos
+95:4 atoi_buf_len
+99:4 num
+103:30 adv_data
diff --git a/iOS/iBeacon/Bluegiga/attributes.txt b/iOS/iBeacon/Bluegiga/attributes.txt
new file mode 100644
index 0000000..e69de29
diff --git a/iOS/iBeacon/Bluegiga/gatt.xml b/iOS/iBeacon/Bluegiga/gatt.xml
new file mode 100644
index 0000000..fc4500b
--- /dev/null
+++ b/iOS/iBeacon/Bluegiga/gatt.xml
@@ -0,0 +1,47 @@
+
+
+
+
+ Generic Access Profile
+
+
+
+
+ iBeacon
+
+
+
+
+
+ 0200
+
+
+
+
+ Device Information
+
+
+
+ Bluegiga/JWJ
+ Manufacturer Name String
+
+
+
+
+ 1.0
+ Model Number String
+
+
+
+
+ 1.0
+ Firmware Revision String
+
+
+
+
+ 0.1
+ Hardware Revision String
+
+
+
diff --git a/iOS/iBeacon/Bluegiga/hardware.xml b/iOS/iBeacon/Bluegiga/hardware.xml
new file mode 100644
index 0000000..9cbe8a8
--- /dev/null
+++ b/iOS/iBeacon/Bluegiga/hardware.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/iOS/iBeacon/Bluegiga/image.hex b/iOS/iBeacon/Bluegiga/image.hex
new file mode 100644
index 0000000..c0c30c6
--- /dev/null
+++ b/iOS/iBeacon/Bluegiga/image.hex
@@ -0,0 +1,8195 @@
+:020000040000fa
+:100000000200de021003000000000002100b0000de
+:10001000000000021013000000000002101b00008e
+:10002000000000021023000000000002102b00005e
+:10003000000000021033000000000002103b00002e
+:10004000000000021043000000000002104b0000fe
+:10005000000000021053000000000002105b0000ce
+:10006000000000021063000000000002106b00009e
+:10007000000000021073000000000002107b00006e
+:10008000000000021083000000000002108b00003e
+:10009000000000020ce31200f0b900030200d8e4f3
+:1000a00090000278a579018002f0a3d8fcd9fa90db
+:1000b00000a6aa82ab839000f6780979018015e446
+:1000c00093a3ac82ad838a828b83f0a3aa82ab8395
+:1000d0008c828d83d8e9d9e7120306120d0275d000
+:1000e0000075813f75188075931e5392fe0200962d
+:1000f00079015392fe220010000000000200bb01b3
+:1001000002e722c0925392fec082c08389828a8312
+:10011000bb0003e08002e493d083d082d09222bb64
+:100120000015c0925392fec082c0838a838982f0f8
+:10013000d083d082d09222bb0101f722cac0e0e670
+:10014000f30908dafad0e0fa22cac0e0e0f208a324
+:10015000dafad0e0fa22600c08c6c313c618c61338
+:10016000c6d5e0f422700422600d18c6c333c60859
+:10017000c633c6d5e0f41822e4735392fed083d080
+:10018000822518f8c518c39824fbcef208e520f2a2
+:1001900008e9c0e07908e709f208defad0e0f9eff3
+:1001a000f208d0e0fed0e0f208eef208e473a818fe
+:1001b000e2fe08e208f520e9c0e07908e208f70964
+:1001c000dffae208ffd0e0f9e208c0e0e208c0e0b0
+:1001d00088185392fe22e584f208e585f222e208af
+:1001e000f584e2f585227403800474028000c9c09e
+:1001f000e0e518c399f518c912013cd0e0f9227462
+:10020000038000c8c0e0e518c398f518c81201497a
+:10021000d0e0f8227400f5d374022408f5d253928a
+:10022000fe22a2afe433f8c2af5392fe906270e0b8
+:10023000a2e740f5e9c333906272f0906270e0d2b9
+:10024000e0f0e0a2e740fbe8a2e092af2274fa12ed
+:10025000017aa2af33f8c2afed900002f0eca3f048
+:10026000a37462f0a37473f0a3e4f0e9a3f0a374a1
+:1002700012f0a37442f0eb906272f0ea906271f0b7
+:100280007400f5d575d40275d601906270e0d2e1a4
+:10029000f0e0a2e740fbe8a2e092af7f010201aeee
+:1002a0005392fe906276e05470643070047803805c
+:1002b000027807e5c7f988c790ff00e090001af0c0
+:1002c00089c7a2e05004788080027800e8f5c6e58e
+:1002d0009efce86c70f99062707408f02274fa1257
+:1002e000017af9800c8a828b83e029f9a3aa82ab78
+:1002f00083ecfeedffee24ff1cef34fffdee4f70ac
+:10030000e47f010201ae5392fe900001e090001bd9
+:10031000f01202a0e5c7ff75c7007c007d707a006f
+:100320007b901202dde924a5fe8fc77f01e5c7f5aa
+:10033000088fc77c007d807a007b801202dde92e69
+:10034000fe8508c70fefc3940340e2ee7027e59dda
+:1003500054186410700890001be0a2e04017900051
+:10036000017403f005929000a6e0f582a3e0f58306
+:100370000592120178900001e4f012021412060fa7
+:1003800012063f12069f80fb74f812017a151815a9
+:1003900018a8181201d690620ee0fee4f0906211e7
+:1003a000e0f50aa2e450197480f09000237407f07d
+:1003b000120582600612058d120178900023e4f088
+:1003c000e50aa2e2500b906211e4f0900023f08065
+:1003d0006f900023e0f87402687051906216e0ff9d
+:1003e00090003a1201ffeff91205698f0890003d65
+:1003f00012057712059c1205856004744080027412
+:1004000048906211f0e849701012058260061205ea
+:100410008d120178900023e4f0ee90620ef0a8189f
+:100420001201de051805187f030201ae740668701c
+:100430000612058d120178900023e0600302050288
+:10044000e50aa2e050d3750832750900750a0078f4
+:10045000081201e6790812056990003fe4f0a3f064
+:10046000900032e054e0600e24e0606824a0603e1a
+:1004700024e0606f8030a3e014601c24fe6013242d
+:10048000fe600a24fc601524fe601680191209ea39
+:10049000805e1209e580591209e08054120b198020
+:1004a0004f120c47804a9000237404f0804aa3e066
+:1004b000600e24fa600f24fe601024fe601180e6b6
+:1004c00012082b802b120a328026120af380211286
+:1004d0000be9801c90003f74c7f0a37406f012066d
+:1004e000c7800d90003f7481f0a37407f01207815c
+:1004f000900023e064047004746080027440906291
+:1005000011f0900023e0f8740168704c750a0290b5
+:10051000003de0f8a3e0f9c3e89420e99400500717
+:10052000e8ff750a0a80027f2090003a1201ffef6f
+:10053000f97a207b621206660518051805188f08df
+:1005400012059c120577e50a906211f0efc3942022
+:1005500040030204190204097405686003020419c7
+:1005600012058d1201780204197a207b6212064b63
+:1005700005180518051822c3e09508f0a3e09400bb
+:10058000f02290003fe0f8a3e0f9e84922059290bc
+:10059000003fe0f582a3e0f58305922290003ae067
+:1005a000f9a3e0faa3e0fbe92508f9ea3400fa90a0
+:1005b000003ae9f0a3eaf0a3ebf0a322c008c009d7
+:1005c0007800880874242508f58274003400f583c7
+:1005d000e95392fef008e8c3940540e678008808e5
+:1005e00074292508f58274003400f583e9f008e8e1
+:1005f000c3940540e9d009d008225392fe90001c14
+:100600007402f0a3e4f0900023f079030205bcc06b
+:1006100008c00975082175090078081201ea7c00f4
+:100620007d007a417b00120d050518051890001c0d
+:100630007402f090620f04f0e0a2e750fb80b65322
+:10064000f4fed29043fe015392fe22eec0e0120669
+:1006500087600c5392fee012011f12067c70f4d0ea
+:10066000e0fe5392fe22eec0e0120687600c1200fc
+:10067000fe5392fef012067c70f480e3e924010937
+:10068000ea3400fa18e8228a828b83e9f8a918e391
+:10069000fc09e3fd09e3feecf9edfaeefbe822eede
+:1006a000c0e05392fe906206e0f8906202e0fe9095
+:1006b0006204e0e8a2e250031205faeea2e0500361
+:1006c000120388d0e0fe2274f712017a900033e022
+:1006d000700302077114600302076a90001b740123
+:1006e000f0900023e0f87030900038e0f8a3e0f9d3
+:1006f000e84970059000ac807b90003a7462f0a3ea
+:100700007400f0a3e4f0a3e8f0a3e9f090002374f0
+:1007100002f09000ac048063740268704d90003465
+:10072000e02440f508a3e03400f509e508541f7003
+:100730001285080a85090b7405780a120156a90a60
+:10074000120222900038e0240354fcf97c627d0000
+:1007500074047808120165aa08ab0912024d9000d2
+:1007600023e4f09000ac74058011900023740480a1
+:100770000a90001b7402f0900023e4f07f04020151
+:10078000ae5392fe900033e06403701a90003a7406
+:10079000a8f0a37400f0a3e4f0a37406f0a3e4f0bf
+:1007a00090002304f02280009000237404f0225370
+:1007b00092fe9000a2e4f0a3740ff02274fa1201ea
+:1007c0007a15181518a8181201d6eafcebf87a0069
+:1007d0007b00088030e86045a3e493fdec6d603950
+:1007e000e96d700b05929000a2e0faa3e0fb1853ac
+:1007f00092fe9000a2e02efea3e03400ff9000a243
+:10080000eef0a3eff09000a2e0f584a3e0f585e41c
+:10081000059293fe70bfe860047a007b00a818126e
+:1008200001de051805187f010201aec008120bdbbe
+:100830007011a3e0f8a3e0700aa3e064027002a3c1
+:10084000e0600890002374040208fb900032e0246a
+:1008500080600814602a14603780e8e870e5900032
+:100860002fe060047801800278009000a4e8f0a3f3
+:10087000e4f090002ee060689000a4e04402805c08
+:1008800090001ce0640470bb9000a4e4f0a3804fcf
+:10089000e8547ff50890001ce0640470a6e508c3e6
+:1008a0009406509f741c2508f58274003400f5836b
+:1008b000e854806010a3a3a3a3a3a3a3e0640370e0
+:1008c0001578018013e582240cf582e5833400f568
+:1008d00083e0640360eb78009000a4e8f0a3e4f008
+:1008e000900023e06404601490003a74a4f0a374b0
+:1008f00000f0a3e4f0a37402120c3ef0d0082274be
+:10090000f912017a15181518a8181201d6e9fa90eb
+:100910000038120be1701090001ce064046010902d
+:100920000036120be1600890002374040209cf9096
+:100930000032e0541f600814600d14601580e890c8
+:100940000034e06401600579000209d2ea90002ecb
+:10095000807d900036e0547ff508900034e070e729
+:10096000e508c3940650c0e50890620ef0741c259b
+:1009700008f58474003400f585900036e0548060fa
+:1009800021ea6004741080027440906211f0ea6001
+:100990000474038001e40592a3a3a3a3a3a3a3f07b
+:1009a0008026ea6004742080027480906214f0ea69
+:1009b000600474038001e4c0e0e584240cf582e562
+:1009c000853400f583d0e0f05392fe90620ee4f09f
+:1009d0007901a8181201de051805187f020201ae80
+:1009e00079000208ff79010208ff5392fe90003659
+:1009f000120be17018a3120be17012900034e0f8b2
+:100a0000a3e0f9e85480fae9fbea4b6002801ce8b5
+:100a1000906200f090001c6009e06402700c7403a6
+:100a2000f022e0640370037402f022900023740447
+:100a3000f02274f812017a1207af900034e0faa3a2
+:100a4000e0f914600814600d14603080367b007a81
+:100a50000079018032eafb7a007902120adbe9248c
+:100a6000020909ea3400fa89828a83e493f874015e
+:100a700093f990003de8f0a3e98019eafb7a007948
+:100a80000380047b007a00120adba37b801200fe45
+:100a9000a3f0a3e4f090003ae0fca3e0fda3e0fea5
+:100aa000ec4d4e900023700474048029e0640460cf
+:100ab00025900038e0faa3e0fb90003de0f8a3e0c9
+:100ac000f9c3ea98eb99500890003deaf0a3ebf0e7
+:100ad0009000237401f07f030201ae1207bc900066
+:100ae0003aeaf0a3ebf0a37480f090003ae0f9a3a7
+:100af000e0fa22120bdb7010a3120be1700aa3e0e4
+:100b000064017002a3e06003020a2b90003a741d96
+:100b1000f0a37400120c34f02274f812017a9000e1
+:100b20001ce064026014900036120be1700ca312fa
+:100b30000be17006900035e060099000237404f02a
+:100b4000020bca1207af900034e060707b007a009d
+:100b500079021207bc8a088b09ae08af09ee4f6014
+:100b6000d9900034e0f88e828f83a3a3a3a3a3e4db
+:100b700093c0e0e8fad0e06a70d290001c7404f0f0
+:100b8000e8a3f0750a008e828f83a3a3a3a3e49346
+:100b9000f8e50ac3985033850a08741e2508f582c3
+:100ba00074003400f583e4f07b007a00120bcd6012
+:100bb00007a3a3a3e49370f0050a80ca90001df078
+:100bc00090001c7403f0f91205bc020ad6790412d5
+:100bd00007bc8a828b83e5824583225392fe900074
+:100be00034e0f8a3e0f9e8492274f812017a9000a1
+:100bf0001ce064047019900032e064817011120be3
+:100c0000de700c900038e064017002a3e060079091
+:100c100000237404801a900036e0241ef508a3e037
+:100c20003400f50990003ae508f0a3e509120c3408
+:100c3000f0020ad6f0a3e4f0a304120c3e22f0a3c3
+:100c4000e4f0900023042274f912017a15181518a3
+:100c5000a8181201d690001ce064047010900032b5
+:100c6000e064017008900038120be16007900023e7
+:100c7000740480671207af7b007a007902120bcff1
+:100c8000600fa3a3a3a3a3e493f890001de06870f2
+:100c9000e67b007a02120bcd60d30592900034e01f
+:100ca000f8a3e0f9900036e0faa3e0fb85828485a2
+:100cb0008385a3a3e493fcea6c7001eb600f0592bb
+:100cc000a3a3a3e493fce86c7001e970c4741e2a2a
+:100cd000f58274003bf583e85392fef00209d2538b
+:100ce00092fe2274fa12017a15181518eafeebff2b
+:100cf000a818eef208eff2aa18ab937901120cdff4
+:100d000080ee02009374fa12017ae5182406f8e2e4
+:100d1000fe08e2ffecf88a828b83800be8f0a3eefa
+:100d200024ff1eef34ffffee4f70f17f010201ae92
+:100d3000ffffffffffffffffffffffffffffffffc3
+:100d4000ffffffffffffffffffffffffffffffffb3
+:100d5000ffffffffffffffffffffffffffffffffa3
+:100d6000ffffffffffffffffffffffffffffffff93
+:100d7000ffffffffffffffffffffffffffffffff83
+:100d8000ffffffffffffffffffffffffffffffff73
+:100d9000ffffffffffffffffffffffffffffffff63
+:100da000ffffffffffffffffffffffffffffffff53
+:100db000ffffffffffffffffffffffffffffffff43
+:100dc000ffffffffffffffffffffffffffffffff33
+:100dd000ffffffffffffffffffffffffffffffff23
+:100de000ffffffffffffffffffffffffffffffff13
+:100df000ffffffffffffffffffffffffffffffff03
+:100e0000fffffffffffffffffffffffffffffffff2
+:100e1000ffffffffffffffffffffffffffffffffe2
+:100e2000ffffffffffffffffffffffffffffffffd2
+:100e3000ffffffffffffffffffffffffffffffffc2
+:100e4000ffffffffffffffffffffffffffffffffb2
+:100e5000ffffffffffffffffffffffffffffffffa2
+:100e6000ffffffffffffffffffffffffffffffff92
+:100e7000ffffffffffffffffffffffffffffffff82
+:100e8000ffffffffffffffffffffffffffffffff72
+:100e9000ffffffffffffffffffffffffffffffff62
+:100ea000ffffffffffffffffffffffffffffffff52
+:100eb000ffffffffffffffffffffffffffffffff42
+:100ec000ffffffffffffffffffffffffffffffff32
+:100ed000ffffffffffffffffffffffffffffffff22
+:100ee000ffffffffffffffffffffffffffffffff12
+:100ef000ffffffffffffffffffffffffffffffff02
+:100f000012010002000000205824feff0000010230
+:100f1000030109021b0001010480250904000000ef
+:100f2000fe01020409210d03e84000010104030948
+:100f300004120342006c00750065006700690067d9
+:100f400000610016034c006f007700200045006e22
+:100f50000065007200670079000a03310032003337
+:100f6000003400080344004600550000ffffffff67
+:100f7000ffffffffffffffffffffffffffffffff81
+:100f8000ffffffffffffffffffffffffffffffff71
+:100f9000ffffffffffffffffffffffffffffffff61
+:100fa000ffffffffffffffffffffffffffffffff51
+:100fb000ffffffffffffffffffffffffffffffff41
+:100fc000ffffffffffffffffffffffffffffffff31
+:100fd000ffffffffffffffffffffffffffffffff21
+:100fe000ffffffffffffffffffffffffffffffff11
+:100ff000ffffffffffffffffffffffffffffffff01
+:101000000210f70231b7ffffffffff023aa6ffff12
+:10101000ffffff023b45ffffffffff023bf9ffff22
+:10102000ffffff0227d4ffffffffff023946ffff4c
+:10103000ffffff023cdeffffffffff023b9dffffc4
+:10104000ffffff023b14ffffffffffffffffffff5c
+:10105000ffffff02319dffffffffffffffffffffcd
+:10106000ffffffffffffffffffffff023a47ffff0a
+:10107000ffffff023c6cffffffffff023a78ffff1c
+:10108000ffffff0231bb7582fe75837f7400121172
+:1010900012121133b900030210e1e479347802b876
+:1010a00000028004f709d8fce490030278857907f0
+:1010b0008002f0a3d8fcd9fa900986aa82ab83906b
+:1010c000113978c379028015e493a3ac82ad838a89
+:1010d000828b83f0a3aa82ab838c828d83d8e9d9db
+:1010e000e77582a27583e774021211127582f0759a
+:1010f000837f740012111275d00075813f753180a5
+:10110000753202753303759f0075931e5392fe026c
+:101110001091c09ff59fe473d09f225392fed0831d
+:10112000d082c09fe493c0e0740193c0e074029346
+:10113000f59f2279015392fe220300000200007bfa
+:10114000140102030000fb153efe0e00c3a88ee84a
+:10115000b19dcf7f5eb98b9f41efb055f401fa008e
+:10116000960064004b0032001e001400d6be898e2b
+:10117000000106021213151429417671ffc1fbe824
+:101180004c90728be7b3518963ab232302841872ae
+:10119000aa612f3b51a8e53749fbc9ca0c18532c4b
+:1011a000fd45e300400000fffffffffaffffff00e7
+:1011b0000080006200000007000000050006000734
+:1011c0000000000100010000010001020203000212
+:1011d0000000000000020201000240420f0019005e
+:1011e0000000093d0000eafffffffb349b5f800029
+:1011f000008000100000000000005f4b694b734b43
+:101200007d4b874b914b9b4ba54baf4bb94bc34b86
+:10121000cd4bd74be14beb4bf54bff4b094c134cf4
+:101220001d4c274c314c3b4c454c4f4c594c634c5e
+:101230006d4c774c814c8b4c954c9f4ca94cb34cce
+:10124000bd4cc74cd14cdb4ce54cef4cf94c034d3d
+:101250000d4d174d214d2b4d354d3f4d494d534da6
+:101260005d4d674d714d7b4d854d8f4d994da34d16
+:10127000ad4db74dc14dcb4dd54ddf4de94df34d86
+:10128000fd4d074e114e1b4e254e2f4e394e434eef
+:101290004d4e574e614e6b4e754e7f4e894e934e5e
+:1012a0009d4ea74eb14ebb4ec54ecf4ed94ee34ece
+:1012b000851c8b1c911c971c9d1ca31c0d1cc91dff
+:1012c000ab1d7d1e171e1d1e4517031431197b14ff
+:1012d000291ecf1d451d6b1e3b0601ffffff0000b1
+:1012e000000080ffffffff0000000001000000047d
+:1012f00000000003000000c000000012111ba5ae9a
+:101300000212111bbdae0212111bf5ae0212111b0f
+:1013100042af0212111b4eaf0212111b73af021229
+:10132000111b9baf0212111bb7af0212111b2cb085
+:101330000212111b51b00212111baeb00212111b8e
+:101340002cb50212111bfdb50212111b54e802123a
+:10135000111b6ce80212111bd0e80212111b20e9cc
+:101360000212111bf0d10212111b58d20212111bd2
+:101370008fd20212111ba9d20212111bd3d2021258
+:10138000111bedd20212111b21d30212111b4dd3de
+:101390000212111b9ad30212111b33d40212111b19
+:1013a00057d40212111be7d40212111b39d50212b5
+:1013b000111b53d50212111b68d50212111b9ad5ad
+:1013c0000212111bd1d50212111b72d60212111b6f
+:1013d000edc10212111b1ec20212111b4cc20212dd
+:1013e000111b55c20212111bb1c20212111b71c393
+:1013f0000212111bebc30212111b48c40212111b73
+:101400006bc40212111bd5c40212111bdac50212e1
+:10141000111be5c50212111b0ac60212111b6dc673
+:101420000212111bdcc60212111b0ec70212111b85
+:10143000807f0012111ba07f0012111bc97f0012b8
+:10144000111b23ec0212111b63ec0212111bd4ebd3
+:101450000212111bb7ec0212111bceec0212111b6f
+:1014600078ea0212111ba5ea0212111b3274001253
+:10147000111b74740012111b8b740012111bab74be
+:101480000012111bf4740012111b4d750012111b78
+:10149000a1760012111bc9770012111b6b78001284
+:1014a000111b8f780012111bd1780012111b6b7960
+:1014b0000012111bae790012111b057a0012111bcc
+:1014c000187a0012111b087b0012111b2c7c0012d1
+:1014d000111ba07c0012111b00800112111ba7819f
+:1014e0000112111b24820112111b87830112111b8f
+:1014f000fc830112111b36840112111b0b85011292
+:10150000111b92850112111b86860112111b8887ff
+:101510000112111b6f880112111bbc890112111bd2
+:10152000368a0112111b9f8a0112111b138b0112a3
+:10153000111bc48b0112111b1c8c0112111bc08cbe
+:101540000112111b1e8d0112111bb08d0112111bf6
+:10155000078e0112111ba28e0112111b4c8f01125a
+:10156000111b01900112111bbc910112111b2e9431
+:101570000112111b7c940112111b1c950112111bed
+:101580006c950112111bba950112111b5a97011289
+:10159000111bf4970112111b70980112111bcc99a9
+:1015a0000112111b379a0112111b2c9b0112111be6
+:1015b0001e9c0112111b5d9d0112111bae9e01129a
+:1015c000111b88a00112111b51a30112111bdfa3d3
+:1015d0000112111b6da40112111b4ca50112111b4c
+:1015e000c1a50112111b3baa0112111bb8ac0112bb
+:1015f000111b8fad0112111bc4af0112111bf3b0ef
+:101600000112111b32b20112111b49b20112111b3e
+:1016100078d60212111bb6d60212111b1ed7021267
+:10162000111b4ad70212111b21d80212111bf8d824
+:101630000212111beafe0112111b2eff0112111bd7
+:10164000a6ff0112111b23b90112111b41b901128e
+:10165000111b5eb90112111b7bb90112111bcbb911
+:101660000112111b61ba0112111b2bbc0112111bbb
+:101670008dbc0112111bdabc0112111b15bd011228
+:10168000111b48bd0112111b93bd0112111bf9bda5
+:101690000112111b85be0112111b93be0112111bf9
+:1016a000fdbf0112111b2fc20112111b8cc20112ae
+:1016b000111bbec20112111bf3c30112111b31c554
+:1016c0000112111b4fc50112111b80c50112111b04
+:1016d000aac50112111b50c90112111b80c90112a8
+:1016e000111bdec90112111ba6ce0112111b05cf61
+:1016f0000112111b43cf0112111bcccf0112111b80
+:10170000b6d00112111b5cd30112111b78d4011247
+:10171000111bedd40112111bfed60112111b68d74b
+:101720000112111ba6d70112111bf6d70112111bb2
+:1017300043d80112111bd8d80112111b28d901124c
+:10174000111b83d90112111b8dd90112111bc6da8d
+:101750000112111b3edb0112111bffdb0112111bd9
+:1017600093dc0112111b61de0112111b83de0112d9
+:10177000111b81e00112111bb9e10112111b42e2a0
+:101780000112111b8de20112111b02e30112111b48
+:10179000e6e40112111bf7e40112111b01e501122d
+:1017a000111bdbe60112111b4ce70112111b82e732
+:1017b0000112111be6e70112111b82e80112111b35
+:1017c00009e90112111b6ae90112111b94e90112c6
+:1017d000111bcbe90112111b00ea0112111b1eeab9
+:1017e0000112111b86ea0112111b94ea0112111b4e
+:1017f000d3ea0112111b36eb0112111b82e3021214
+:10180000111b26e40212111b4ae40212111b95e47b
+:101810000212111bd4e40212111bf9ea0212111b6d
+:10182000e69a0212111b129b0212111b5e9b0212fe
+:10183000111bb89b0212111b349c0212111b819eba
+:101840000212111b769f0212111bdda10212111b45
+:10185000d4a20212111bb4a30212111b0ba5021277
+:10186000111b86a50212111bc7a60212111b98dbc1
+:101870000212111bc9db0212111b5bdc0212111bcd
+:101880004ddd0212111bed530012111b0a54001200
+:10189000111b35540012111ba8540012111bd454f3
+:1018a0000012111b08550012111b6f550012111b5d
+:1018b00099550012111b00560012111b5e560012a2
+:1018c000111b2f570012111ba1570012111b885911
+:1018d0000012111b1a5a0012111bf65c0012111b88
+:1018e000de600012111b21610012111b74610012d5
+:1018f000111b0b620012111bc9630012111b6d64d6
+:101900000012111bb2640012111bfe640012111ba5
+:1019100066650012111b90650012111be365001231
+:10192000111b17660012111b74670012111bb86897
+:101930000012111bc9680012111b046a0012111b4e
+:101940001a6a0012111b606a0012111b246b00122c
+:10195000111b396b0012111b6b6b0012111bcc6c2d
+:101960000012111b8a6d0012111bbe6d0012111b9b
+:10197000056e0012111ba46e0012111bfb6e0012eb
+:10198000111bf76f0012111b65700012111ba9705b
+:101990000012111b81710012111ba3730012111b85
+:1019a000d3730012111bc97d0012111bd67d0012ca
+:1019b000111bf97d0012111b3c7f0012111b497f86
+:1019c0000012111b777f0012111b6bc70212111b33
+:1019d000dbc70212111b08c80212111b52c80212e7
+:1019e000111b1dc90212111bc0ca0212111b1acbf6
+:1019f0000212111b28cb0212111b33cc0212111b35
+:101a00009ccc0212111b4ce90212111b7ae9021242
+:101a1000111baae90212111befdd0212111b7ade63
+:101a20000212111bb0de0212111b21df0212111b68
+:101a3000c5df0212111bd8df0212111b3ed90212a0
+:101a4000111b54d90212111b00800212111b1580a8
+:101a50000212111b04810212111b1c810212111ba4
+:101a60002b810212111b41810212111b4d810212a6
+:101a7000111b8c810212111bcf810212111b2a82b1
+:101a80000212111b58820212111bbc820212111b7e
+:101a9000d8820212111b14830212111b2c83021212
+:101aa000111bbf830212111b33840212111b7b8492
+:101ab0000212111bb4840212111b34850212111b75
+:101ac0006f850212111b9e850212111bf7850212ef
+:101ad000111b3f860212111b66860212111bb38670
+:101ae0000212111b0e870212111b11870212111b09
+:101af00067870212111bb8870212111bf0870212ae
+:101b0000111b28880212111b5f880212111b878883
+:101b10000212111b90880212111bad880212111bb8
+:101b2000d8880212111b01890212111b418902126d
+:101b3000111b6e890212111bba890212111bf38943
+:101b40000212111b7f8a0212111b2d8b0212111b14
+:101b50007c8b0212111bdc8b0212111be78b021211
+:101b6000111b118c0212111b1f8c0212111bbc8c39
+:101b70000212111b468d0212111b948d0212111bb1
+:101b8000ac8d0212111bca8d0212111bec8d0212b8
+:101b9000111b0d8e0212111b298e0212111b9f8e1a
+:101ba0000212111be28e0212111b5d8f0212111b19
+:101bb000738f0212111bf78f0212111b2690021253
+:101bc000111b35900212111b7d900212111b8c907b
+:101bd0000212111ba4900212111bd0900212111bb1
+:101be00000910212111b31910212111b4491021239
+:101bf000111b7c910212111be2910212111b109217
+:101c00000212111b3e920212111b4a920212111b68
+:101c100050920212111b31940212111bba9402123b
+:101c2000111b23950212111b59950212111b9e952f
+:101c30000212111be2950212111b26960212111bb1
+:101c4000a5960212111b20970212111b7a970212fd
+:101c5000111bfa970212111b42980212111bf498e1
+:101c60000212111bb4990212111ba49a0212111b29
+:101c7000a79a0212111bbc9a0212111bd19a0212ce
+:101c8000111b31e00212111b7de00212111b93e0c7
+:101c90000212111ba9e00212111bbfe00212111b5c
+:101ca000e0e00212111bf6e00212111b0ce102121d
+:101cb000111b29b60212111b48b60212111b8fb656
+:101cc0000212111bd0b60212111beeb60212111b2a
+:101cd0006ab70212111bd7b70212111b0fb80212fa
+:101ce000111b6db80212111b88b80212111bcbb860
+:101cf0000212111b29b90212111b40b90212111b49
+:101d000062b90212111b8db90212111bacb9021279
+:101d1000111bd8b90212111b11ba0212111b38bac9
+:101d20000212111b6bba0212111b7aba0212111b9a
+:101d300083ba0212111bf9ba0212111b21bc021242
+:101d4000111bdbcc0212111bb9cd0212111b9cce50
+:101d50000212111b2ecf0212111b91cf0212111b66
+:101d6000decf0212111b26d00212111b47d0021225
+:101d7000111b68d00212111b80d00212111b98d0c7
+:101d80000212111be8d00212111b3bd10212111bcf
+:101d90008fd10212111bc2e60212111befe60212d2
+:101da000111b0eec0112111b6bf60112111b1ef818
+:101db0000112111b26e50212111b94e50212111be0
+:101dc000b8e50212111b0ce60212111b61e60212a9
+:101dd000111b9fe60212111bb8e60212111be3a6ab
+:101de0000212111b00a70212111b1ba80212111bc9
+:101df0007ca80212111b27a90212111ba6aa02120b
+:101e0000111b29ab0212111b70ab0212111bd7abb5
+:101e10000212111b32ac0212111b8bac0212111bed
+:101e200001ad0212111b79ad0212111b18ae021284
+:101e3000111bb8f80112111b10fb0112111b48fbfa
+:101e40000112111b64fb0112111babfb0112111bd0
+:101e5000c5fb0112111bf1fb0112111b10fc011239
+:101e6000111b38fc0112111b7ffc0112111b9cfc81
+:101e70000112111b61fd0112111b95fd0112111bb5
+:101e8000a6fd0112111bdbe10212111b42e202123c
+:101e9000111ba2e20212111ba4e20212111bbae2f0
+:101ea0000212111b07e30212111be7e90212111bb8
+:101eb00005ea0212111b40bc0212111b19bd0212cd
+:101ec000111bfcbd0212111b04be0212111b0cbe21
+:101ed0000212111b65be0212111b06bf0212111b5a
+:101ee00005c00212111b38c00212111bffc00212e2
+:101ef000111b5dc10212111b86100012111b69eb30
+:101f00000212111b6fec0212111be6ec02e066706c
+:101f10001008a3e066700a08a3e066700408a3e056
+:101f20006622c3e7960809e7960809e7960809e7d5
+:101f300096a2d265d03322c3e09608a3e09608a308
+:101f4000e09608a3e096a2d265d03322c021c3e078
+:101f500096f52108a3e096422108a3e096422108c5
+:101f6000a3e0964221a2d265d033e5217001d3d0ff
+:101f70002122c3e09608a3e09608a3e09608a3e018
+:101f80009622c021c3e096f52108a3e096422108dd
+:101f9000a3e096422108a3e09645217001d3d02109
+:101fa00022bb0102e722c0925392fec082c0838905
+:101fb000828a83bb0003e08002e493d083d082d086
+:101fc0009222bb0015c0925392fec082c0838a83c6
+:101fd0008982f0d083d082d09222bb0101f72208ff
+:101fe0000808eac0e0ebc0e086f0e7a4fa1809862a
+:101ff000f0e7a42afa180986f0e7a42afa18098655
+:10200000f0e7a42afa1986f0e7a4fbe5f02afa190a
+:102010000886f0e7a42bfbe5f03afa190886f0e70a
+:10202000a42bfbe5f03afa18180986f0e7a4c5f0ee
+:102030002bfbe43afa1908e7c5f0c6a426f6e5f04a
+:102040003bfbe43afa1886f0e7a4f6e5f00826f63a
+:10205000e43b08f6e43a08f6d0e0fbd0e0fa22e4ec
+:10206000cfc0e0e4cec0e0e4cdc0e0e4ccc0e07599
+:10207000f020c3e633f608e633f608e633f608e662
+:1020800033f6181818ec33fced33fdee33feef3366
+:10209000ffc3ec9709ed9709ee9709ef9719191906
+:1020a000400fffec97fc09ed97fd09ee97fe19191b
+:1020b00006d5f0beecf709edf709eef709eff719d1
+:1020c0001919d0e0fcd0e0fdd0e0fed0e0ff2212f4
+:1020d000213718181812205f1221261919192212f7
+:1020e0002126191919080808e618181820e7e0121f
+:1020f000205f12213718181822090909e719191940
+:1021000020e7dc080808e618181820e70302205f1b
+:1021100012213718181812205f12213718181812b8
+:10212000212619191922e4c397f709e497f709e45e
+:1021300097f709e497f722e4c396f608e496f608c1
+:10214000e496f608e496f6226017080808c6a2e7a7
+:1021500013c618c613c618c613c618c613c6d5e0cc
+:10216000e9226016080808c6c313c618c613c618a5
+:10217000c613c618c613c6d5e0ea227009080808b7
+:10218000226016181818c6c333c608c633c608c658
+:1021900033c608c633c6d5e0ea22e627f60809e6c4
+:1021a00037f60809e637f60809e637f622e026f69c
+:1021b00008a3e036f608a3e036f608a3e036f622d8
+:1021c000e026f008a3e036f008a3e036f008a3e02c
+:1021d00036f022c3e697f60809e697f60809e6976f
+:1021e000f60809e697f622c3e0c696f608a3e0c60d
+:1021f00096f608a3e0c696f608a3e0c696f622c3b4
+:10220000e096f008a3e096f008a3e096f008a3e0bb
+:1022100096f022e056f608a3e056f608a3e056f63c
+:1022200008a3e056f622e056f008a3e056f008a313
+:10223000e056f008a3e056f022e647f60809e64724
+:10224000f60809e647f60809e647f622e046f008f0
+:10225000a3e046f008a3e046f008a3e046f022e041
+:1022600066f608a3e066f608a3e066f608a3e06653
+:10227000f622e066f008a3e066f008a3e066f00846
+:10228000a3e066f022e0f608a3e0f608a3e0f60873
+:10229000a3e0f622e493f608740193f6087402931f
+:1022a000f608740393f622e6f008a3e6f008a3e626
+:1022b000f008a3e6f022e0faa3e0fba3e0fca3e031
+:1022c000fd22eaf0a3ebf0a3ecf0a3edf022cac0ec
+:1022d000e0e6f0a308dafad0e0fa22cac0e0e0a310
+:1022e0000592f0a30592daf6d0e0ca22cac0e0e473
+:1022f00093a30592f0a30592daf5d0e0ca22539297
+:10230000fefae9fb7921e7f0a309dafae8f0a3eb9a
+:10231000f9f0a3ecf0a3edf0a3eef0a3eff0a3e54a
+:1023200020f0a3e5f0f0a3e592f0a3e584f0a3e5a7
+:1023300085f0a3e581f0a3e531f0a3e532f0a3e554
+:1023400033f0a3d0e0fad0e0f0a3caf0eac0e0e0b6
+:10235000c0e07a007b00225392fecac0e0ebc0e0ee
+:102360007921e0f7a309dafae0f8a3e0f9a3e0fca9
+:10237000a3e0fda3e0fea3e0ffa3e0f520a3e0f5ca
+:10238000f0a3e0c0e0a3e0f584a3e0f585a3d0e0ee
+:10239000f592d0e0fbd0e0fae0f581a3e0f531a3bf
+:1023a000e0f532a3e0f533a3d0e0d0e0e0c0e0a355
+:1023b000e0c0e0ea4b70027a0122c3e498f8e499a5
+:1023c000f91223fb8026c3e49afae49bfbe920e799
+:1023d000e91223fbe498f8e499f922c3e498f8e4bd
+:1023e00099f91223fbe498f8e499f9c3e49afae422
+:1023f0009bfb22eb20e7cfe920e7e0b90010bb0010
+:1024000008e88af084f8aaf022e4fbc8fa22eb700c
+:10241000227b10c833c8c933c9335007c39ac3db02
+:10242000f280069a50012adbeac833f4c8c933f4b3
+:10243000c9fa2275f008e4c833c8c933c933c99a48
+:10244000c99b5004c92ac93bd5f0ecfbc833f4c87a
+:10245000e4c9fa22600d08c6a2e713c618c613c65f
+:10246000d5e0f322600c08c6c313c618c613c6d540
+:10247000e0f422700422600d18c6c333c608c633c8
+:10248000c6d5e0f41822253210af08f53240021507
+:10249000338008f53240021533d2af22c0d0253246
+:1024a00010af08f532500205338008f532500205ae
+:1024b00033d2afd0d0222532f58210af08f53240aa
+:1024c0000215338008f53240021533d2af853383cd
+:1024d00022c5822532c582c583353310af07f53357
+:1024e0008582328007f533858232d2afc5832225bb
+:1024f00032f582e43533f583222532f584e4353331
+:10250000f58522e473c0e0e8c0e0e58124fcf8e64c
+:10251000a2e7d0e0f8d0e0225392fe2532c582c077
+:10252000e0e53334ffc583c0e0e532c3958224f88b
+:1025300010af088583338582328008858333858296
+:1025400032d2afcef0a3e520f0a37821e608f0a3c5
+:10255000defaeff0a3e58124faf8e608f0a3e60836
+:10256000f0a3e608f0a30808e608f0a3e608f0a345
+:1025700015811581d0e0fed0e0f815811581158117
+:10258000e8c0e0eec0e0225392fe2532c582c0e0f2
+:10259000e53334ffc583c0e0e532c3958224f910ea
+:1025a000af08858333858232800885833385823204
+:1025b000d2afcef0a3e520f0a37821e608f0a3dea9
+:1025c000faeff0a3e58124fbf8e608f0a3e608f0b3
+:1025d000a30808e608f0a3e608f0a315811581d04a
+:1025e000e0fed0e0f815811581e8c0e0eec0e02201
+:1025f0005392fe853383853282e0a3fee0a3f5206b
+:102600007821e0a3f608dffae0a3ffe0a3c0e0e052
+:10261000a3c0e0e0a3c0e0e0a3c0e0e0a3c0e010fe
+:10262000af08858232858333800885823285833383
+:10263000d2afd083d0825392fe0211185392fe85fe
+:102640003383853282e0a3fee0a3f5207821e0a366
+:10265000f608dffae0a3ffe0a3c0e0e0a3c0e0e0fb
+:10266000a3c0e0e0a3c0e010af08858232858333c9
+:102670008008858232858333d2afd083d082539253
+:10268000fe22c0925392fec0d02532c582c0e0e542
+:102690003334ffc583c0e0e532c3958224f210af26
+:1026a000088583338582328008858333858232d2e0
+:1026b000afc8f0a3e9f0a3eaf0a3ebf0a37921e718
+:1026c00009f0a3d8faecf0a3edf0a3eef0a3eff03d
+:1026d000a3d0e0f0a3d0e0f0a3d0e0f0a3e520f099
+:1026e000a3e5f0f0a3d0e0f0225392fe853383857a
+:1026f0003282e0c0e0a3e0f9a3e0faa3e0fba37814
+:1027000021e0f608a3dffae0fca3e0fda3e0fea3ce
+:10271000e0ffa3e0c0e0a3e0c0e0a3e0f5d0a3e0c9
+:10272000f520a3e0a3f5f0e0a3c0e010af08858397
+:10273000338582328008858333858232d2afd0e000
+:10274000d082d083f592d0e0f8d0e032e584f0a3d7
+:10275000e585f022e0a3f584e0f585227404800687
+:10276000740280027401c0e0f4041224b6d0e012b6
+:1027700022ce227404800a740380067402800274dc
+:1027800001c0e0f4041224b6d0e01222db22d08390
+:10279000d082e9c0e0e493a3c386f0c5f095f0f9d8
+:1027a00008e493a386f0c5f095f0700be493a3c3ff
+:1027b000994005e9048002a3e475f002a42582f59e
+:1027c00082e5f03583f583d0e0f9e493a3c0e0e43b
+:1027d00093c0e022c0e074f1122682759800e5a84b
+:1027e000f8c2af9004c6e0d2e1f0753400e8a2e789
+:1027f00092af1213377f010226e9c082c083539241
+:10280000fe906059e0f8900497e028f0906058e05e
+:10281000f8900498e028f090605a12283390605e97
+:1028200012283390605ce0f890049ae028f0d0839e
+:10283000d08222e0f8900499e028f022c082c08380
+:102840005392fe900497e4f0a3f0a3f0a380de740b
+:10285000f712258779001219a39003e912305bea79
+:10286000c398f8eb99f9e82404fee93400ff9003db
+:10287000f4e0fca3e0fdc3ee9cef9d402e9003f23c
+:10288000e0fca3e0fd9003f6e02af8a3e03bf9e8c2
+:10289000c39cf8e99df99003e9123046a3ecf0a33c
+:1028a000edf09003f4ecf0a3ed80289003e91230f2
+:1028b0006c9003f4c3e098f0a3e099f09003f41255
+:1028c000305b9003eb1230469003f0e0700474022a
+:1028d000800114f07ae77b031237a102312674f7e6
+:1028e000122587e9600924fe601c1460198030906d
+:1028f00003eee0a2e350099003f1e0602214801e91
+:1029000054fb440880189003eee0a2e2500c9003c0
+:10291000f1e064086009e004800454f74404f09096
+:1029200003efe070089003ed74fff0804890600ab8
+:10293000122d2c703d90618fe0c0e09003f1e0f823
+:102940007408c398f8d0e0b800028004c313d8fc20
+:10295000f52174ff6521700990600ae4f0a30480fa
+:1029600010e5212401f8e43400f990600ae8f0a3ae
+:10297000e9f012284f02312674f712258774fe12ef
+:1029800024b612274ce924fc600624fe6029800d41
+:102990009004b0e06401705f12170f805a90040c2d
+:1029a000e064017012900406e4f07b09123105fa2c
+:1029b00079001219eb8040900406e070089004043e
+:1029c00074fff0803279001219a38a218b22a8218a
+:1029d000a922900408e028faa3e039fb90618fe077
+:1029e000541ff8ea28f8eb3400f99004001230463e
+:1029f0007afe7b031237a102311874f7122587740f
+:102a0000fe1224b612274c90045512305be82410b5
+:102a1000fce93400fd90605ce060088c828d83e00e
+:102a2000d2e1f0e8242efae93400fbe82430f58402
+:102a3000e93400f58590605ae0700690605ee060d1
+:102a4000318c828d83e0d2e1f0e40592f0a3f0e8ce
+:102a50002420f582e9122d08122eaf74037821127a
+:102a600024738a828b83e521f0a3e522f0790002aa
+:102a70003118e8241cf582e9122d11fea3e0ff8530
+:102a80008482858583e02ef0a3e03ff08a828b83e9
+:102a90000592e0faa3e0fbc30592e09aa3e09b5005
+:102aa000cc88828983a3a3a3a3a3a3a385828485bf
+:102ab00083858c828d83e0a2e150047408800274c7
+:102ac0003e0592f07b02888289830592a3a3a3a38b
+:102ad000a3a3122d1e809874f512258774fe12246c
+:102ae000b612274c900455e0fea3e0ff8e848f853c
+:102af0000592a3a3a3a3a3a3a3a3e0fc7003022caa
+:102b0000dcee242cf582ef122d0812305b8e828fc2
+:102b100083a3a3a3a3a3a38582218583228e828f6f
+:102b200083a3a3a3a3a3a3a3aa82ab83ee243212fd
+:102b30002d0e687003a3e069701b74026c700302b1
+:102b40002c7d74016c607374096c60348a828b8391
+:102b50007422f0801dec146061147003022c7d243b
+:102b6000fa602a14601a146009147003022cbc0263
+:102b70002cdc7b02852182852283122d1e022cde15
+:102b8000906008e0a2e65003022cdc80e5ee2437da
+:102b9000122d01801388828983a3a3a3e0640370ac
+:102ba00003022cdc88828983122d2c70e88a828ba8
+:102bb00083e0641370bc74168098ee2453122d15b4
+:102bc000ee244afcef3400fdea24fff523eb34ff4a
+:102bd000f524e523687003e524697063ee244bf562
+:102be00082ef122d328e828f83a3a312306c8c82df
+:102bf0008d83e0c333f8e433f9e82403080808e9d7
+:102c0000340012303d90049fe4f0a3f0a3f0a3f051
+:102c1000900485e0a2e04003022cdc8c828d83e0ee
+:102c2000f875f0e2a4c8aaf075f004a42af9e82423
+:102c3000c0f8e93437f9906064123046022cdceabf
+:102c4000687002eb696003022cdc752309752400af
+:102c50007823122760ee2419122cf412249c90047d
+:102c600085e0a2e05007eefaeffb12165be4059256
+:102c7000f07b088521828522830592805ce824010f
+:102c800008e93400f9ee245a122d0e687003a3e00f
+:102c90006970497521057522007821122760ee249c
+:102ca00055fcef3400fdee2422122cf412249cee8d
+:102cb000faeffb121709e40592f08020eefaeffb21
+:102cc00012133de40592f00592900485e0a2e050d5
+:102cd0000b7b07852182852283122d247900853282
+:102ce000828533835392fe122754740212249c7ff0
+:102cf0000402263cfaef3400fb121f017402222466
+:102d00001cf582ef1235c5221235c5059222f582d7
+:102d1000ef123630221235c2e0faa3e0fb22122d68
+:102d200024790122e0fa79001219eb2212305fe8cf
+:102d300049221235c5122d392212305fe8c333f80b
+:102d4000e933f92274f812258774fe1224b612278b
+:102d50004c900455e0f584a3e0f585122ad7e9707c
+:102d6000481229fae97042e584242cf582e585129f
+:102d70002d112401f0a3e03400f0906008e0c0e0e1
+:102d8000e5842434f582e585122d04d0e0f0e58455
+:102d9000241cf582e585122d320592a3a3e028f0cc
+:102da000a3e039f0059212304c85328285338312cc
+:102db0002754740212249c7f0102263c74f71225ca
+:102dc0008774fe1224b612274c9004a4ea241cf542
+:102dd00084eb123035f8a3e0f9e8c333f8e9331295
+:102de0002e9dacf08522f0a42cfc8521f0e9a42cca
+:102df000f90592e028f8a3e039f98a828b83a3a32e
+:102e0000858284858385e80592f0a3e9f090049f8c
+:102e1000e0faa3e0fb900487e0f521a3e0f522eac5
+:102e20008521f0a4caacf08522f0a42cfc8521f009
+:102e3000eba42cfbe8c39af8e99bf9e824ff18e916
+:102e400034fff9858284858385e8f0a3e9f0900456
+:102e5000a1e0f8a3e0122e9d122e8d7a207b4e1257
+:102e600023fb882189220592e09521f0a3e0952299
+:102e7000f09004a612305b900487122eafe88521f3
+:102e8000f0a4c8122e8de8123026023117aaf08560
+:102e900022f0a42afa8521f0e9a42af922f9900463
+:102ea00087e0f521a3e0f522e88521f0a4c822e01f
+:102eb000f521a3e0f5222274f712258774fe12246f
+:102ec000b612274c900455e0fea3e0ffee2410f567
+:102ed00084ef123035a2e35008c2e3f005920230cd
+:102ee000208e828f830592a3a385822185832290e1
+:102ef0006062e0601079101219a385218285228317
+:102f0000eaf0a3ebf0122ad7e9600302302312297a
+:102f1000fae96003023023906008e0c0e0ee243458
+:102f2000122d01d0e0f09061d5e0f89061d7e06813
+:102f300005926005e0d2e28003e0c2e2f0059290e3
+:102f400004a1e024c0faa3e03437fb906062e060a3
+:102f50000e1239cb9004a61235ab12302680121215
+:102f600039b59004a6122d35906064e028f0a3e0f6
+:102f700039f0ee2429122d0e9004a3f0ee241e1237
+:102f80002d01122d2c60498e828f83a3a3a3a3a3ae
+:102f9000a3a3a3e0703aee2430122d15ea4b703053
+:102fa000ee2437122d15ea4b7026e8240108e93487
+:102fb00000f99004871230468521828522831230e1
+:102fc0005b9004a4123046eefaeffb122dbc804455
+:102fd0009004877401f0a3e4f0ee122cff12305b32
+:102fe000e8c333f8e93312306585218285228305f1
+:102ff0009290049fe0f8a3e0f90592e0c398f8a34b
+:10300000e099f9e824ff18e934fff9852182852247
+:1030100083123046123058ee242c122d0112306cdf
+:1030200012304c0231182440f8e93438f9906064c9
+:10303000e8f0a3e9223400f5850592e022f98e82ba
+:103040008f83a3a3a3a3e8f0a3e9f022900455e0a3
+:10305000faa3e0fb1237a12290048712305f22e02e
+:10306000f8a3e0f922f9852182852283e028f0a3e4
+:10307000e039f02274f712258774fe1224b6122765
+:103080004c803dc2e5f01230f3e0f808089004ae41
+:10309000e028f0123105c0e005921230f3d0e0f0e4
+:1030a0009004aee004f0a3e004f0a3e004f0900488
+:1030b000b2e0700c7401f07b007a0079001219eb19
+:1030c0009004afe0f890605ae06860259004aee0ac
+:1030d00004547ff52174802521f874603400f912be
+:1030e0003105a2e7888289830592e05096d2e58077
+:1030f0009480259004aee0547ff8748028f58274a3
+:10310000601235c522900455e02406f584a3e0340e
+:1031100000f5850592e022f08532828533831227ff
+:1031200054740212249c7f0202263c74f5122587f7
+:1031300074fe1224b612274c892105929004551270
+:103140003577858284858385a3a3a3a3a3a3e0a267
+:10315000e740479004b1e0f8906054e0c398f5224e
+:103160009004b1e02522f0ae82af838012ee2437c6
+:10317000faef3400fb121631ea4b60031218118586
+:10318000222374ff2523f5220470e2e521a2e64004
+:10319000097900eefaeffb121787022cdec0e0740b
+:1031a000f11226828535c675a70075a100795012e7
+:1031b00019c17f010226e975bf0032c0e0c0d07599
+:1031c000d008c092c082c084c083c085c0f085355d
+:1031d000c6e591fe759b00f4f591eea2e050031256
+:1031e0003074eea2e55004f912312beea2e7502024
+:1031f000e5a8f8c2af5392fe9004c6e0d2e01239bf
+:1032000035e594a2e24009759403e594a2e250faf0
+:10321000eea2e640030232a55392fe906061e0f90f
+:103220009004afe4f09004b1f0900455122d188a88
+:10323000828b83a3a3a3a3a3a3e024046010146040
+:103240000814700f1228de8054122978804f12164d
+:1032500055804a906060e064806032e0c0e0ea241b
+:1032600011f582eb122d04d0e0f0906060e0c0e038
+:10327000900455e0242af584a3e0123035fa7460f6
+:103280002af5827404122d04d0e00592f090048592
+:10329000e0a2e05005122eb78003122d441227fa47
+:1032a0001216438004a2e750031237e0d0f0d08515
+:1032b000d083d084d082d092d0d0d0e03274f712b4
+:1032c000258774fe1224b612274c900455e0fca307
+:1032d000e0fd123058ec2427f582ed122d04ec2489
+:1032e00029f584ed3400f5857401687001e97017e3
+:1032f0000592e0f80592e028fac39425400474dbb7
+:103300002afaea05928025e0f521e88521f0a4f863
+:10331000aaf08521f0e9a42af90592e0fae82af852
+:10332000e93400f97a257b001223fbeaf074075a8e
+:10333000f87401b800028004c333d8fcc0e0ea137b
+:103340001313541ff8ec28f8ed3400f9e82422f5a3
+:1033500082e9122d04d0e0f80592e058702a800529
+:10336000e0cac39afaec24e3f582ed122d11f8ead3
+:10337000c39850ec8a21ec2521f8ed3400f9e824bb
+:10338000bef582e9122d11faec242af582ed122df8
+:1033900004ea02311774f612258774fe1224b6125d
+:1033a000274c900407e0906001f09009b91222b612
+:1033b0009061951222c212179390040ce0fe7401e2
+:1033c0006e9004057040e05402f97a0d7b041216e9
+:1033d00079900405e0a2e050097a917b04752140c0
+:1033e00080077a8b7b04752100a2e150047e8080e7
+:1033f000027e0075230678231227647c0d7d04e588
+:10340000214e44018064e0a2e050087a917b047868
+:103410004080067a8b7b0478000592900432122754
+:103420007f7c137d048e2174bd2521f582740912e1
+:103430002d08e048f912167f740112249cee6005f5
+:1034400074026e702e900405e0a2e050087a917b21
+:1034500004784080067a8b7b0478000592900452b1
+:1034600012277f7c337d04e84404f912167f74012f
+:1034700012249c900405e0a2e0e433f9121673755f
+:10348000910090618274c0f0853282853383122767
+:1034900054740212249c7f0302263cc082c08353d2
+:1034a00092fe9003f0e004f064037002e4f0e02484
+:1034b00025906000f09009b91222b6906195122211
+:1034c000c29003eee05420f9121673121793900382
+:1034d000eee0a2e15004d2f08002c2f0a2f0e433a8
+:1034e00090600cf09003eee0a2e1503575d90da28a
+:1034f000e55004784080027800e84403f5d9e0a262
+:10350000e550067a917b0480047a8b7b047906125d
+:103510001649740675d9001470fae5e170fc75e17e
+:103520009575910090618274c102282d74f812255e
+:103530008774fe1224b612274c1235b01222b690b0
+:1035400061951222c21235e3f584ef3400f58585ca
+:1035500084828585831235ca2410122d0ea2e25072
+:10356000111235750592a3a3e02402f89061d5e00d
+:1035700028f0022da90592e0f582a3e0f5832274dc
+:10358000f81225871235b01222b69061951222c228
+:103590001235e3122d011235ca122cff1235ab245d
+:1035a000fcf8e934ff12303d022db7122d39e82224
+:1035b000900455e0fea3e0ff121793ee241212359b
+:1035c000c222f582ef3400f5832212305fee2435fb
+:1035d0001235c2e8f0a3e9f07900eefaeffb12171a
+:1035e00087ee22ee243412362d906008f0ee241679
+:1035f00012362d906005f0ee241712362d906006dd
+:10360000f0ee241812362d906007f0906060748000
+:10361000f01232bdee242a12362d906000f0759122
+:10362000009004bbe0906182f0ee243722f582ef37
+:103630003400f583e02274f412258774fe1224b658
+:1036400012274ceafcebfd7e007f007a5c7b048c49
+:10365000828d83a3a3858221858322800ce5232488
+:1036600004f8e52434001230658a828b83e0f58407
+:10367000a3e0f585e58445857003023779a884a920
+:103680008588828983a3a38521848522850592e08c
+:10369000f523a3e0f5240592e0c39523f523a3e0e9
+:1036a0009524f524c3e5239404e52412391e4039fa
+:1036b0008c828d831230468c828d83a3a3a3a38535
+:1036c000828485838512305bc3e52398e524995075
+:1036d0000d858482858583e523f0a3e524f08a8225
+:1036e0008b83ecf0a3ed023789c3e52394fde52439
+:1036f00094ffa2d265d03340478c828d83a3a3a3cd
+:10370000a3a3a3e0a2e7500302365d88828983a3c6
+:10371000a3a3a3a3a3e0a2e7502688828983e0f5b0
+:1037200023a3e0f5248a828b83e523f0a3e524f02c
+:1037300088828983eef0a3eff0e8fee9ff023669a4
+:1037400088828983a3a3a3a3858284858385c3e418
+:103750009523fae49524fbe0f523a3e0f524c3eade
+:103760009523eb9524500b858482858583eaf0a30d
+:10377000ebf0e8fae9fb0236698a828b83ecf0a36e
+:10378000edf08c828d83e4f0a3f0eefaeffb85324e
+:1037900082853383122754740212249c7f050226eb
+:1037a0003c74f712258774fe1224b612274cea4b9c
+:1037b000602ba2afe433fec2af1236368a828b830f
+:1037c0008010aa82ab838582848583851235751229
+:1037d0003636e582458370eaeea2e092af023118f8
+:1037e00074f512258779001219a38a238b2479771f
+:1037f0001219c19061b1e4f0e070f87401f0e06476
+:103800000170f890045c12305b900455123046e869
+:10381000497012123926e594a2e250037594001201
+:10382000187d022cef88828983122d1890045cea9f
+:10383000f0a3ebf088828983a3a3122eaf8882893c
+:1038400083a3a3a3a3e02521faa3e03522fbea2466
+:10385000fdfeeb34ffff88828983a3a3a3a3a3a368
+:10386000e024046012146005146007804712339549
+:10387000805212349b804de521c39523e522952487
+:10388000c312391e5029e5232401f521e524340013
+:10389000f522c3e5219ee5229f400ae5212401fe91
+:1038a000e5223400ff9003e9e521f0a3e522f012c0
+:1038b00017998010900485e0a2e0500512352c8005
+:1038c0000312357faa21ab2279301219b5eefaef37
+:1038d000fb79401219b579541219c1e521c395231a
+:1038e000f8e5229524f9c3e89401e912391e500d38
+:1038f0001217abe5e170fc75e12102381f900369f6
+:10390000e0a2e04013aa21ab221219af90049b124f
+:1039100022c212392602381f1217ab02381f940038
+:10392000a2d265d03322e5a8f8c2af9004c6e0c2a7
+:10393000e012393522f0753400e8a2e792af220098
+:10394000853487c2af22c0e0c0d075d010c092c00d
+:1039500082c083c0f074fc1224865392fe9004c788
+:10396000e0601712166d900369e05411700375c67c
+:10397000879004c7e4f0c2c78026c2c7853282851b
+:103980003383aa82ab831217a5e9640170129004f5
+:10399000c77401f08532828533831222b612187102
+:1039a000753400740412249cd0f0d083d082d0925d
+:1039b000d0d0d0e03275c3007420c39afa744e9b05
+:1039c000fbeaf5a2ebf5a35392fe22c02175c301d9
+:1039d000e5a2f521e5a375c300f9e5212420f8e966
+:1039e000344ef9e8c39af8e99bf9e8f5a2e9f5a3a2
+:1039f000d0215392fe22c082c08374fc122486e53b
+:103a0000a8f8c2afe5958532828533835392fef0e4
+:103a1000e596c0e074011224efd0e0f0e597c0e035
+:103a200074021224efd0e0f0e8a2e792af74031220
+:103a300024efe4f08532828533831222b6740412b7
+:103a4000249cd083d08222c0e074f11226821239e5
+:103a5000f690060c1222c2e58955ab900610f0e5ef
+:103a600080900613f07b007a0079061219eb7589b5
+:103a700000c2c57f010226e9c0e074f1122682125d
+:103a800039f690060c1222c2e58a558d900611f087
+:103a9000e590900614f07b017a0079061219eb7517
+:103aa0008a00c2eb80cdc0e074f01226829061a93a
+:103ab000e4f090061ae0640f7012e5c7f890036a0c
+:103ac000e0f5c790ff1ce0f4f5ae88c7e5bbf9e56b
+:103ad000bafae9fb90061ae0c333f8e433f9741b31
+:103ae00028f582740639f583eaf0a3ebf090061a04
+:103af000e02410fb7a0079061219ebe5a8f8c2afb2
+:103b00009004c6e0c2e2f0753400e8a2e792af7f0d
+:103b1000020226e9c0e0c0d075d008c092c082c0c1
+:103b200083c0f0e5d1f875d100c2c0a2e350097b93
+:103b3000037a0079041219ebd0f0d083d082d092ae
+:103b4000d0d0d0e032c0e0c0d075d018c092c02133
+:103b5000c022c082c083c0f05392fe9007f9123c8d
+:103b60005e602b9007b4e0700c7401f07b007a006b
+:103b700079041219ebee9007f9f0e5c1c0e074fb8f
+:103b80002521f58274073400f583d0e0800be5c46d
+:103b9000a2e650069007b37401f0023c4dc0e0c0ad
+:103ba000d075d018c092c021c022c082c083c0f09e
+:103bb000c2e95392fe9007b6e0fa9007b5e09a5436
+:103bc0003ff860258a2174b72521f5827407123cdd
+:103bd000d29007b6f089c19007f7e06870197b02b0
+:103be0007a0079041219eb800ee5a8f8c2af9004b0
+:103bf000c6e0c2e3123cc88054c0e0c0d075d01803
+:103c0000c092c021c022c082c083c0f05392fe90f7
+:103c10000883123c5e602a90083ee0700b7401f04d
+:103c20007b00fa79041219ebee900883f0e5f9c0f5
+:103c3000e074852521f58274083400f583d0e08096
+:103c40000be5fba2e6500690083d7401f0d0f0d0e1
+:103c500083d082d022d021d092d0d0d0e032e0f5f3
+:103c60002174012521543ffea3e06e22c0e0c0d0a4
+:103c700075d018c092c021c022c082c083c0f0c2db
+:103c8000ea5392fe900840e0fa90083fe09a543fd1
+:103c9000f860258a2174412521f5827408123cd2ee
+:103ca000900840f089f9900881e06870197b027ae9
+:103cb0000179041219eb800ee5a8f8c2af9004c692
+:103cc000e0c2e4123cc88085f0753400e8a2e792b7
+:103cd000af223400f583e0f974012a543f22c0e09a
+:103ce00074f0122682906206e0f89008dbe048f05b
+:103cf000906202e0543ff52175220074047821128d
+:103d000024739008dbe04521f0a3e04522f09062a7
+:103d100004e0543ef52175220074097821122473c1
+:103d20009008dce04522f09008dbe054046007e0f6
+:103d300054fbf0121e3b9008dce054016013e05489
+:103d4000fef09008eae060097b037a007907121917
+:103d5000eb121e659008dce05420600de054dff0ab
+:103d60007b027a0079071219eb758b00c2e87f029b
+:103d70000226e9033f0000030004280d980890077d
+:103d8000900194011b0195111b08f00939821f0e47
+:103d9000a4fecd82210622fb381818162118f0ef58
+:103da0003818f2ed3828f2eb3868f003392a1fe7ab
+:103db0003f08f00428ba3868f0393c08f1053c881f
+:103dc000f1173ca8f10e3ce09f2c1f0128104a2956
+:103dd0001fd63f15d0033827d00938009004289ffc
+:103de0003f0128154101980128014a25d01f3804b8
+:103df0001f831f0ea4fecd0422053814212028079e
+:103e0000a0083f0628681527d0e939202807d0f2f6
+:103e100038832178f10238042188f1083d0628a171
+:103e20004001f004288438042807a005284d1528ef
+:103e3000f1163c68f1143d77cf1240599202d80f29
+:103e40003912d00739699222d00439799242d004cc
+:103e5000380528ef151e3fc09f04286c3f08f1234a
+:103e60003c88f1203d094028f1103d4540f7c759f5
+:103e7000f2083d9303131183e1b9f00f3c23e00de9
+:103e80003f09d8ea38f9c30b3f68f1033d59f2f214
+:103e90003c09d8f9390528bd150528f01501900110
+:103ea00028214a051f48f00c3c08f10a3868f10344
+:103eb0003c98f106390c960528f9150228843f47ed
+:103ec000a00c960528f315531f0528e31507288c29
+:103ed000ed0528ec1501280195711b01280ce4055e
+:103ee00028e515511f88f10b3808f1073868f109ea
+:103ef000390128214201f00b3947d0093835210614
+:103f00003f28f1033838f10339351f341f04280cda
+:103f1000e047d0033903280ce80528c815571f28a7
+:103f2000f00638561f811f021f38f0063930215b1a
+:103f30009005283b15fd3f88f1033d0428f7150542
+:103f400028811547d0133808f10f392c470cf00c95
+:103f500038c403b4125c110c3e04f00a38c103806b
+:103f60002801a0411b063f3021043f07284ced4c9f
+:103f70001b5b9047d0173827d00328e8390ea4fee2
+:103f8000cd02220d39002208381021002914e00347
+:103f900028dd3c4c1bf13f05289e15ee3f461812cc
+:103fa00021033f0528021588f13039052811150134
+:103fb00028fb41302100291be00a3d0428f61505a5
+:103fc000280715f6c35192166a3b906b080428ed3a
+:103fd000150428fe150bf0fb3917d004382d1f01ee
+:103fe00028c43f0328214701f0083903283147013d
+:103ff000f00439a2958090033fc29500920328b641
+:1040000015201b54900128b33f08f10539052111f3
+:10401000900128214a38f103390021023f30211054
+:10402000216a030428c2156b033141224128f1099a
+:104030003d02f00239f29101f00b39ff28f19108ad
+:104040003f02f00239529201f00339ff28f193f751
+:10405000cb1b06023907a4b20c073d47d003286edc
+:104060003824900328753f1690b6080428b115a689
+:10407000030428ae153be0f7ce28f1703c01280779
+:10408000a0f090a00668f1323d149030f005393868
+:10409000f103285e38073f50f003285a3958f103de
+:1040a00028573838f104380328ab15033f03288913
+:1040b0001503287515012807d0033907a1563f427b
+:1040c0004130f00c3907a112d0033807d84e388799
+:1040d000a0c14041d04a38f7ce483f38f1033822da
+:1040e000d0443807d8423907a1403f78f112384709
+:1040f000d02d3800f0033860f00639c14011d007e8
+:104100003887a0113f10f0033820f0ab3977cf0b80
+:104110003f00f0033810f0a539414181d004390344
+:10412000285015093f03286c1568f10539414141b4
+:10413000d0023907b810f0063903283115012807d5
+:10414000d0033807d8123907a1103f40f00228fced
+:10415000390328141507d8f838083fa103834031e4
+:1041600012310511d0023907a14bf0063c04281d7d
+:104170001504282e15fa3f042818151bf0fd3d38ac
+:10418000f103380328a115f7cd0328214701f005d5
+:10419000390328314701f0033807a2f7ce224082c5
+:1041a000d00a3806030428141506937606261196bd
+:1041b0000404280e1571034112002871c021070460
+:1041c00038e7cf4198043f17d00439519807282188
+:1041d0004817d00538f295202800901d3f07d204db
+:1041e00038c2950092183f07d10438d29500941335
+:1041f0003f07d40438e29500980e3f809028f10ada
+:104200003d3190a10631f0063903a4b2950228aae7
+:104210001500a1a2950228a615201b28f1633d08d0
+:10422000f10a39012807d00739072851411128c15f
+:104230004a012807a017d20539e3cf8ad0023813e4
+:10424000a007d20539b3cf4ad0023843a083d01e8d
+:104250003931031112310521d0073931990728214d
+:1042600048002915e0133f529502287c154540036c
+:10427000d10d39429502287615281f21990728214a
+:104280004803d20438629502286d1573cf8348081d
+:10429000f1093977cf17d0063907d203390ad1028d
+:1042a0003887a0349007d2073807d80338309054a5
+:1042b0003f07a8023ff7c718f15a3927d04c3931c8
+:1042c0004011d0493987d0073917d0453907d20373
+:1042d000390ad1413805f04b39414001f048385096
+:1042e000903b3f68f1153878f13938149017d03d7c
+:1042f0003907d23d3987d003383490393f07d13759
+:104300003911900128214a409003286e15253f4716
+:10431000d01c38249007d30c3911900128214a87ea
+:10432000d008385144002911e0043a514c02387742
+:10433000cf17d01b3987d003383490193f07d317d4
+:1043400039c14021d01438073f17d00f3907d303a4
+:10435000383090023f009044900a3f249017d005d7
+:104360003907d305393490033fa09f44900221c1ff
+:1043700090511b8121342124f0083927d004390cb5
+:104380009cfd2bae3f10904490b7cf34f00e3953c4
+:10439000210328e195711b541f0f28cc9506282175
+:1043a00041f1c081111c09143f0190511b0728f1f4
+:1043b0009f711b802114f00128863854f0fd2b0ad0
+:1043c000380128ad3f541f032864151028cced0395
+:1043d000286d1576217821501f0128a29a2170019d
+:1043e000b2218001b221802ce303286015742101e1
+:1043f00028ace408f1073c88f1033d022897150337
+:10440000282115011f0128349d03285015201f0065
+:104410002168f0093d069058f0033907283641021b
+:10442000289315fa3f0728504078f10439331f329a
+:104430001f0421500000dc01287c3828f1103d8346
+:1044400040f7cb31031112310521d0033903d103d9
+:104450003900d8103807a41b901a90163f00d801d5
+:1044600028683998f107394b700128e2412b080080
+:10447000288e3f102807a04b701bf0fc2bed3c4a08
+:1044800070224128f1303d02f00239f29112e0b27f
+:104490000cfc2be23c419031061111ff2be29f32c4
+:1044a00004520022111a042a043240002862c01863
+:1044b000f1033927d00d3922f0093907280141b11c
+:1044c00009002921e0093a0aa1073f42f00339fa1d
+:1044d000ce033f62f0f93818f1253977cf0ad1229f
+:1044e0003887a0203f02f00239529212e0b20cfc51
+:1044f0002bb33c68f1123d38f1153887d0133901e0
+:1045000028314201f00f38402807a0072891423196
+:10451000c0c1a00728914a063f02280190710621d8
+:10452000121a04ff2bf29fb2084be0a60302280cdc
+:104530001526030228091568f1293cfbf0273c6287
+:1045400090467002280115d2370428609662904682
+:1045500070062d0128f915c23778f11839d04000be
+:10456000d81538dbf0133c829046700128ed15d247
+:1045700037764400d40338060e023f060d41700121
+:1045800028e315417086120128df153290b20c0520
+:104590003d46700128d915fb3f08f10639417211db
+:1045a00028c14a012807a0ef28f7cf28f11e3d8334
+:1045b000403090a00631031112310521d003398219
+:1045c00095043f30f0043972950028cc1553c84348
+:1045d000d0023823a007d4023803a130f0023903f7
+:1045e000a2834892950028be1506900bf00538016d
+:1045f00028ab15591ffb3f0ea4fecd012204390242
+:10460000286a15fa3f551f1121031f249008f10f46
+:10461000390ad1033987d02438314011d0213905e6
+:10462000f02139414001f01e3850901b3f48f107fe
+:104630003828f1033858f1063987d0143877cf1469
+:1046400090113f78f1053911900128214a093f98ce
+:10465000f10939829500288a15281f5490033f00dc
+:104660009044900ea4fecd0322043902283415fa9a
+:104670003f13212c1801210321741ff1900000f138
+:10468000370190511b0728f19f711b8021322107b0
+:1046900028914231c00728914abf28f7cf28f10658
+:1046a0003c88f1043d92955e15281f44f03838147b
+:1046b000f00a3854f0fb2b8e3801280ce40128f660
+:1046c00015fc2b023f01289015009027d0283902b5
+:1046d000d8083838f12439329001289215e2371978
+:1046e0003f19e089f2043c38f11a39599238f10344
+:1046f000390128861512409103002951e2120e1249
+:10470000d0f038012886150128b9151240012891ea
+:10471000153199072821482c18fe2b553f012810e8
+:104720004a0028a915fb2b2b3ff09f043fd09f0286
+:104730003fb09f0028d0152c1ff23f28f1053c68a0
+:10474000f1033d1490053f2090023f1090449041aa
+:10475000980728214838f1fe2b0a380028b515fea5
+:104760002b063f217011e021800200012821410722
+:10477000282148217811e021880200f7c7761571b9
+:10478000033112a10501d4023907a8042864963127
+:10479000150238f7c70428c4f6fb3c0200fe28f7d0
+:1047a000cf641551417111a10501d80339012807c2
+:1047b000a064911f150338fe28f7cfc4f1fb3c021b
+:1047c00000f7c753155141022807a00ad40339fd49
+:1047d00028f7cf5111a10501d4023907a8c49104cb
+:1047e00028659607150238f7c7563124f2fb3c02bc
+:1047f000000028db150028ec15412d160c0200f7ef
+:10480000c73415d032d332234268f109394141907f
+:104810004041d0043850000306023f0303314202f6
+:104820002807a00ad404395100fd28f7cf13064405
+:1048300092042865960028b9150028ca155631ff3c
+:1048400028e19f4070060c023813068ea081006498
+:10485000e044f5f83c0029f4e2a4f2ed3c03f00258
+:104860003807a8d32fd02f02009bf0023c0200078c
+:10487000a12de0020098f10938102807d00339086b
+:10488000f1043831990728214808f10c390128072b
+:10489000d00938072851411128c042010c033807bc
+:1048a0002850491190082807d005380628b148f744
+:1048b00028f7cf042807d005380628a148fb28f799
+:1048c000cf3021291f0200311fff28f19f411b30eb
+:1048d0001f3121020002210121032153230938063f
+:1048e00028d14001d112384198072821480b3f5464
+:1048f000230c385021f1910000f137741ff1900022
+:1049000000f13768f0023c2b1f0190511b812107f9
+:1049100028f19f711b80210728914231c0072891ff
+:104920004abf28f7cf322134210200082807d007d8
+:10493000390628b14001f00438082807a002000415
+:10494000280d98fe2bf43f402807d00d390ea4fe09
+:10495000cd012204390028bf15fa3f661b11210042
+:10496000291be002000728a64a0ea4fecd0122045e
+:10497000390028b115fa3f01283142b10941e0055b
+:104980003a08384bf00c38ea3d0728a142611be792
+:104990003f0728914271cf0728914af73f07289196
+:1049a0004281a20728914ada3f0ea4fecd022204da
+:1049b0003900289115fa3f4618122100291be01be7
+:1049c000f00639581f0628e0400128004a02001767
+:1049d000d00a393122063817a04198072821480308
+:1049e0003f0728a6480200124038f1093802d807cc
+:1049f000399103002941e2120e120d1248020047bc
+:104a0000a07b280c9c10215215ff2b5e15b7cf02fe
+:104a10000059f203396391083f69f20339e39204c4
+:104a20003f79f203394396020004280d98fa2b14bb
+:104a30003f02d407389103002901e2117006286172
+:104a400048020088f10a3c012831410728814ab117
+:104a5000460328314fa1460f3f0728894a28f1060f
+:104a60003d31440328314f5140053f5528519503ae
+:104a700028314f81110328214f0200e3f3033cf159
+:104a800090033f23e051920628614a0628434802da
+:104a9000007b21772141900000f137702175217a48
+:104aa000218cee0415521f801f02004c1b001f4773
+:104ab000d0033827d009390ea4fecd002203390bcc
+:104ac00015f73f1021020004280d9838f1fe2b271e
+:104ad00038fe2b3c3fd23202180119210601d41aac
+:104ae000381218162162f003392a1f2d3f12f215d1
+:104af0003822f22838fe2bef1568f0063c61900151
+:104b000028114afe2bb8153021280304280d98f9e6
+:104b10002b373f01d114381421202807d00d3878c5
+:104b2000f1123904231038714401f0023981440034
+:104b30002911e0714c083f202807a0053f01d2054c
+:104b400038152127a0d22f020011d00638102104d9
+:104b5000280d98fd2bf33ff2ce5200121bf43f00bc
+:104b600001000002000000e11a0000000100000046
+:104b7000000b1b00000002000000001d1b000300d2
+:104b80000324000000ff1a000200040400000005d6
+:104b90001b00000005000000004d1b000000060087
+:104ba000000000b31b0005000726000000651b0085
+:104bb00000000800000000ef1b0002000982000056
+:104bc00000471b0007000a2a000000f51b00070031
+:104bd0000b2a000000fb1b0000000c00000000017d
+:104be0001c0002000d220000003b1b0003000e22ef
+:104bf000020000411b00000100000000005f1b00dc
+:104c000000010100000000e31b00000102000000a1
+:104c100000531b0003010384000000711b0002010c
+:104c200004040000006b1b00020105040000005991
+:104c30001b0001010602000000111b000301078494
+:104c4000000000171b0004020024080000bf1b0026
+:104c500004020144000000991a000202020400004c
+:104c6000009f1a00030203220800008d1a000202ae
+:104c70000422000000931a00010300020000007be0
+:104c80001a0001030102000000e91b0009030242af
+:104c9000440400751a0001030302000000f91a0021
+:104ca00001030402000000e71a000203058200006d
+:104cb00000ed1a0001030602000000f31a000103d0
+:104cc00007020000006f1a0002030882000000457e
+:104cd0001a0008040042440800811a000604014238
+:104ce000840000a51a0006040242840000b11a00e4
+:104cf00005040342040000ab1a0003040442000050
+:104d000000b71a0004040542080000c31a00040496
+:104d10000642080000db1a000104070200000087b9
+:104d20001a0003040842000000bd1a0006040942ec
+:104d3000840000c91a0002040a22000000cf1a00f1
+:104d400002040b82000000d51a00020500220000b8
+:104d500000351b0001050102000000c51b00010514
+:104d60000202000000d11b0003050322020000cb59
+:104d70001b0005050462000000d71b0000050500ac
+:104d8000000000ad1b00010506080000007d1b00af
+:104d900002060022000000771b000206012200002c
+:104da00000891b00010602020000008f1b000f0695
+:104db000032a444400a11b0000060400000000a7d1
+:104dc0001b0008060544440000951b00030606224c
+:104dd0000200009b1b0005060744020000291b007f
+:104de000050608440200002f1b000206098200008d
+:104df00000231b0007060a2a000000831b0003078c
+:104e00000022020000191c000607012602000025ee
+:104e10001c00030702220200001f1c0002070322dd
+:104e20000000002b1c0002070422000000311c00bf
+:104e300003070522020000371c00030706220200b8
+:104e4000003d1c0002070722000000431c0006076b
+:104e50000822222200551c00020709820000005b84
+:104e60001c0003070a22020000491c0003070b2252
+:104e70000800004f1c0001070c02000000b91b00d5
+:104e800005070d22420000611c00030800220200f9
+:104e900000511a0001080102000000571a00000822
+:104ea00002000000005d1a0000080300000000631b
+:104eb0001a0000080400000000691a000108050833
+:104ec0000000004b1a0001090002000000671c00ee
+:104ed000040901060000006d1c0001090208000021
+:104ee00000731c0000090300000000791c00000092
+:104ef0000000000000071c00000001000000000787
+:104f00001c000600020a000000071c000200030447
+:104f1000000000071c0003000424000000071c0020
+:104f200005000522220200071c0001000602000005
+:104f300000071c0005000786000000071c000c008d
+:104f40000844442402071c00020009040000000772
+:104f50001c0002000a04000000071c0002000b04f1
+:104f6000000000071c0000000c00000000071c00ef
+:104f700003000d84000000071c0002000e04000066
+:104f800000071c0000010000000000071c000001d9
+:104f90000100000000071c000001020000000007e3
+:104fa0001c0002010304000000071c00030104842c
+:104fb000000000071c0000010500000000071c00a5
+:104fc00002010604000000071c00000107000000a9
+:104fd00000071c0002020004000000071c0007027a
+:104fe0000144840000071c00050202440800000779
+:104ff0001c0000020300000000071c000002040067
+:10500000000000071c0003030042000000071c0012
+:1050100002030132000000071c00030302420000eb
+:1050200000071c0003030342000000071c000203ea
+:105030000482000000071c00030305420000000773
+:105040001c0003030642000000071c0001030702c6
+:10505000000000071c0001030802000000071c00fc
+:1050600003040042000000071c000304014200008a
+:1050700000071c0003040242000000071c00030498
+:105080000342000000071c00030404420000000764
+:105090001c0003040542000000071c000304064234
+:1050a000000000071c0002040704000000071c00a9
+:1050b00003040842000000071c000304094200002a
+:1050c00000071c0003040a42000000071c00030440
+:1050d0000b42000000071c0003050042000000070f
+:1050e0001c0000050100000000071c00020502046e
+:1050f000000000071c0000050300000000071c0062
+:1051000002050404000000071c0001050502000060
+:1051100000071c0000050600000000071c00000638
+:105120000000000000071c00020601040000000748
+:105130001c0002060204000000071c0003060324f2
+:10514000000000071c0002060404000000071c0009
+:1051500003060524000000071c00020606040000e8
+:1051600000071c0002060704000000071c000206de
+:105170000804000000071c000206090400000007e4
+:105180001c0002060a04000000071c0002070004bd
+:10519000000000071c0002070104000000071c00bb
+:1051a00002070204000000071c00020703040000bd
+:1051b00000071c0002070404000000071c0002078f
+:1051c0000504000000071c00020706040000000799
+:1051d0001c0004070724020000071c000207080443
+:1051e000000000071c0004070924080000071c0039
+:1051f00003070a84000000071c0001070b020000df
+:1052000000071c0000070c00000000071c0002073c
+:105210000d04000000071c0000080000000000074b
+:105220001c0000080100000000071c000208020426
+:10523000000000071c0000080300000000071c001d
+:1052400001080408000000071c0001080508000010
+:1052500000071c0000090000000000071c000209f4
+:105260000104000000071c000209020400000007fe
+:105270001c0002090304000000071c800c0000440d
+:10528000442402071c8001000108000000071c8064
+:1052900002000222000000071c800200032200001e
+:1052a00000071c8004000444000000071c8000006c
+:1052b0000500000000071c800301008400000007b7
+:1052c0001c8007020022440800071c8006020142dd
+:1052d000240000071c8003020224000000071c8039
+:1052e000100300222a4424071c80060301224400e4
+:1052f00000071c8002030282000000071c800203da
+:105300000382000000071c80030304420000000722
+:105310001c8003040042000000071c8005040142b9
+:10532000040000071c8006040242840000071c8061
+:1053300007040342240800071c80040404420800f8
+:1053400000071c8005040542820000071c8002043f
+:105350000682000000071c800305002208000007e9
+:105360001c8003050142000000071c800505026245
+:10537000000000071c8001050302000000071c80dc
+:1053800004050422220000071c800b0600232a8249
+:1053900000071c8002060122000000071c8007078e
+:1053a0000026220000071c80010701020000000700
+:1053b0001c8003070252000000071c80040900063d
+:1053c000000000071c000000000000000000004773
+:1053d0000a0f650a08750a057f0a09910a0ca90acd
+:1053e00007b70a0bcd0a0ee90a06f50a0474f7128c
+:1053f00025189004d1e0f5217900800774ff25215c
+:10540000522109e52170f5026a5b74f6122518e94c
+:105410009004d37006e054fbf08017e04404125966
+:105420007e122760eafcebfd7ad57b04126d6d12cb
+:10543000249c02597974f712251874fe1224b612ae
+:10544000274ce975f075a4f8a9f012549924691253
+:1054500060201255faea4b703de584246712602003
+:10546000e4f0a3f0900365e028faa3e039fbea2416
+:1054700069f582eb1260247431f0a37419f01254b0
+:10548000992467fce5853400fde584246ffae58501
+:105490003400fb121637026a4d900365e028f5844c
+:1054a000a3e039f585e5842274f612251879007594
+:1054b0002101752200e978211224739004d1e0556e
+:1054c00021600709e9c3940840e57408697002790e
+:1054d000ff025979c021e9faa2e050057521038045
+:1054e00003752100a2e15004780c80027800e842a4
+:1054f00021eaa2e25004781080027800e84521f900
+:10550000d0215392fe02111874f512251874fe1260
+:1055100024b612274c8921740d1224efe0f8a3e081
+:10552000f9752300802f852382ae82e82ef582e96b
+:10553000126024ec2ef584ed3400f5850592e0f53b
+:10554000220592e06522c0e0ea2ef582eb1260248b
+:10555000d0e0f00523e523c3952140ca853282853a
+:105560003383122754740212249c7f030225f074a3
+:10557000f71225187521008017852182ae82ec2e46
+:10558000f582ed1269eaf8ea2e1269e768f0052162
+:10559000e521c39940e3026a5b74f612251874fe94
+:1055a0001224b612274c8a848b8575210875220037
+:1055b00078211227607ae57b04126d6d12249c78a5
+:1055c000211227607c007d007aed7b04125cc412fe
+:1055d000249c7521e575220478211227607ce57de5
+:1055e00004aa84ab85126cc612249c9004e5125563
+:1055f000fa02596b853282853383e0faa3e0fb22fd
+:1056000074f412251874fe1224b612274c8a848b67
+:1056100085740e1224efe0f8a3e0f974101224ef61
+:10562000e0f521a3e0f5229004e5ecf0a3edf0a372
+:10563000e8f0a3e9f075230c7524007823122760a5
+:105640007c007d007ae97b04125cc412249c7821e2
+:105650001227607ce57d04aa84ab85026ca974f4f2
+:1056600012251874fe1224b612274ceafeebff74c2
+:105670000e1224efe0f521a3e0f5228c238d24788f
+:10568000231227607910900361e024021268b1aa06
+:1056900021ab221218a1740212249c7821122760d7
+:1056a000ac21ad22126cc212249c900489e0a2e0cd
+:1056b00050067c917d0480047c8b7d04900485e001
+:1056c000a2e050047a0080027a067906e5212afadf
+:1056d000e5223400fb1218a7900485e0a2e05005f3
+:1056e00075230680037523007906900363e075f047
+:1056f000e4a4faabf00592900453e02af582a3e00b
+:105700003bf5830592a3a3a3a3a3a3a3a3a3ac8266
+:10571000ad83e5212523fae5223400fb1218a77892
+:1057200021122760ac21ad22eefaeffb026ca974c6
+:10573000f612251874fe1224b612274ceafeebff6f
+:10574000740c1224ef125cee75210375220078218f
+:105750001227607ae57b04126d6d12249c75210d71
+:1057600078211227607c007d007ae87b04125cc4fb
+:1057700012249c7521e575220478211227607ce5ae
+:105780007d04126cc212249c7521037522007821bd
+:105790001227607ce57d04aa84ab85126d6d026ed4
+:1057a0006374f612251874fe1224b612274c127078
+:1057b00047640a7521107522000592782160030262
+:1057c000585c122760900361e024421260d21224d8
+:1057d0009c7521e5752204782112276012688c12cd
+:1057e000249c7521107522007821122760125cd646
+:1057f0007ae57b04121efb740212249c8b22ea457c
+:105800002260117904eefaeffb1218e3126037e41c
+:10581000f00258fb126c77eefaeffb12194f75216c
+:105820000875220078211227601259161260d212d0
+:10583000249c1259068a218b220592782112276016
+:10584000125a10126cc612249c12593d1227601273
+:10585000592012249c126037740b80b41227609078
+:105860000361e024321260d212249c7521e5752276
+:10587000047821122760900361e0243212689212aa
+:10588000249c75211075220078211227601268abc4
+:105890007ae57b04121efb740212249c8b22ea45db
+:1058a000226003025803752108752200782112270f
+:1058b000601259161260d212249c0592900361e086
+:1058c0002453125cca7821122760125a10aa21ab05
+:1058d00022126cc612249c12593d122760125920c4
+:1058e00012249c1260377406f07c007d00059290b3
+:1058f0000363e0f9eefaeffb121769853282853314
+:10590000835392fe806b0592900361e024531269e9
+:10591000efaa82ab8322126c7b900361e0244a22bf
+:105920007c007d00900361e02af8a3e03400f9e8f0
+:105930002453fae93400fb121f07740222126c96fa
+:10594000f52195e0f5220592782122126db51259c4
+:105950007e1227608a828b83a30a126d6b12249cad
+:105960007c067d00aa84ab8512160d8532828533b4
+:1059700083122754740212249c7f020225f0f075d2
+:10598000211075220078212274f612251874fe1257
+:1059900024b612274c12704764047521107522003a
+:1059a000059278217021122760900361e024221271
+:1059b00060d212249c125a10eefaeffb12194f1209
+:1059c00060377405f08046122760900361e024126e
+:1059d0001260d212249c12705c64097026059290a9
+:1059e0000361e02422f521a3e03400f5227821129e
+:1059f0002760900361e0243212689212249c12689e
+:105a00008080c17408f0eefaeffb1218110258fb07
+:105a1000900361e024421268b12274f012251874d8
+:105a2000fe1224b612274c74fa122486853282851f
+:105a30003383eaf0a3ebf08532848533850592e069
+:105a40002409125ccaa3a3a3a3e0f974fc5970143f
+:105a5000852182852283a3a3a3a3a3ae82af83e083
+:105a600054fc6010790a853282853383e0fa12187b
+:105a7000e3025cbf12607f1260750592f07a0053fa
+:105a800092fe90618fe0c0e01260282442f582e926
+:105a9000126024d0e0f00aeac3941040e2752306b5
+:105aa0007524007823122760ac21ad22900361e0b9
+:105ab000240c1260d212249c900361e0240b12612a
+:105ac00018740205921260b6c0e012603bd0e0127a
+:105ad0006016c0e0126037a3d0e0f07e108521820e
+:105ae0008522830592a3a3a3e0f894105002e8fe58
+:105af00074f928c3940a400879061255f4025a6ec4
+:105b00009004d3e0f8852182852283a385822585b0
+:105b10008326e07009e854046004790280dc852162
+:105b200082852283a3a3858223858324e8a2e0c003
+:105b3000d0e0a2e092f0122505158182f050081203
+:105b400060b17003125ce01260419004d3e0f8543d
+:105b500004600d852582852683e060047f04803003
+:105b6000852382852483e0a2e250239004d0e0fcc8
+:105b7000852182852283e075f005a4faabf0740ece
+:105b80002afa740a3bfbea2c1269e7ff80027f00c5
+:105b90009004d2e0faeec39a5003025af8e8540295
+:105ba0006008ef70057903025afa12606bee0592f5
+:105bb000f0ef70047a0080027a011260960592f08c
+:105bc000a3e9f012590874046f75211075220005bd
+:105bd00092782170101227607cd57d04126d6d12b1
+:105be000249c025c951227607c007d00125cc4122c
+:105bf000249cef7003025c9514600f1460321460f3
+:105c000009147003025c95025cbf1260377403f0e4
+:105c10000592900363e0fff9121cdf900363e06fcd
+:105c20006005eff91214271255f4121811025cbf27
+:105c3000790474021224efaa82ab83121a0f740241
+:105c40001224ef7825122285900a277821122285c6
+:105c50007825792112205f74021224ef7821122214
+:105c6000a77521047522007821122760740412247c
+:105c7000ef1260c812249c900363e0ff74021224a8
+:105c8000ef1222b6eff9121ce5900363e06f600596
+:105c9000eff9121427900361e02412f521a3e034f8
+:105ca00000f522782112276012688c12249c125c65
+:105cb000d6853282853383e0faa3e012685bf07404
+:105cc00006026b0b121f077402221269ef858221f4
+:105cd000858322059222900361e024121268b1228a
+:105ce000121895125cebe90592f022900361e0f541
+:105cf00084a3e0f5852274f012251874fe1224b6f0
+:105d000012274c74fb1224868a238b248a828b836d
+:105d1000a3a3a3a3a3a3a3a3a3ae82af83126fcd18
+:105d200012673ffb74ff6b6011126748400c7905e6
+:105d3000aa23ab241218e3026011853282853383d3
+:105d400074105392fef08e828f83a3a3a3e0f8c356
+:105d500094105008e8853282853383f074f928c3a3
+:105d6000940a4004790680c89004d3e0f88e828fac
+:105d700083a3e07009e854046004790280b28e8243
+:105d80008f83a3a3858225858326e8a2e0c0d0e087
+:105d9000a2e092f0122505158182f0500874ff6b85
+:105da0007003125ce01260411260b160198e828f44
+:105db000830592a3a3a3a3e0f912607fa3a3a3a3e7
+:105dc000a312607580150592900361e0246312614f
+:105dd000050592e0c0e0127163d0e00592f07521f4
+:105de0000675220005927821122760eefceffd90e7
+:105df0000361e024051260d212249c900361e02428
+:105e00000412611874010592126016c0e012603b22
+:105e1000d0e01260b6c0e0126037a3d0e0f07a00a4
+:105e20005392fe90618fe0c0e01260282432f58228
+:105e3000e9126024d0e0f00aeac3941040e2900432
+:105e4000d3e0f85404600d8e828f83a3e060057563
+:105e500021048038852582852683e0a2e24005e87a
+:105e6000540260258e828f83e0fa9004d0e075f0b2
+:105e700005a4f8a9f0740e28f8740a39f9e82af58f
+:105e800082e91269eaf52180037521008532828555
+:105e90003383e0c0e012606bd0e00592f0e5217042
+:105ea000047a0080027a0112609685848285858357
+:105eb000f0a3e9f0852582852683e0fa1260b170af
+:105ec00004eac2e0fa05929004d3e054026004eac6
+:105ed000d2e2fa8e828f83a3a3a3a3a3e0fd8e82d6
+:105ee0008f83a3a3a3a3e0fceaf9aa23ab2412198e
+:105ef000430592900361e0f582a3e0f5830592a348
+:105f0000a882a9839004d2e0fa853282853383e0a7
+:105f1000c39a500a12605a74060592026010125910
+:105f200006e521701105929004d3e054026023121b
+:105f3000605a740380e3740465217016752310752c
+:105f40002400059278231227607cd57d04121f015e
+:105f500080157523107524005392fe782312276054
+:105f60007c007d00121f07740212249c900363e0e2
+:105f7000fee521700302600b14602d14600c1460a8
+:105f80000914700302600b0260111260377407f08d
+:105f90000592900363e0f9121cdf900363e06e60ea
+:105fa00070eef91214278069790474011224efaaa3
+:105fb00082ab83121a0f74011224ef782512228506
+:105fc000900a2778211222857825792112205f7482
+:105fd000011224ef78211222a7752104752200787e
+:105fe0002112276074031224ef1260c812249c74db
+:105ff000011224ef1222b6900363e0f9121ce5901f
+:106000000363e06e6005eef912142712603774091d
+:10601000f07405026b0bf00592900489e0540122a4
+:10602000f582e5851269f322eaf8900361e028f829
+:10603000a3e03400f9e82212686522126865a3a380
+:106040002279025392fe900361e02465126050228f
+:10605000faa3e03400fb121a0f2288828983740ca1
+:10606000f0900361e0245212611822900361e02451
+:106070006b12611822e0f912189b126112e92212c8
+:10608000189b900361e02464126118e90592f08e78
+:10609000828f830592220592900361e0246c126145
+:1060a00018858482858583e054fef8a3e0f9e84ae8
+:1060b00022126743f422f01267572410f582e91286
+:1060c00069f3e0a2e0e43322ac82ad83900361e0a7
+:1060d0002453faa3e03400fb121f0174022274f768
+:1060e00012251874fe1224b612274c900361e02486
+:1060f00064126105e40592f00592126037e4f01233
+:106100001937026a4d126118e40592f00592126186
+:106110001222900361e02463f584a3e03400f58546
+:106120002274f712251874fe1224b612274c8a84a2
+:106130008b85e9fe1218dd900363e0ffeefa12731f
+:106140008a6f6005eff9121427858482858583a301
+:10615000a3aa82ab837405126ae7a3a3a3a3a882b0
+:10616000a983f08a828b83e004f0ee88828983a37e
+:10617000f0026a4274f712251874fe1224b6122730
+:106180004c74ea1224869004d27407f09004d1e48f
+:10619000f09004d074031265561218598532848524
+:1061a0003385900a0874061222dbf521e521c333fa
+:1061b000f8e433f9853282853383e58228f582e578
+:1061c0008339f583e0fea3e0ff79007c007d00eedb
+:1061d000faeffb121859e9f47020791074061224b2
+:1061e000efaa82ab831217bd791074061224efacac
+:1061f00082ad83eefaeffb1218410521e521c3942d
+:106200000340a9741612249c026a4d74f2122518d8
+:1062100074fe1224b612274c74f41224868532823e
+:10622000853383eaf0a3ebf0e9fe8c238d24900301
+:1062300063f075f075a4f8a9f0900365e028f8a361
+:10624000e039f9900361e8f0a3e9f012687b740b80
+:10625000686005740668700d059212689eeef9126a
+:10626000176302639cee75f0e4a4f521e5f0f522d6
+:106270000592900485e0a2e0400302637d7525024b
+:10628000752600782512276074021224efac82adc7
+:106290008374041224ef126d6912249c752508780a
+:1062a00025122760ac23ad2474061224ef126d6909
+:1062b00012249c7c0a74021224efaa82ab83798692
+:1062c0001264a670057a0002639ea3a3e0c0e012e8
+:1062d0005cebd0e00592f0791074021224efac82ee
+:1062e000ad837a067b00121859ac23ad24740212d8
+:1062f00024ef126c4d853282853383e068f8a3e089
+:1063000069f90592900361e02465f582a3e01260cb
+:1063100024e80592f0a3e9f0791074021224efac9e
+:1063200082ad837a057b001218591263bb247ef577
+:1063300023e9126854122760e4f523f52478231228
+:106340002760126c5dfca3e0fd74061224efaa82a4
+:10635000ab831218b3740412249c126c8812276049
+:106360007c007d001263bb2af8e93400f9e8247e42
+:10637000fae93400fb125cc412249c801f7910904f
+:106380000453e02521faa3e03522fbea247efceb4e
+:106390003400fd12673ffb7a801218597a01eef93a
+:1063a00012172d740c12249c853282853383122798
+:1063b00054740212249c7f060225f0900453e025b9
+:1063c00021f8a3e03522f9e82274f412251874edbf
+:1063d000122486eafeebff75210075230175240067
+:1063e000e52178231224739004d1e055236072795b
+:1063f0001074031224efac82ad83ab217a831218a0
+:1064000059e9f4700779ff7413026cba85328285fa
+:1064100033838582238583247823122760ee240327
+:10642000fcef3400fd74051224efaa82ab8312182e
+:10643000bf740212249c752303752400782312274d
+:1064400060eefceffd74021224efaa82ab83121ef1
+:10645000fb740212249c8b24ea45247004a9218039
+:10646000a60521e521c39408509b0263da74f61255
+:106470002518e9701079817c061264a6601fa3a319
+:10648000e0f90259798a828b83a3a3a3a3a3e054e2
+:10649000c024c0600c24807004798280da79ff8087
+:1064a000e11218f580dc1218538a828b83e582454d
+:1064b000832274f712251874fe1224b612274c1288
+:1064c000676512549c241012602012739ce584248a
+:1064d00009fae5853400fb1218fb125ce31264f440
+:1064e000600612716f121859853282853383539278
+:1064f000fe026a530592126743f874ff682274f62d
+:10650000122518e9fe74ff6e70157c807df07a808c
+:106510007b0012185f9004d1e412655cfb802f753c
+:106520002101752200ee7821122473af219004d14d
+:10653000e05f70047900801b7c807dff7a80e9fb3e
+:1065400012185feff4f89004d1e058126556121853
+:1065500041790102597912655c7b0022f079017c56
+:10656000d17d047a0222c082c083e960047c01806c
+:10657000027c005392fe9004d3e054fefaa3e0fba9
+:10658000ea4c9004d3f0a3ebf0d083d08202111830
+:1065900074f7122518e960047c0180027c009004e5
+:1065a000d3e054fdfea3e0ffecc333fce433fdee87
+:1065b0004cfcef4dfd9004d3ecf0a3edf0ea940712
+:1065c00050047a078008eac3941140027a10ea90d6
+:1065d00004d2f0ebc3940540027b03eb9004d0f0af
+:1065e000026a5b74f6122518eaff121427e9700696
+:1065f0007a867b01801e12180bea4b70047a828027
+:10660000f17c01eff912191fe96005fa7b038004a0
+:106610007a007b0002597974f512251874fe122451
+:10662000b612274c74f61224868a218b22e9ffecdd
+:10663000fe12705c600812181179050267377b0042
+:1066400012674840010b12673ffa74ff6a7005ef4a
+:1066500060027b010592900361e0246c12715fa2dd
+:10666000e0401105929004d3e054026007ee60040c
+:106670007b0180125392fe9004d2e0f812606b0509
+:1066800092e0c39840ea5392fe900485e0a2e0ebca
+:10669000501ca2e040057900026737ef60051273d5
+:1066a0009980027900aa21ab2212197380e8a2e036
+:1066b000502f74ff6a702aef600512739980027977
+:1066c000007523107823122764752303782312277b
+:1066d000647d03aa21ab2212197f740212249c80cc
+:1066e00056790a853282853383ac82ad83eafb7aa0
+:1066f00084121859e9640a6020ef600512739980ca
+:1067000002790075231078231227647523037823f8
+:106710001227647d03eefc80ba853282853383ac18
+:1067200082ad83900363e0f9aa21ab22121769e9d5
+:1067300070030266967908740a12249c02555c1252
+:1067400067432212686ee022126757240ff582e930
+:106750001269f3e0a2e7220592126765e028f8a328
+:10676000e039f9e822900363e075f0e4a4f8a9f0b9
+:106770009004532274f412251874fe1224b61227c2
+:106780004c74fc122486853282853383eaf0a3ebb5
+:10679000f0a3ecf0a3edf0121427e970077a867be2
+:1067a0000102683112687b740368600e74076860c8
+:1067b0000974086860047a8180e5752304752400f3
+:1067c0000592782312276074021224ef1260c81217
+:1067d000249c12705c24fd600924fc602b14602c46
+:1067e000804b12684270047a8280b4900361e02486
+:1067f0001212685012276012688c12249c125cd608
+:10680000eefaef12685b80247409802012684260ff
+:10681000d6900361e0242212685012276090036131
+:10682000e0243212689212249c126880f07a007b75
+:1068300000740412249c8532828533835392fe02b5
+:106840006cb512180b8a238b24ae23af24ee4f2293
+:10685000f523a3e03400f524782322126861740440
+:1068600022fb1219491268692212686ea322900352
+:1068700061e0f584a3e0f585059222127060f822ac
+:106880001268abeefaef126861740a22900361e0bd
+:1068900024421268b112689e1218b9740222900341
+:1068a00061e02453faa3e03400fb22900361e0246a
+:1068b00022fca3e03400fd2274f7122518e97b07bf
+:1068c000fa79021219d9026a5b74f212251874fe61
+:1068d0001224b612274c8923e9900363f0fe75f069
+:1068e00075a4f521e5f0f52205929003651269f88b
+:1068f000900361e582f0a3e583f00592a3ea24fe0c
+:10690000601024fd60321470030269dc1460090217
+:1069100069e412192b0269e47401f07a0512175127
+:10692000a923121cf1900363e0652370030269e45c
+:10693000a9231214270269e41264f670030269d7ce
+:10694000752501752600e8782512247305929004b8
+:10695000d1e045251265561218419003651263beb9
+:106960002463f584e93400f585900485e0a2e00510
+:1069700092e0405254096401705dee75f0e4a4f5b4
+:1069800021e5f0f5229004531269f8e5822410f510
+:1069900084e5833400f585e0a2e040307a01790691
+:1069a000e5822409fce5833400fdeefbea4480fa2d
+:1069b0001218411263bb2410f582e91269eaa2e0c1
+:1069c000500e7804800ca2e040b0800b7a0280ce9a
+:1069d0007802126d8048f012198b8008e024f3c30e
+:1069e000940a40f30263a8f582eb1269f3e022f502
+:1069f00082a3e03400f58322e02521f582a3e0356f
+:106a000022f58322c082c0837b075392fe900363ea
+:106a1000e0fa79021219d902658974f712251874ff
+:106a2000fe1224b612274c05929009951227737b0b
+:106a3000070592900363e0fa79021219df740402e9
+:106a400062057c067d00aa84ab8512160d85328214
+:106a5000853383122754740212249c7f010225f08f
+:106a600074f012251874fe1224b612274c8a278b54
+:106a70002889218c258d22126af37402126fd98520
+:106a80008482858583a3a3f074055521858482853e
+:106a90008583a3a3a3126ae77410f0e9a2e050046f
+:106aa000ae2580027e00ee858482858583a3a3a324
+:106ab000a3a3f0e9a2e05004af2280027f00126f8e
+:106ac000b6122760ac84ad85900361e0240b1260a0
+:106ad000d212249c7c067d00aa27ab2812160d85b5
+:106ae00032828533838030126aeb22126c45a3a375
+:106af000a3a3228a828b83a3a37405f08a848b8547
+:106b00000592a3a3a3a3a3a3a3a32212249c85322b
+:106b1000828533835392fe122754740212249c7f81
+:106b2000080225f074f612251874fe1224b61227f6
+:106b30004c126b4d740302594b74f612251874fef7
+:106b40001224b612274c126b4d1402594b8a848bb7
+:106b500085858482858583a3a3a882a98374051271
+:106b60006aeba3a3a3a3aa82ab832274f412251811
+:106b700074fe1224b612274c74f01224868a218bdc
+:106b8000227908900361e024321260507910853236
+:106b900082853383ac82ad837a067b00121859124a
+:106ba0006c77853282853383126c4d126c5d68f888
+:106bb000a3e069f90592126d73e80592f0a3e9f07c
+:106bc000852184852285a3a37405f08521828522f1
+:106bd000830592a3a3a3a3a3a3a3a3ae82af83041d
+:106be000126c45126e857a057b001218598e828fc1
+:106bf00083a38582238583247823122760e4f523e9
+:106c0000f5247823122760126e9a1224efaa82ab21
+:106c1000831218b3740412249c126c881227607caf
+:106c2000007d00ee2af582ef126024a3aa82ab83d6
+:106c3000125cc412249c7c067d00aa21ab22121691
+:106c40000d74108067f085848285858322aa82abcb
+:106c5000831218ad8a238b24a823a92422126c61e5
+:106c600022900361e02465126c6b22f584a3e0346a
+:106c700000f5850592e022126c7b22900361e024ee
+:106c800032fca3e03400fd22126c96f52395e0f56a
+:106c9000240592782322900361e0246b126c6bf838
+:106ca0008882aa827410c39a22126cc612249c8510
+:106cb0003282853383122754740212249c7f04028b
+:106cc00025f0eefaeffb12132574022274f412255c
+:106cd0001874fe1224b612274ceafeebff8e848f46
+:106ce000850592a3a37405f08e828f830592a3a3da
+:106cf000a3a3a3a3a3a3aa82ab837407126c45e04a
+:106d0000240af08a828b83a3858221858322126dd7
+:106d1000730592e0f8a3e0f9852182852283e805d6
+:106d200092f0a3e9f07523087524007823122760f8
+:106d3000126c77ea24030a0a0aeb3400fb126d6d29
+:106d400012249c1264f6600d790aac21ad22e8fb96
+:106d50007a86121841126d7dd2e6f07c067d00ee37
+:106d6000faeffb12160d026cafaa82ab83121f0161
+:106d7000740222900361e02442126118225392feb1
+:106d8000900361e0246e126c672274f71225187468
+:106d9000fe1224b612274c126b4d7408126db5f01a
+:106da00079108a828b83a3ac82ad837a077b001231
+:106db0001859026a42f088828983e024102274f60e
+:106dc00012251874fe1224b612274c126e6974092b
+:106dd000f00592e02407f075210675220078211253
+:106de00027607c8b7d04e5842402fae5853400fb72
+:106df000126d6d12249c0592a3e4f07c06fdeefa60
+:106e0000effb02596874f612251874fe1224b612ac
+:106e1000274c74f0122486126e69740af0059212df
+:106e20006e857a077b001218590592a38584218507
+:106e3000852205927821122760752101752200783c
+:106e400021122760126e9a1224efaa82ab831218c5
+:106e5000b3740412249c7c067d00eefaeffb12163c
+:106e60000d741012249c02596beafeebff8e828f88
+:106e700083a3a37405f08e848f850592a3a3a3a397
+:106e8000a3a3a3a322e02410126e8c22f079108514
+:106e90003282853383ac82ad8322126c61fca3e025
+:106ea000fd74042274f712251874fe1224b61227fa
+:106eb0004ce9feecff8a828b83a3a3a882a98312ec
+:106ec0006af9858482858583740b0592f0888289ae
+:106ed00083e004f0ee60047c0180027c009004d327
+:106ee000e054026007ef6004780480027800ec4808
+:106ef0000592a3f07c067d00026a4a74f012251800
+:106f000074fe1224b612274c8a278b2889218c25df
+:106f10008d2274121224efe0f874131224efe0f9ba
+:106f2000126af37401126fd9fc858482858583a36c
+:106f3000a3f0e52160047d0180027d0085848285c7
+:106f40008583a3a3a3aa82ab83edf0e5256013ecb0
+:106f500070089004d0e0640360088a828b83e0d2da
+:106f6000e2f0e9858482858583a3a3a3a3f0e521cc
+:106f70006004ae2280027e00ee858482858583a334
+:106f8000a3a3a3a3f0e5216004e8ff80027f001221
+:106f90006fb6122760ac84ad85900361e0240412c3
+:106fa00060d212249c7c067d00aa27ab2812160d05
+:106fb000126fcd026adfef858482858583a3a3a348
+:106fc000a3a3a3f0752307752400782322900363fd
+:106fd000e0f912188f12193d22f00592e02406f014
+:106fe0009004d0e0858482858583a3f09004d3e06b
+:106ff0001313543f54012274f612251874fe122400
+:10700000b612274ce9ff740c1224efe0f9740d124c
+:1070100024efe0f812705c600712181179058024e3
+:10702000e8f52205927822122764e9f522782212e7
+:107030002764eff9121979740212249c12603774d4
+:1070400002f079000258fbeafeebff8e828f83a3e9
+:10705000a3a3a3a3a3a3a3a3ac82ad8312706022b6
+:10706000126869e02274f6122518e9fe12180bea7c
+:107070004b70047901802fee600e146010146012c2
+:107080001460141460168019121955801712195bb8
+:107090008012121961800d121967800812196d8013
+:1070a00003121811790002597974f612251874fe2a
+:1070b0001224b612274c12705cc3940d5034740d18
+:1070c000802f74ee28f97521017522007821122491
+:1070d000731271630592e05521601005929004854a
+:1070e000e0a2e04077121985e970715392fe1273a5
+:1070f00094f0059212687b7417686038e8c39412a4
+:1071000050c074f328fa75210175220078211224e9
+:10711000730592900361e0246312715f552160cb87
+:107120000592900485e0a2e05032eaf9121985e94f
+:10713000702a80b71264f4602012716f12184190a7
+:107140000363e0fe12673ffaeef9121ceb90036353
+:10715000e06e6005eef91214271218dd02596b1269
+:107160006c67220592900361e02464126118227911
+:10717000040592900361e0246b1268b1e8fb7a8702
+:107180002274f312251874fe1224b612274c8a2199
+:107190008b228a828b83127050fa74016a700aaa59
+:1071a00021ab221218110273748c828d830592a375
+:1071b000ae82af838c828d83e0f8146038146076e1
+:1071c00014700302724b1470030272701460431443
+:1071d00070030272821470030272821470030272ce
+:1071e000821470030272821470030272821470039c
+:1071f00002732e80aaea7010900485e0a2e0500885
+:10720000aa211218d70273747908aa211218e3026e
+:1072100073741218dd900363e0f5238e828f83e090
+:10722000fa90036312738a6523700302719fa92386
+:1072300012142702719f74026a70cd900485e0a237
+:10724000e040c5aa211218d102737474096a600a59
+:1072500074076a600574046a7008aa211218cb02c8
+:107260007374740c6a70a11260610592e0f9809adf
+:10727000740a6a600574056a708eaa211218c50224
+:107280007374eac3940d500302719f12673ff9743f
+:10729000ff69700302731e89257900ab25e824fa83
+:1072a000600e14601914605714602114605f8069c7
+:1072b00079100ceffd7a801218417901805b790a10
+:1072c0000ceffd7a841218417910804d8e828f83e5
+:1072d0000592e0700575230180037523027906eca1
+:1072e00024020c0ced3400fde5234480fa12184111
+:1072f0008e828f83e070047902801e7904801a796f
+:10730000100ceffd7a831218417908800c79100c6b
+:10731000effd7a851218417920126d7d49f0aa217e
+:10732000ab22121811127394f012198b804690043c
+:1073300085e0a2e0500302719f9004d3e0a2e0b385
+:10734000c0d08e828f83e0a2e092f01225051581d5
+:1073500082f0500a1260b17005790502720aea7073
+:10736000138e828f835392fee05404fc12739caa06
+:107370002112191f8532828533835392fe122754be
+:10738000740212249c7f050225f0e0f9121cf7908c
+:107390000363e02212706004229004d3e0a2e0e4d0
+:1073a00033f92274f6122518e9fe752101752200c1
+:1073b00078211224739004d1e05521700479008063
+:1073c0000f7904eafcebfdeefb7a8712185979017c
+:1073d00002597974f612251874fe1224b612274c3d
+:1073e00074f01224868a218b228a848b850592a3cd
+:1073f000a3a37903aa84ab85121a0f852182852263
+:1074000083a3a3a3a3a3e0543f4440126e8c7a0746
+:107410007b001218597821122760ac84ad85740264
+:107420001224efaa82ab831218bf740212249c02aa
+:107430006e6174f612251890039112749f90038e5a
+:10744000e054bffaa3e0fbe9a2e0e433f5217522a2
+:107450000074067821122473ac21ea4c90038ef05c
+:10746000a3eb1277c38008122754740212249c7f66
+:10747000020225f0c082c0835392fe90038ee03357
+:10748000335401f9d083d082021118c082c08353d3
+:1074900092fe90039512749fe9a31277c380e5eae8
+:1074a000f0a3ebf0a3ecf0a3edf02274f712251893
+:1074b000e9feea24fc602b24fd7034ee900363f0b7
+:1074c00075f075a4f8a9f0900365e028f8a3e039f9
+:1074d000f9900361e8f0a3e9f07a0079001214c38f
+:1074e000800d90038ce4f090038bf090038df07f7f
+:1074f000010225f074f712251874ff1224869003f8
+:107500008de4f07c8a7d097a677b0312163775213a
+:107510000078211227647c327d007a4b7b00900337
+:107520008ee012795d12249c790185328285338345
+:10753000ac82ad837a047b00121859e9f46007909d
+:10754000038ee04480f0740112249c80a274f21235
+:10755000251874fe1224b612274c8a218b228a82a7
+:107560008b83a3a3ae82af83e4f08a848b850592dc
+:10757000a3a3a3a3740212768614f0858482858562
+:1075800083a3a3e9146005146006800874058006cf
+:10759000740680027404127691f8ea28f584eb12de
+:1075a000766e79011276797a077b2a1215e9e960fd
+:1075b0000a7402127684740a1276918e828f83e0a6
+:1075c000f8e52128f584e52212766e7904127679a1
+:1075d0007a047b2a1215e9e9600a7405127684742c
+:1075e00012127691aa21ab2212155f852182852283
+:1075f00083a3a3a3a38582258583268e828f83e020
+:10760000f9aa25ab261216c18e828f83e4f085215c
+:10761000848522850592a3a3a3a3791d1276797a86
+:10762000007b2a1215e9e9f8858482858583a3c346
+:10763000941d500a7401280592f074098007741e85
+:107640000592f074080592127691f96007aa25abad
+:10765000261216c7aa21ab22121811853282853351
+:1076600083122754740212249c7f060225f03400f2
+:10767000f5850592a3a3a3a322e5842402fce58556
+:107680003400fd220592f08584828585830592a3ce
+:1076900022f00592e004f88e828f830592e028f0b4
+:1076a0002274f012251874fe1224b612274c74f7b7
+:1076b000122486e9853282853383f074011224ef27
+:1076c000ecf0a3edf08a848b85741b1224efe0f5b7
+:1076d00025a3e0f526741d1224efe0f523a3e0f5c1
+:1076e00024741f1224efe0f521a3e0f52274211287
+:1076f00024efe0fea3e0ff121a33e970077a897bda
+:10770000010277ab90038de0f8c3940440047a81c2
+:1077100080ede8600312149f90038ee0a2e0501801
+:1077200074031224efaa82ab8312199d74031224ee
+:10773000efaa82ab831216d3e58445856006aa843e
+:10774000ab8580047a007b008e278f28782712274c
+:10775000607821122760782312276078251227602d
+:1077600090038ee05401f5217821122764740a12e7
+:1077700024efe0fca3e0fd74091224efe0f91216f7
+:107780009d740912249ce96005fa7b02801d740136
+:107790001224efe0f584a3e0f5850592e0059290d0
+:1077a0000390f090038d74071277c3740912249c20
+:1077b000853282853383122754740212249c7f08f9
+:1077c0000225f0f07a007b002274f012251874ff75
+:1077d000122486e9853282853383f08a278b288cb0
+:1077e000238d2474111224efe0f521a3e0f5227417
+:1077f000131224efe0fea3e0ff121427e970067acb
+:10780000867b018061900485e0a2e0402b8e258f6d
+:107810002678251227607821122760ac23ad24aa90
+:1078200027ab28900363e0f912175d740412249cbf
+:10783000e9602ffa7b02802e12180bea4b70047a53
+:107840008280be8e258f2678251227607821122708
+:10785000607823122760ac27ad2812161f74061219
+:10786000249c7a007b0074010277bb74f712251800
+:10787000eafe121427e970067a867b01800eeefa82
+:10788000900363e0f91217517a007b000274ef74e1
+:10789000f612251890038de014600a146007146036
+:1078a0000424fc70267b00a3e0c3135401fa790082
+:1078b0001216b5e9600ffa7b024402700590038d41
+:1078c000e4f002746f7a007b0080f27a817b0180a1
+:1078d000f174f412251874fa1224868921121a33cd
+:1078e000e970067a897b01806a90038de060047af2
+:1078f0008180f2a3e0a2e05003127be790038ee0c8
+:10790000fe5401f5227822122764900391e0fca333
+:10791000e0fda3e0faa3e0fbee12795d12249c9057
+:10792000038ee0f8c4540f5401fbe8c3135401fa6a
+:1079300079011216b5e96005fa7b028016852123cc
+:10794000748e2523f58274093400f583e090038d4d
+:107950001277c3740612249c7f040225f0c413130b
+:1079600054035401f912174b74012274f6122518ae
+:10797000e9fbc39402501590038ee0547f1279f610
+:1079800074077821122473a8211279e8eac39402bb
+:10799000501990038ee054fef8a3e0f9eaa2e0e467
+:1079a00033fce84c90038ef0a3e9f002746f74f698
+:1079b000122518e9fe90038ee054e11279f6740462
+:1079c0007821122473a821ec48fceea2e0e43333c2
+:1079d000f8ec48fc8a2174027821122473e52154c2
+:1079e0000cf81279e802746fec48f8edf990038e08
+:1079f000e8f0a3e9f022fca3e0fdeba2e0e433f51c
+:107a00002175220022c082c0835392fe90038de430
+:107a1000f090038cf002748474f612251874fe1230
+:107a200024b612274c74fa1224868a848b85e9fec8
+:107a3000121a33e970077a897b01027ae47f009099
+:107a4000038de060047a8180efa3e05480605f7969
+:107a500006853282853383ac82ad837a037b2a121a
+:107a600015e9e9604974051224efe0f974c0597012
+:107a70003d7800127af2700708e8c3940540f47468
+:107a800005687005743f5960257800127af2f47029
+:107a90000708e8c3940540f37e0185328485338569
+:107aa000853282853383aa82ab831216d30faa84d0
+:107ab000ab85eef91216a9eff52178211227641291
+:107ac0007c021227647521017821122764127c112f
+:107ad00012249c79011216afe96005fa7b0280043a
+:107ae0007a007b00740612249c85328285338302df
+:107af00074678821853282853383e5822521f5826a
+:107b0000e5833400f583e02274f512251874fe1223
+:107b100024b612274c74f6122486e9feeaff121ae4
+:107b200033e970077a897b01027bcf74061224f94e
+:107b300090098674041222db90038ee05480600862
+:107b4000127be77523018003752300ee7014ef703c
+:107b50001190038be4f0a3f0f91216af7a007b00ca
+:107b6000806d90038be07004a3e06005790012162d
+:107b7000afee14600614600314701012180bea4b79
+:107b800070047a8280a0eef9121487e523f521783b
+:107b900021122764127c021227648f217408122498
+:107ba000efe5822521f584e5833400f58505921201
+:107bb000277f0592127c1112249c79011216afe9dd
+:107bc000700aee90038bf0efa3f08090fa7b0274c2
+:107bd0000a12249c85328285338312275474021240
+:107be000249c7f030225f0853282853383aa82abf1
+:107bf0008312199d853282853383aa82ab83121644
+:107c0000d32290038ee01313543f5403f5217821bf
+:107c100022900399e0f9900397e0fca3e0fd900324
+:107c200095e0faa3e0fb1216a374032274f6122562
+:107c30001874fe1224b612274c78008003e928f845
+:107c40008a828b835392fea3a3e0f9e8c39950364e
+:107c50008821ea2521f582eb3400f583858284852d
+:107c600083850592a3a3a3a3e0f9601ac3942150ce
+:107c700015858284858385a3a3a3a3a3e0640170f3
+:107c8000bc74016970047900800a0592a3a3a3a3c0
+:107c9000a3a3e0f98532828533835392fe02746791
+:107ca00074f012251874fe1224b612274ceafeeb6b
+:107cb000ff8c278d288e828f83a3a3a385822185a5
+:107cc0008322e0540f601c14600914601624fc60c9
+:107cd00012807990038be06401700890038ee05469
+:107ce000df80681214c9e9f890038de0146008146d
+:107cf000602d14605280e4a3e054dffaa3e0fbe8b7
+:107d0000a2e0e433f523752400740578231224736c
+:107d1000ea4523f8ebf990038ee8f0a3e9802c7490
+:107d2000035860057523018003752300752400a3a3
+:107d3000e054dffaa3e0fb74057823122473ea45cc
+:107d400023f8eb452480cea3e04420f090038ee09e
+:107d50005420606b852182852283e0a2e65004d204
+:107d6000f08002c2f0a2f0e433f5238e828f83a369
+:107d7000a3a3a3858225858326f9aa25ab261218fd
+:107d8000fb78251227608e848f850592a3a3122786
+:107d90007fe9f52405927824122764ab23ac27ad44
+:107da00028852182852283e0540ffaee2425f5826e
+:107db000ef3400f583e0f9121d2d740412249ceebb
+:107dc000faeffb1218110277b0c02189c3e5a4f5c0
+:107dd00021e5a5027f3174f612251879001219a346
+:107de0008a218b22ae21af2279301219a3eac39ed9
+:107df000faeb9ffb7f020225f074f012251874fe47
+:107e00001224b612274c74f812248674071224ef39
+:107e1000e4f0a2af33f8c2af75c300e594a2e2501c
+:107e200003759402e594a2e240fa439408e595c0f4
+:107e3000e074041224efd0e0f0e596c0e07405127f
+:107e400024efd0e0f0e597c0e074061224efd0e014
+:107e5000f0e5a2853282853383f0e5a3c0e07401aa
+:107e60001224efd0e0f0e5a4c0e074021224efd0b9
+:107e7000e0f0e5a5c0e074031224efd0e0f05394e5
+:107e8000f7e8a2e092af74041224ef74021224f90e
+:107e90000592e0f8a3e0f9eac398f521eb99f52201
+:107ea000e4f523f5247409782112217b900a2b78bc
+:107eb000251222857821792512205f0592782112da
+:107ec00021adc021c022c023c024853282853383e6
+:107ed000e0f525a3e0f526e4f527f52874047825d8
+:107ee00012217b900a2f7821122285782579211280
+:107ef000205fd024d023d022d021782179251221cf
+:107f0000d3900a3378211221ad900b2878211222c8
+:107f100013aa21ab22ac23ad24740812249c853211
+:107f200082853383122754740212249c7f08022511
+:107f3000f0fbaa21d0215392fe02111889c3eaf561
+:107f4000a4ebf5a575a60080edc082c083797712f9
+:107f500019c175c32275a22075a34e75a40075a51d
+:107f60000075a6017a007b0079001219b575a7008b
+:107f7000d083d082021118899c75a100c2c280b63c
+:107f8000c082c083121439e990036af079017c0041
+:107f90007dff7a697b03121433d083d082021118db
+:107fa00074f6122518e9ffe5c7fe90036ae0f5c7ed
+:107fb0008f217522007821122760121f017402128e
+:107fc000249c8ec77f020225f074f6122518906259
+:107fd00076e075210f752200c4540f5407782112e2
+:107fe0002473a821a9227a20fb1223f3e8f980d474
+:107ff000c082c083121ef5d083d08202111880fe89
+:1080000074f012251874fe1224b612274c74f01264
+:108010002486e5c7f52875c70375211075220078f9
+:10802000211227607cd77d0374021224efaa82ab51
+:10803000831291b612249c78211227607c007d0067
+:108040007ad77b0312821e12249c752100804f85f3
+:108050002182a882e875f075a4faabf0900365124e
+:1080600081902474f582eb129733a2e0502e7f00aa
+:108070008f82ac82e875f03ba4faabf09003cd128e
+:1080800081902c12a9fd12a52074d72cf5827403bf
+:108090001297334af00fefc3941040d40521128198
+:1080a0009d40ac752100852182a88274d728f58275
+:1080b000740312a520853282853383e58228f582f8
+:1080c000e5831297336af00521e521c3941040d669
+:1080d000752100852182ae827f00853282853383bf
+:1080e000e5822ef582e583129d38a3a3a3a38532f2
+:1080f00084853385e5842ef584e58512a5250592d2
+:10810000e048f52260768f27e522a2e0505b7523d8
+:10811000018f24e5277823122473a82374d72ef522
+:1081200082740312973358600479018002790074d5
+:10813000df2ef5827403129733586004e9d2e1f917
+:108140008e238f2474037823122473852725e52337
+:108150002525fae5243400fb74a02af58274f73b48
+:10816000f583e0fa7b00121d390527e522c313f5dc
+:1081700022e527c394085004e522708c0521e521ef
+:10818000c3940850030280d38528c77410029d5100
+:1081900012819422e02afaa3e03bfbea22900364d6
+:1081a000e0f8e521c3982274f6122518e975f03b32
+:1081b000a4faabf01213559003cd12a96fe5c7ffd7
+:1081c00075c70390f79e129e83e4c39af521741f2e
+:1081d0009bf52278211227607c007d0012821e12fe
+:1081e000249c8fc77c917d097a677b0312163779af
+:1081f000087ccf7d037a007b00121859e96408607f
+:108200001975210875220078211227607c007d00f5
+:108210007acf7b0312821e12249c028a31fb121f2a
+:108220000774022274f012251874fe1224b6122765
+:108230004c8a278b2812a5320592a385822185833b
+:1082400022129e83ea4b60158e828f83a3a3a3859f
+:108250008223858324c3e09aa3e09b50087901120e
+:1082600014e70283490592900995122773128bb384
+:1082700012249c8e828f83a3a3a3a3a3858225852a
+:1082800083268e828f83e014605d14607214603ade
+:1082900014600d14602b24fe7003028326028349b0
+:1082a000852384852485059212277b85218285225a
+:1082b0008305921283641213a9740212249c028310
+:1082c0005012835e1213a302835078251227608513
+:1082d0002384852485059212277b12835312139dd4
+:1082e000740412249c806978251227608523848574
+:1082f0002485059212277b12835312137380e17831
+:1083000025122760ee2417f584ef128a0e12277bc0
+:1083100085238485248512277b128353121361746d
+:108320000612249c802aee2417f582ef129733f56b
+:1083300023a3e0f524e523452460867823122760f3
+:1083400012835e1213790282b9aa27ab2812181180
+:10835000029d54ee2415f582ef12950ce0f985216b
+:1083600082852283129e77aa27ab282274021224c8
+:108370009c8532828533835392fe122754740212f5
+:10838000249c7f080225f074f612251874fe12242e
+:10839000b612274ceafeebff892112897bf584a3f4
+:1083a000e039f585e584242af582e5851297336066
+:1083b000220592e024fd600f24fc700674076521fd
+:1083c0007011752100800c740a652160f5740165d7
+:1083d0002160efe4439201f00592f0900363e0f531
+:1083e00022ac21eefaeffbe0f9121d03900363e0eb
+:1083f00065226005a922121427028a2374f6122529
+:1084000018e9ff8c218d22740a1224efe0fd9003fd
+:1084100063e0fe7821122760effc900363e0f9121d
+:108420001cb5740212249c900363e06e6005eef9a3
+:10843000121427028a3174f212251874fe1224b61f
+:1084400012274c8a258b268c218d22e9fe128a1454
+:108450001284ef900363e0ff858482858583a38582
+:1084600082238583247821122760eefd7c048523f6
+:108470008285248312858412249c900363e06f60bc
+:1084800005eff9121427e5842417f8e5853400f97f
+:108490008e2188828983e02521f0a3e03400f074e6
+:1084a000166e701788828983c3e09416a3e0940047
+:1084b0004009aa25ab261214e18019790085238290
+:1084c000852483129e831214e7e40592f0aa25ab5b
+:1084d000261218118532828533838022ea2409f816
+:1084e000eb3400f9853282853383e8f0a3e9f07b31
+:1084f00007128984228532828533835392fe1227a4
+:1085000054740212249c7f060225f074f41225187c
+:1085100074fe1224b612274c8a238b248c218d22c0
+:10852000e9fe1294717407687010eef9ac21ad2267
+:10853000aa23ab241214f3029a2e740a68059290af
+:1085400003637026e0ffeefcaa21ab22e0f9121cc7
+:10855000bb900363e06f6005eff9121427e4059206
+:10856000f0aa23ab2412181180cde0ff7821122746
+:1085700060eefd7c00858482858583a3128584124c
+:10858000249c80cd12b87c900363e0f9121cb57472
+:10859000022274f012251874fe1224b612274c74ad
+:1085a000fc12248612a9698532848533850592e000
+:1085b000240912a5a98582258583267b07059212a9
+:1085c00084f185328285338312a06f24faf5210568
+:1085d00092129d4674021224ef12af728525828595
+:1085e0002683a385822785832874021224ef1289ab
+:1085f0006f7e00804b12877fe5272402f523e52854
+:10860000128868122760852582852683e024fefd76
+:108610007c0385278285288312858412249c9003fd
+:1086200063e06f6005eff9121427852582852683a4
+:10863000e02efee0f8e52728f527e5283400f528a8
+:10864000eec3952140af8525828526835392fe1285
+:1086500081a0f895e0f9e52528f582e52639f5832e
+:1086600012867b74021224f9059212970c12af6fd6
+:10867000129e7d1214e17404029d51a3e02401f8be
+:10868000a3e03400f92274f012251874fe1224b607
+:1086900012274c74fe1224868a238b241284dc85d4
+:1086a0002382852483a3a3e024faf522128a148569
+:1086b0008427858528e527242af582e52812a5ad9b
+:1086c0007401f085328285338312a98b64017004b2
+:1086d0007e0280027e107521008010e06f6005ef41
+:1086e000f912142774022e2521f521e521c39522c4
+:1086f000504f12877fa82185328285338312b89a22
+:10870000eef5257825122764e5842403fce58534fd
+:1087100000fd0592a3e01289b0121ccd7401122451
+:108720009ce990036370b4e06f6005eff9121427c1
+:10873000852782852883e4f0aa23ab2412181180b0
+:108740003b852221e52124fef8e434fff98e21e85f
+:10875000c39521f8e99400f98532828533835392d9
+:10876000fe12a3c92401f8a3e03400f9852782850d
+:10877000288312af6faa23ab241214e1029d4f533a
+:1087800092fe900363e0ff2274f012251874fe122b
+:1087900024b612274c74fe1224868a278b28128452
+:1087a000dc852782852883a3a3e024fbf521128d95
+:1087b0009c05929003cd129721858225858326e51d
+:1087c00025242af582e5261295b17f00800de06e02
+:1087d0006005eef912142774042fffefc3952150a2
+:1087e00058eff88532848533850592e02812a5a9d3
+:1087f0008582848583850592900363e0fe7522025d
+:108800007822122764e5252417f523e526128868c7
+:1088100012276012899c12249ce990036370afe0d8
+:108820006e6005eef9121427852582852683e4f013
+:10883000aa27ab28121811802ca8218532828533f3
+:1088400083e028f8a3e012b82f24fef582e934ff74
+:10885000f58312867c85258285268312af71aa272f
+:10886000ab281214e1029d4f3400f52478232274c2
+:10887000f012251874fe1224b612274c74fe12242e
+:10888000868a278b288a828b83a3a3a3a3a3a3a36f
+:10889000a3a38582218583228a828b83a3a3e024dc
+:1088a000faf52512897bf8a3e039f9853282853300
+:1088b0008312af7285328285338312896f7f008085
+:1088c00012e06e6005eef91214278521828522835d
+:1088d000e02fffefc39525505c8f23e5212523fa78
+:1088e000e5223400fb8a828b835392fea385828427
+:1088f000858385900363e0fe852182852283e024c1
+:10890000fcf5237823122764ea2405f523eb12886b
+:108910006812276012899c12249ce990036370a15d
+:10892000e06e6005eef912142712afb6aa27ab2845
+:1089300012181180378521828522835392fee0f838
+:10894000e525c398f895e0f9e52128f582e5223977
+:10895000f583a3a312867b85328285338312a99483
+:10896000e8f0a3e9f0aa27ab281214e1029d4fe03a
+:10897000242a12b89c74010592f02212898212896d
+:108980008f227b07900363e0fa79011219d9221232
+:10899000899322128da49003cde0282285848285bc
+:1089a0008583a3a31299c31289b0121cc774032232
+:1089b000faa3e0fb0592900363e0f92274f6122516
+:1089c0001874fe1224b612274c128b0e70067a868b
+:1089d0007b01802f128a14e5842416f584e5851224
+:1089e0008a0ee0a2e040047a8180e5128d8770064d
+:1089f0007a827b01800d0592e0c2e0f01213b57a15
+:108a0000007b008532828533835392fe801b12b82f
+:108a1000a0059222128a1822128993f584a3e039c4
+:108a2000f5852285328285338312275474021224fd
+:108a30009c7f020225f074f012251874fe1224b6f1
+:108a400012274c8a258b268c278d2874121224ef2e
+:108a5000e0f521128b0e70067a867b01803e128d26
+:108a60009260047a8180f3128d8770067a827b018e
+:108a7000802ae521c394145004af2180027f14851d
+:108a800027218528227821122760eff9ac25ad2611
+:108a9000121397740212249c7a007b000283717473
+:108aa000f012251874fe1224b612274c8a278b2840
+:108ab000ec128b0d70067a867b01804b128d9260d2
+:108ac000047a8180f3efa2e04005c3940450047a55
+:108ad0008080e5128ff670047a8280dcefc39416f2
+:108ae0005004effe80027e16740a128c1012277357
+:108af000128bb312249ceef9ac27ad28aa25ab2625
+:108b000012138b7a007b00028371eafeebff1214d2
+:108b100027e92274f012251874fe1224b612274c8d
+:108b200074fe1224868a238b24ecfeedff74161249
+:108b300024ef128cb870067a867b018073128d92b6
+:108b400060047a8180f3e523452470047a8080e90b
+:108b500012b8dd70047a8280e0e522c394125005d9
+:108b6000852221800375211274080592f0a3e52364
+:108b7000f0a3e524f0900995122773128bb3122409
+:108b80009c74141224f9059212277b8e278f2805d6
+:108b9000927827122760a921ac23ad2474041224f3
+:108ba000ef129e8312137f740412249c7a007b00c0
+:108bb00002836c7b070592900363e0fa7901121936
+:108bc000df74042274f412251874fe1224b61227de
+:108bd0004c8a22128b0e70067a867b01802f128db2
+:108be0009260047a8180f3129bf470067a827b0192
+:108bf000801b7409128c10122773128bb312249ce1
+:108c0000a922eefaeffb1213857a007b00028d7128
+:108c10000592f0a3e4f0a3f09009952274f01225d8
+:108c20001874fe1224b612274c74fe122486853264
+:108c300082853383ecf0a3edf0eafeebff741412af
+:108c400024ef128cb870067a867b018068128d92b0
+:108c500060047a8180f3ee4f70047a8080eb121802
+:108c60000b8a278b28ea452870047a8280dbe5226c
+:108c7000c3941450058522218003752114740605c0
+:108c800092f0a3eef0a3eff0900995122773128be8
+:108c9000b312249c853284853385059212277ba9e3
+:108ca00021eefceffdaa27ab2812139174021224c7
+:108cb0009c7a007b0002836ce0f522121427e922e3
+:108cc00074f412251874fe1224b612274c128b0a63
+:108cd00070067a867b018044128d9260047a8180ce
+:108ce000f3ee4f70047a8080eb128d8770047a82e5
+:108cf00080e27407128d8deef0a3eff085848285fb
+:108d00008583a3a3a3eef0a3eff0e5842417f582f7
+:108d1000e58512a5ade4f0a3f0128f2f805374f413
+:108d200012251874fe1224b612274c128b0a7006f4
+:108d30007a867b01803b128d9260047a8180f3ee0b
+:108d40004f70047a8080eb128d8770047a8280e203
+:108d50007405128d8da3a3a882a983eef0a3eff072
+:108d60008882898312b8d70592a3e8f0a3e9128d0f
+:108d7000fe8532828533835392fe12275474021289
+:108d8000249c7f040225f012180bea4b22128f2339
+:108d9000a322128d9c9003cd12986b22128da022db
+:108da000128da422900363e075f03ba4f8a9f02291
+:108db00074f212251874fe1224b612274c8a218be5
+:108dc00022ecfeed128b0d70067a867b01802c1250
+:108dd0008d9260047a8180f3128d8770067a827b8f
+:108de0000180187404128d8de521f0a3e522f005b1
+:108df00092a3a3a3eef0a3ef128dfe0284f5f0126e
+:108e000014e17a007b002274f012251874fe1224fb
+:108e1000b612274c8a218b228c278d28741212249b
+:108e2000ef12950074161224efe0fe128b0e700df7
+:108e3000aa21ab221218117a867b018058128d92da
+:108e4000600baa21ab221218117a8180ec74026e99
+:108e5000601274106e600daa21ab221218117a8074
+:108e60007b0180317403f08e2375240005927823f2
+:108e700012276074161224ef1291a912249ce58423
+:108e80002415128e98858482858583128f37aa21b6
+:108e9000ab22128f2f029d54f582e58512a5b1ee0b
+:108ea000f02274f012251874fe1224b612274c8a90
+:108eb000278b288c258d2674141224efe0128b0d3d
+:108ec00070067a867b018058128d9260047a8180c8
+:108ed000f374026f600974106f60047a8080e51289
+:108ee000180b8a238b24ea452470047a8280d58f5c
+:108ef00021752200782112276074141224ef129138
+:108f0000a912249ce5842415f582e58512a5adef10
+:108f1000f07401128f23128f37aa23ab24128f2fe4
+:108f20000283710592f085848285858305922212e1
+:108f300014e17a007b0022a3e527f0a3e528f005e1
+:108f400092a3a3a3e525f0a3e526f02274f0122551
+:108f50001874fe1224b612274c74fe12248612a92d
+:108f6000698c278d2874141224efe0fea3e0ff74af
+:108f7000181224ef128cb870067a867b0180741266
+:108f80008d9260047a8180f3e522c3941140047ac3
+:108f90008080e8128ff670047a8280dfe5842417df
+:108fa000128e98a3eff074020592f0e5842415f573
+:108fb00082e5851297250592f0f523752400782324
+:108fc00012276074181224ef1291a912249c853282
+:108fd0008285338312b8d785848285858312af71e9
+:108fe0000592a3a3a3e527f0a3e528f0aa25ab26c5
+:108ff000128f2f02836c12180b8a258b26ea4526c6
+:109000002274f112251874fe1224b612274c74fc37
+:1090100012248674021224ef12a96fe5c7f5277592
+:10902000c70374021224f9059212941585328485bf
+:109030003385e5820592f0a3e583f085328285339e
+:1090400083059212a98bfaf874021224ef12919bf5
+:10905000059290f79de0f522ff741dc39af5268ec8
+:10906000258e2180080525efc313ff052190f79c6d
+:10907000e0fce521c39c5042eec39526503c12b85b
+:10908000d412916f70e5efa2e050dca3a3a3a3a3d9
+:10909000e0640270d07523027524007823122760e3
+:1090a000129e6c8e23e584252312b82c2402fae943
+:1090b0001291b312249c0e0e80adee601385848253
+:1090c000858583a3ef600474028002740312918487
+:1090d000e52570030291678532828533835392fec2
+:1090e00012a98bf8741dc398fa95e0fbc3ea94109b
+:1090f000eb9400a2d265d033406d74021224ef12bb
+:10910000919baf228e21059212b8d48006efc31333
+:10911000ff0521e521c39c5037e526603312916f8e
+:1091200070efefa2e050e6a3a3a3a3a3e064107046
+:10913000dc7521108e227821122760129e6ce58446
+:1091400024021291b012249c7e1074ff2525600b1e
+:10915000858482858583a3740680098584828585bc
+:1091600083a374071291848527c7740402b0dae5db
+:109170002175f006a4faabf0e82afae93bfb8a82f3
+:109180008b83e022f074012ef80592f0088532827c
+:10919000853383059212a98f28f022059212b89a7e
+:1091a0000592a3a3a3a37e0022129e77e584240543
+:1091b000fae5853400fb121f0174022274f11225b6
+:1091c0001874fe1224b612274c74f91224868532c4
+:1091d00082853383ecf0a3edf08a238b24892175fb
+:1091e000220012afb68a828b830592a3a3a3a3aefb
+:1091f00082af8374026521600deefaeffb121a153f
+:10920000e9600375210274181224ef1299b27410e8
+:109210000592f074026521600579000294038e8244
+:109220008f830592e07004a3e0642870047e0080c0
+:10923000248e828f83e064017004a3e064287004ac
+:109240007e0180118e828f83e064037004a3e0644a
+:109250002870c67e0274181224ef1299b2740a059f
+:1092600092f0e5c7c0e074041224efd0e00592f05c
+:1092700075c70312afb6059290f79ce0f526f5820c
+:10928000a88285238285248312942550030293f6b5
+:109290008523848524850592a3a38584828585837f
+:1092a000059212942550048825800985848285853d
+:1092b00083e0f525852382852483e014ff8014ef65
+:1092c000f874021224f9439201129415e8f0a3e411
+:1092d000f01f0fefc3952540030293e75392fe1250
+:1092e000b8d474051224ef12af728f82a882e87589
+:1092f000f006a4faabf074051224f90592e02af501
+:1093000082a3e03bf583ac82ad830592e06e70c230
+:10931000852282aa828532848533850592e02a12cd
+:1093200099ad74021224f9e5820592f0a3e5831247
+:109330009408e02404f52785328285338312a98bb3
+:10934000f5236009e527652360030293e78527235a
+:10935000ea252312af8240030293e7e527f0eaf5fe
+:1093600022e8240108e43400f974021224ef059283
+:109370001299b2e80592f0a3e9129408129c021225
+:1093800027608c828d83a3a3a312b8a51224efe0db
+:109390002404faa3e01291b312249c8028ef75f004
+:1093a00006a4f8a9f074051224ef5392fe129867f0
+:1093b000f870030292bf74016870030292bfe86ef6
+:1093c00070030292bf0fefc3952640d1e5266f6070
+:1093d000030292bf74021224ef5392fe12b8be74bd
+:1093e000fff0a3f00292d2e522600b74181224ef72
+:1093f0005392fe12afbc74041224ef5392fee0f5b8
+:10940000c7a922740702b0daf08c828d830592a37b
+:10941000a3a3a3a32212941922e0f582a3e0f5836b
+:109420000592a3a32212b87cc3e89ae49b2274f7a6
+:1094300012251874fe1224b612274c129471740669
+:1094400068600a74086860057409687021e4129500
+:10945000a87c000592a3e0faa3e0fb0592e0f912d4
+:109460001caf900363e06e6005eef912142702a4ae
+:1094700057128a181289820592e0f82274f0122598
+:109480001874fe1224b612274c8a278b28ecffeda5
+:10949000fe74121224ef129500ec24010ce4340047
+:1094a000fd1213678a848b85e5254526701bef1214
+:1094b00094f2fec3941540027e147d00eefceff999
+:1094c000aa84ab851215e3801ceec3941540027e7e
+:1094d000148e217522007821122760ac25ad26124a
+:1094e00091b612249ceef9aa27ab2812136d029da7
+:1094f00054eef91215cbe9220592e02433129508b7
+:10950000e0f525a3e0f52622f582a3e03400f583fb
+:1095100005922285328285338302a46074f7122576
+:109520001874fe1224b612274c8a848b851295601b
+:1095300060257b081284f1129560f8e4f0900363d3
+:10954000e0fe740128fae0f9121cc1900363e06e9a
+:109550006005eef9121427aa84ab8512181180b3a6
+:10956000128d9c129c12241912aa292274f712251a
+:109570001874fe1224b612274c128d92640b6025cb
+:10958000e5842419f582e5851295b1128a14740bcd
+:1095900005921295a8f9121cfd900363e06e600518
+:1095a000eef912142702a457f00592900363e0fe2f
+:1095b0002212a5b174010592f02274f112251874db
+:1095c000fe1224b612274c74fc1224867402122454
+:1095d000ef12a96f89228c271297140592a3a3a3d7
+:1095e000a882a983888489850592129704fa8882c3
+:1095f000898312a98bf52675210074075af8740126
+:10960000b800028004c333d8fcf525ea13131354c1
+:109610001ffe804005929009951227737b08128bdc
+:10962000b512249c129c0b2419f582e9129725f09f
+:1096300074021224f9059212277bad27ac22791d02
+:1096400074021224ef0592129e8312157174021295
+:10965000249c05215392fe12819d40030296f685bb
+:109660002182a882e875f075a4faabf09003651228
+:10967000974ce5842474f582e585129733a2e05077
+:10968000d1e8900363f0900361e584f0a3e585f0f1
+:10969000e526a2e4502fe8129737f8eb39f9e824d1
+:1096a0001a1297305525601d128d87604974021279
+:1096b00024f9059212277bad27ac22791b12157174
+:1096c000740212249ce526a2e55087900363e01201
+:1096d0009737faeb39fbea2422f582eb12973355e0
+:1096e000257003029652129563600302965212b8d7
+:1096f000dd6003029614740412249c853282853343
+:109700008302b0e612970c0592a3e022e0f582a353
+:10971000e0f58322e975f006a4f8a9f0059290f728
+:109720009612a5422212a5b1e52222e4f0e82436e1
+:10973000f582e912aa2c2275f03ba4f8a9f0900357
+:10974000cde02efaa3e03400fbea28221297502243
+:10975000e02af584a3e03bf5852274f01225187405
+:10976000fe1224b612274c89218c278d28741212e0
+:1097700024efe0fea3e0ff752200e5c7f52475c7de
+:1097800003ea14f52590f79ce0f8e525c398400b13
+:109790007522018e828f83e4f08046e525129e8734
+:1097a00070098524c77a887b018046a9251294f325
+:1097b0008e828f83f0c39521500575220780d8a82b
+:1097c00021e0c398f0f8c3942050048823800375e7
+:1097d0002320e523f0ad21fca925aa27ab281215eb
+:1097e000e38524c7e5226005fa7b0480047a007bc8
+:1097f0000002837174f612251874fe1224b6122723
+:109800004ceaf8ecfaedfb740c1224ef129e73751f
+:109810002100e5c7fe75c703e814f990f79ce0f84e
+:10982000e9c398400b7521018c828d83e4f080237d
+:10983000e975f006a4f8a9f090f796129867f9a2d6
+:10984000e750047410800274028c828d830592f0bc
+:10985000121a218ec7e521a2e05005fa7b0480048c
+:109860007a007b00028a2312986b2212a3d3e02293
+:1098700074f012251874fe1224b612274c74fe12ce
+:109880002486853282853383ecf0a3edf08925743c
+:10989000141224efe0f5217e007f00e5c7f5267560
+:1098a000c703ea14f52290f79ce0c3952250030207
+:1098b00099a0e5221297158582278583280592a312
+:1098c000a3e0fc24fa600a14600724fb60030299f9
+:1098d0009e740c6c700302998c85278485288505fd
+:1098e00092a3a3a312970c852584aa8485828485dc
+:1098f0008385a3a3a3a3e0f8852123ea2523f523e9
+:10990000e43400f524e89523e49524c365d033506e
+:10991000057e0d0299a10592a3a385828485838586
+:10992000852182a882790074066c88238924782393
+:10993000701612276074021224ef1299befaa3e087
+:109940001291b312249c803412276074021224ef07
+:109950001299be1299adaa82ab831291b612249cc1
+:10996000e5212525c0e08527848528850592a3a3c8
+:10997000a31294151299b2d0e00592f08527828542
+:1099800028835392fea3a3e0640c7005129e7d8091
+:10999000047a007b00ac21a92212158380050e0eeb
+:1099a0000e7f048526c7eefaeffb02836c12950842
+:1099b000a3221299b622e0f584a3e0f5852212993c
+:1099c000c32a22e0fca3e0fd0592e02274f41225f4
+:1099d0001874fe1224b612274c8c848d85e9ff740e
+:1099e0000e1224efe0f522e5c7f52175c703ea144e
+:1099f000fe90f79ce0c39e50047901802ee5226022
+:109a0000047a0280027a80eef91215c5e9701ce42e
+:109a1000f523f5247823122760ad22effcaa84ab4e
+:109a200085eef91215dd740212249c8521c785325a
+:109a300082853383028d7a74f312251874fe122402
+:109a4000b612274c8a218b2212a345a3a3a3a3a35a
+:109a5000e0700a12b222607712181180f6e5c7fe94
+:109a600075c703e584242bf523e5853400f52485ab
+:109a7000238285248312b8f1605388828983a3a34b
+:109a8000a3a3a3a3a3a3a3aa82ab83e0ff8a848b8f
+:109a9000850592a3a312277b7d0188828983059285
+:109aa000a3a3e024f7fcea2404faeb3400fb74ffe0
+:109ab0002ff91215dd740212249ce9f525aa23abb7
+:109ac00024121631121811e525702e80a28ec7853a
+:109ad0002182852283a3a37405f0852182852283b8
+:109ae000a3a3a3a3a3a3a3a37419f07900aa21abf2
+:109af0002212136d802312181112b22270f8e5257c
+:109b0000f52378231227648f23ac237d007918aacc
+:109b100021ab22129d3212249c853282853383121e
+:109b20002754740212249c7f050225f074f4122538
+:109b30001874fe1224b612274c8a848b8585848281
+:109b4000858583a3a3a3a3a3a3a3a3a3ae82af836b
+:109b5000e5c7f52175c703e014f990f79ce0c399b8
+:109b6000501f7401f52178211227648e828f831291
+:109b70009e737916aa84ab85129d3212249c029a98
+:109b80002e7a021215c5e970db129bf48521c7708d
+:109b900003029ea2ac84ad85129c0b242bfae934ff
+:109ba00000fb121637858482858583a3a3858221d5
+:109bb000858322129c02122760e5842404fce5853b
+:109bc0003400fdee2404faef1291b312249c852197
+:109bd00082852283e08e828f83a3a312b826a3a35b
+:109be000a3a3a3a3a3a37417f07900eefaeffb12cb
+:109bf000136d808a12180b8a238b24ae23af24eeb8
+:109c00004f22e0f523752400782322129c0f2212a4
+:109c10008da09003cde028f8a3e039f9e82274f094
+:109c200012251874fe1224b612274c74fb122486d7
+:109c300074031224ef12a96f8925ecfeed129d45e5
+:109c400074011224ef12af72e5c7f52275c7038eb7
+:109c5000828f83a3a3e0f88823ee2523f582ef12f9
+:109c60009d38858227858328741bc398f521802819
+:109c7000e9c521c39521f5218e828f83a3a3e02519
+:109c800023f0e5272523f527e5283400f52874017e
+:109c90001224ef12afa504f074011224ef5392fec8
+:109ca00012afa5fac395255079e5216075853282fa
+:109cb0008533838582238583240592782312276048
+:109cc0008527238528247823122760a9217c007dfd
+:109cd00000eac333fae433fb74071224ef12a081c5
+:109ce000faa3e0fb1215b3740412249ce9f5238552
+:109cf0003282853383e07003029c70853284853321
+:109d000085059212277f74041224ef059212a98b05
+:109d1000fca3e0fd790eeefaeffb129d3212249cbb
+:109d2000800c8522c77900eefaeffb12136d7405e3
+:109d3000801f1213c1740122129d3c223400f5834e
+:109d4000a3a3a3a322ff12898ff8a3e039f92274f9
+:109d50000212249c85328285338302837a74f01246
+:109d6000251874fe1224b612274c8c218d22e9fe90
+:109d700074141224efe0f527a3e0f5287f00e5c76f
+:109d8000f52675c703ea14f52590f79ce0c39525e1
+:109d9000500c8527828528837401f0029e647a0125
+:109da000a9251215c5e9852782852883f06003025d
+:109db0009e64852582aa82ea129e8770700592129f
+:109dc0008a14a884a985e824351297307053741238
+:109dd0001224ef129e73e82438f582e912a5adec47
+:109de000f0a3edf0e8243af582e9128e9c9003632b
+:109df000e0ffeef5237823122764ac21ad22ea249c
+:109e0000010ae43400fb900363e0f9121cd37401ef
+:109e100012249c900363e06f6005eff91214278011
+:109e20007812972b852782852883029d9aa925126f
+:109e300094f3ffc39521e49522500b852782852852
+:109e4000837407f0801ee521cfc39fffeec39f50b0
+:109e500002eeffad21effca92574121224ef129e31
+:109e6000831215e38526c7eff9029d548a828b83fe
+:109e7000a3a3a3129e7722e0fca3e0fd22853282f9
+:109e800085338312b87c2275f006a4f8a9f090f708
+:109e90009612a3cea3e0640c227a017b0090039a71
+:109ea00080077a017b0090032e740802235774f117
+:109eb00012251874fe1224b612274c74f812248648
+:109ec00012a96974061224efecf0a3edf089277f44
+:109ed00000e5c7f52675c70390f79ce0f522f582eb
+:109ee000ac8285328285338312a079c3ec9ae49bdd
+:109ef000500302a06085328285338312a06df8a3df
+:109f0000e0f9c3ec98e49950048c218003e8f52132
+:109f1000ea14fe8532828533830592e02404f8a397
+:109f2000e03400f974041224ef12af7280138884b5
+:109f300089850592e0f8a3e0f9e80592f0a3e9f03d
+:109f40000eeec39521400302a06012b8d474021231
+:109f500024ef12af72ee75f006a4f8a9f0740212a5
+:109f600024ef129867f525a2e7500b12ad5d12247d
+:109f70007312ad80800312ad6bf585eaf52378236b
+:109f8000122764ac84ad85790274051224ef129e09
+:109f90008312ad5712249ce960a67a01eef91215de
+:109fa000c5e9709cac27853282853383e02406faac
+:109fb000a3e03400fbeef91215bfe96083eff874fb
+:109fc000061224f90592e02812a5a9a882a983ef18
+:109fd000c39412400302a06074042fff8e23e52374
+:109fe0002401fae43400fbea059212a9708017ee0e
+:109ff00075f006a4faabf074021224ef5392fe122d
+:10a00000a0816525601c0eeec3952240e2e5226e1c
+:10a010007010888289835392fea3a374fff0a30279
+:10a020009f3f1e74041224ef5392fe12a07988827f
+:10a0300089830592a3a3ea700374286b60177401e7
+:10a040006a700374286b600d74036a700374286b64
+:10a050006003029f2eee2401f8e412b82f029f3c09
+:10a060008526c7eff9740802b0da12a5b10592127d
+:10a07000a0732212a99ca3e02212a98ffaa3e0fbed
+:10a08000221297500592e02274f412251874fe12e1
+:10a0900024b612274ce9ff8a218b22ecfeef12979f
+:10a0a00015aa82ab830592a3a3e0fc8e82a88279d5
+:10a0b00000603814603514603214602f14605d1431
+:10a0c000700302a15814700302a1c514700302a208
+:10a0d0000014700302a23e14700302a2b5147003b0
+:10a0e00002a2f414700302a1c58004ec6e600302a6
+:10a0f000a30c882389247823122760ac21ad22ea9f
+:10a1000024030a0a0aeb12a30f12249c8b22ea45ad
+:10a1100022700479018002790002a30c8a828b8369
+:10a12000a3a3a3a3a3e06e70c68823892478231277
+:10a130002760ac21ad228a828b83a3a3a3129e83c6
+:10a14000121efb740212249c8b22ea4522700479b1
+:10a15000018002790002a30c8a828b83a3a3a3e06f
+:10a16000faa2e75004781080027802e86e600302d9
+:10a17000a30ceaa2e7501d547ff5238924740478c8
+:10a1800023122473059290f798e02523f582a3e02b
+:10a1900035248012c333f8e433f9059290f79ae03e
+:10a1a00028f582a3e039f583ac82ad83eef5230573
+:10a1b000927823122764eef9aa21ab2212ad57122e
+:10a1c000249c02a30c8a828b8312a32b6e60030251
+:10a1d000a30c8823892405927823122760ac21ad33
+:10a1e000228a828b8312afae121efb740212249c51
+:10a1f0008b22ea4522700479018002790002a30cc7
+:10a200008a828b8312a97b6e600302a30c88238948
+:10a210002405927823122760ac21ad228a828b8399
+:10a2200012a06f2401faa3e012a30f12249c8b2228
+:10a23000ea4522700479018002790002a30c7402bd
+:10a240006e600302a30c12a345aa82ab8312a3186b
+:10a25000b800028004c333d8fcc0e012a31f12b8b8
+:10a260002c241af582e912a5add0e0f8e05860047c
+:10a270007c0180027c008a828b8312a318b80002c2
+:10a280008004c333d8fcc0e012a31f2422f582e966
+:10a2900012a5add0e0f8e0586004780280027800a2
+:10a2a000852182852283ec48f8e0687002a3e07083
+:10a2b000597901805774026e70528a828b83a3a3ee
+:10a2c000a3a312a318b800028004c333d8fcc0e0d3
+:10a2d00012a9bd12a5add0e0f8e058600478018065
+:10a2e000027800852182852283e0687002a3e070f5
+:10a2f0001b09801874016e7013852182852283e00a
+:10a30000f52112146fe9652160a77900028d71347f
+:10a3100000fb121efb740222e05407f874012212a3
+:10a32000a3232212ac7ef8e5842822a3a3a3aa8249
+:10a33000ab8312a33622e02404f584a3e03400f5b5
+:10a34000850592e022128a188a828b83a3a3a3a395
+:10a350002274f712251874fe1224b612274ce975e0
+:10a36000f006a4f8a9f090f79612a3c9f874016a50
+:10a370007009e8a2e040497902804b74026a7009d2
+:10a38000e8a2e1400e7903803d74806a7036e8a24d
+:10a39000e750f2a2e4502d0592900363e075f0e4db
+:10a3a000a4f8a9f0900453129c15240f129730a220
+:10a3b000e7500990036112a98bf4700879058006b3
+:10a3c000a2e340d3790002a45712a3cee02212a345
+:10a3d000d3a322e028f584a3e039f5850592227401
+:10a3e000f712251874fe1224b612274c1297148502
+:10a3f0008284858385a3a3e0f9605c1460591460ae
+:10a400005614605314601714601f14602e146035c6
+:10a4100014602414602114603814601f8037059282
+:10a42000a3a3a3a3a3e0f9802e0592a3a3a3e0a274
+:10a43000e75004791080207902801c0592a3a3a321
+:10a4400012a33280e10592a3a3a312a9ab059280c7
+:10a45000d47901800279008532828533835392fe5c
+:10a46000122754740212249c7f010225f074f0120a
+:10a47000251874fe1224b612274c8a228c278d28a8
+:10a480008b25128b0e70077a867b0102a51d12a503
+:10a4900032ee2435f584ef12b8a085848285858359
+:10a4a0000592e07074ee2431f582ef12a5ad12b87a
+:10a4b000f160668584828585837401f0ee2436f52b
+:10a4c00082ef129725f07049ee243af584ef12a539
+:10a4d00025e525c398500585252180028821e521a1
+:10a4e000f0f52375240005927823122760ac27ad80
+:10a4f00028ee2438f582ef12a520a3e01291b512c0
+:10a50000249c0592e0f8ee2433f582ef12a06a282d
+:10a51000f07b095392fe12a5b67a007b00029d548f
+:10a5200012aa2cfa2212a529223400f5850592e000
+:10a53000f82212a53aae82af8322128da005929026
+:10a5400003cde028f582a3e039f5832274f71225c4
+:10a550001874fe1224b612274cea128b0d70067a7c
+:10a56000867b01803c12aa322435f8eb3400f9884e
+:10a570008289830592e07025ea2431f584eb12a5e7
+:10a5800025a3e0f9e849601574010592f0ea243644
+:10a59000f582eb12a5adeff07b0912a5b67a007b30
+:10a5a0000002a4570592e02431f582a3e012a5b180
+:10a5b000223400f58322900363e0fa79011219eb4b
+:10a5c0002274f012251874fe1224b612274c74fb64
+:10a5d00012248674041224efe9f074011224ef129d
+:10a5e000a96fec853282853383f074031224efed7a
+:10a5f000f074171224efe0f523a3e0f52412aa3239
+:10a60000f8ebf974041224ef0592e0fc2401f5251f
+:10a61000e43400f526ec75f006a4fcadf090f79656
+:10a6200012ac96858427858528853282853383e020
+:10a63000fe7f002523f521e43524f5228527828538
+:10a640002883a3a3e024fa700302a6d414700302a3
+:10a65000a71c14700302a78014700302a84b147087
+:10a660000302a8d114606314600302a90c740312de
+:10a6700024efe0700302a90ce824351297307044ef
+:10a68000900363e0fe74011224f9059212277b0502
+:10a6900092782312276074041224efe0fd7c02aa52
+:10a6a00025ab26900363e0f9121cd9740412249c94
+:10a6b000900363e06e6005eef9121427029e997410
+:10a6c0000502836e12972bf980f512146fe970045e
+:10a6d000790380eb852782852883a3a3a38582271e
+:10a6e000858328e5234524600912a9dc4004790705
+:10a6f00080cd12a9c95004790d80c48e218f220506
+:10a7000092782112276074031224ef12aa09faa387
+:10a71000e035241291b512249c02a90c852782856c
+:10a720002883a3a3a3858227858328e52345246066
+:10a730000512a9dc50b812a9c940bc8e218f220590
+:10a7400092782112276074031224ef12aa09f5826d
+:10a75000a3e03524f5830592a3aa82ab831291b6b8
+:10a7600012249c853282853383e0a82328c0e085ab
+:10a77000278285288312a9abd0e00592f002a90cac
+:10a78000853282853383e07005790002a6bfe52318
+:10a790004524600ec3e5239402e52494004003029f
+:10a7a000a6eec3e5219403e5229400400302a6f738
+:10a7b000740165237002e524700a74011224ef12fb
+:10a7c000a994800874011224ef12a97512a95aa83d
+:10a7d00082a983eca2e0e05407fd7401500fbd0094
+:10a7e000028004c333ddfc12a9ef4d800ebd0002d0
+:10a7f0008004c333ddfcf412a9ef5df012b2131232
+:10a80000974ceca2e188828983e05407fa740150e6
+:10a810000fba00028004c333dafc12aa184a800e71
+:10a82000ba00028004c333dafcf412aa185af0907a
+:10a83000036112a98bfe74ff6e600a12b201eefb77
+:10a840007a881218411214d502a78985328285337d
+:10a8500083e0700302a789e5234524600ec3e52346
+:10a860009402e5249400400302a6eec3e52194037c
+:10a87000e5229400400302a6f7740165237002e507
+:10a8800024700a74011224ef12a994800874011232
+:10a8900024ef12a97512a95aeca2e0e05407fa7449
+:10a8a00001500fba00028004c333dafc12a9b54a82
+:10a8b000800eba00028004c333dafcf412a9b55a40
+:10a8c000f079087ccf7d037a007b0012184102a743
+:10a8d00089c3e5219402e5229400400302a6f7858e
+:10a8e0003282853383e0700302a789121883e9c39b
+:10a8f0009402400302a6d074011224ef12a98b60c7
+:10a90000047901800279007aff1214ab900363e0ae
+:10a91000fe74031224efe060047c0080027c01746a
+:10a92000011224f9059212277b05927823122760e1
+:10a9300074041224efe0fdaa25ab26900363e0f92e
+:10a94000121cd9740412249c900363e06e700302fd
+:10a95000a789eef912142702a789e0fc85278285d2
+:10a9600028830592a3a3a3a322853282853383ea99
+:10a97000f0a3ebf0221299b6059222a3a3a3aa8218
+:10a98000ab838a848b85059212941912a98f2212a7
+:10a99000a9a1e02212a9982212a99c2212a9a1a37e
+:10a9a00022e0f584a3e0f58505922212a073f582da
+:10a9b000a3e0f58322fa12a9bd12aa2c2212ac7ec2
+:10a9c000f874cf28f5827403228527828528835363
+:10a9d00092fe12a336c39521e4952222e02404f5c9
+:10a9e00084a3e012a529c3e52398e524940022fd61
+:10a9f00012ac7afeea2e12a9fd12aa2c22faeb342e
+:10aa000000fbea241af582eb22129e7785278285c5
+:10aa1000288312a073252322fa12a323f8e5853494
+:10aa200000f9e8242212aa2922f582e93400f583ec
+:10aa3000e02212a53aaa82ab83ea2274f112251809
+:10aa400074fe1224b612274c74fe1224868a258bbb
+:10aa500026ecfeedff129714858221858322059254
+:10aa6000a3a3e0f5238f82ac82ecc333fae433fb7b
+:10aa70008e82a8827900e52360361460331460303a
+:10aa800014602d14606014700302ab15147003027f
+:10aa9000ab2c14700302ab5114700302ab80147022
+:10aaa0000302ac2a14700302ac6a14607f02ac7516
+:10aab000e5239e5007852382aa828002e8fa7b0064
+:10aac0008a238b247823122760e5212cf8e52212b3
+:10aad000b82f2403fce93400fdaa25ab261291b659
+:10aae00012249c02ac75852182852283a3a3a3a393
+:10aaf000a3e09e5003e08001e8fa7b008a238b24c8
+:10ab00007823122760852182852283a3a3a3e02cca
+:10ab1000fca3e080c1eefc852182852283a3a3a350
+:10ab2000e0f9aa25ab26121a2702ac758521828589
+:10ab3000228312a32bc39e5005e0f52180028821b9
+:10ab400089220592782112276012aca0fca3e08034
+:10ab50008585218285228312a97b9e500b8a848b56
+:10ab60008512a988f5218002882189220592782101
+:10ab700012276012aca01299adac82ad8302aad9a3
+:10ab8000900363e075f03ba4fc85f023ad239003b4
+:10ab9000cd12ac96852182852283a3a3a3a38582af
+:10aba0002185832212ac8fbc00028004c333dcfcfd
+:10abb000c0e012aca9241af582ed12a5add0e012c6
+:10abc000ac8560077401f0a3e48003e4f0a3f08592
+:10abd000218285228312ac8fbc00028004c333dc47
+:10abe000fcc0e012aca92422f582ed12a5add0e0a4
+:10abf000fce05c60047c0280027c0085328285334c
+:10ac000083e04cf0eec3940340047c028002e8fc35
+:10ac10007d008c218d22782112276074021224ef8e
+:10ac2000e5822afce5833b02aad88521828522831e
+:10ac3000a3a3a3a312ac8fbc00028004c333dcfc2b
+:10ac4000c0e012ac7afc74cf2cf582740312a5ad6f
+:10ac5000d0e012ac8560077401f0a3e48003e4f057
+:10ac6000a3f0eec3940340a680a012146fe98525db
+:10ac700082852683f074020296f812ac7e22e013dd
+:10ac80001313541f22fce05c85328285338322e05b
+:10ac90005407fc740122e02cf584a3e03df58522e5
+:10aca0008a828b8312a0732c2212ac7afce5842c4e
+:10acb000fce5853400fdec2274f212251874fe12b6
+:10acc00024b612274c74fe12248612a9698c258d95
+:10acd00026e9ff752100e5c7f52275c7037e0080d0
+:10ace000010e90f79ce0f8eec398505eee75f0060a
+:10acf000a4f8a9f012af9c500b12ad5d1224731290
+:10ad0000ad80800312ad6bf585eaf5237823122719
+:10ad100064ac84ad85790274011224efaa82ab83fe
+:10ad200012ad5712249ce960b81294f1f8efc39861
+:10ad300050048f23800288237d00ac23eef9aa25de
+:10ad4000ab261215e31294f1f5218522c7a92174cf
+:10ad50000212249c0284d4121a1b7401227a105409
+:10ad60007ff52375240074047823227a02c333f814
+:10ad7000e433f9059290f79ae028f584a3e03922ac
+:10ad8000059290f798e02523f584a3e035242274fa
+:10ad9000f012251874fe1224b612274c74fb1224ec
+:10ada0008612a969e9129d4574031224ef12af724d
+:10adb0008c848d850592a3a37405f0ec240512af55
+:10adc000787409f00592e0f8ec2812af78a3858238
+:10add00025858326858482858583e004f07521009e
+:10ade00074026f6027eff985328285338312af9248
+:10adf000121a15e960167f0274031224f90592e015
+:10ae00002431f582a3e012a06a24f2f0e5c7c0e085
+:10ae100074021224efd0e05392fef075c70390f74e
+:10ae20009ce0f582ac8285328285338312a98bf84f
+:10ae3000a3e0f9c3ec98e499500302af468532824f
+:10ae400085338312afacc3ec9ae49b50048c228010
+:10ae500003eaf52274031224ef059212afa5fe60f7
+:10ae60000302af13e814fe852582852683e405924c
+:10ae7000f002af1312ad6bf585eaf52378231227a4
+:10ae800064ac84ad85eff974011224ef12af921215
+:10ae9000ad5712249ce9607a7a01eef91215c57457
+:10aea000171224ef1299b2e90592f06014e52170af
+:10aeb0000302af4674171224ef059212afbc02af23
+:10aec000461294f1fa0a0a852182a8828525828594
+:10aed0002683e060066a706ee07063eaf0c3941641
+:10aee00040037415f0e52528fae5263400fbe52734
+:10aef0002401f812b0cb7d00852582852683e0fcf5
+:10af0000ee12b0bf1215e3852582852683e0252148
+:10af1000f5210eeec39522502d8e82858227e527de
+:10af200075f006a4f8a9f05392fe12af9c400302fc
+:10af3000ae7412ad5d12247312ad8002ae77fae8e2
+:10af40002a12af82409f74021224ef5392fee0f562
+:10af5000c774031224ef12b893ee0592f0a921747e
+:10af60000512249c853282853383059202837a05fb
+:10af700092a3e8f0a3e9f022f582ed12950ca3a3c9
+:10af8000a322fae43400fbea9416eb9400c365d0e4
+:10af90003322e02404faa3e03400fb2290f7961257
+:10afa000986ba2e722e0243712a33922059212a05f
+:10afb00073faa3e0fb228532828533831299b6e4cb
+:10afc0000592f02274f112251874fe1224b612278d
+:10afd0004c8a848b858c258d267e008c828d83e423
+:10afe000f0e5c7f52775c70390f79ce0ff8f82acab
+:10aff0008285848285858312b8d7c3ec98e4995002
+:10b000000302b0b80592a3a3e0faa3e0fbc3ec9a55
+:10b01000e49b50048f238003eaf523e814ff801e8d
+:10b02000e5252afae5263400fbe824010812b0cb16
+:10b03000ec12b0bf121a21740225242efe0fefc3aa
+:10b04000952350748f82a882e875f006a4faabf0bd
+:10b050005392fe90f79612a081fca2e75016752439
+:10b06000108525828526830592e06004640270487d
+:10b07000740280147524028525828526830592e05a
+:10b080006004640170327401f08e82aa82852421ea
+:10b09000e5212af521e43400f522e5212402f521f9
+:10b0a000e5223400f522e5219416e5229400a2d28f
+:10b0b00065d033500302b0208527c7eef9801ef912
+:10b0c000ea24030a0a0aeb3400fb22e43400f98a7a
+:10b0d000828b83a3e8f0a3e9f02212249c853282bc
+:10b0e0008533835392fe122754740212249c7f07e7
+:10b0f0000225f074f212251874fe1224b612274ca1
+:10b1000089218982a882e875f03ba4feaff0ea2489
+:10b11000fe607e24fe600302b1d812b1db88238971
+:10b120002412b1e890036112af7275253b752600b9
+:10b1300078251227607c007d009003cde02efaa3d5
+:10b14000e03f12821d12249c12b1f5242ff582e9f2
+:10b1500012a5ad74fbf0a37415f012b1f5242dfc0b
+:10b16000e93400fd12b1e8e8246ffae93400fb127b
+:10b17000163790036512ad85f5850592e0f46058a9
+:10b1800012b20190036112a98bfb7a8812185980c0
+:10b190004412b1db900365e028f8a3e039f990038d
+:10b1a0006112af727b07aa2179011219d9800312ab
+:10b1b000181112b22270f87523107524007823122a
+:10b1c00027607c007d0012b1f5241afae9340012e0
+:10b1d000821d12249c1214d50284f5e8900363f0ba
+:10b1e00075f075a4f8a9f022900365e02523f8a373
+:10b1f000e03524f9229003cde02ef8a3e03ff9e8f2
+:10b20000227910059212b213128194241afceb34a5
+:10b2100000fd22900363e075f03ba4faabf09003cd
+:10b22000cd22129c0f242bfae93400fb121631eace
+:10b230004b22c3ec9aed9b4004ea4b7004790180e9
+:10b240000279005392fe02111874f012251874fe50
+:10b250001224b612274c74f712248674011224efbc
+:10b2600012a96f129d4674051224ef12af727a0074
+:10b2700074011224ef12b8f170150a74051224f942
+:10b2800012a5a4059212b8d7ea1224ef12af727475
+:10b29000011224efe02408f8a3e03400f97403124b
+:10b2a00024ef12af7274031224ef12a98bc0e07462
+:10b2b000071224efd0e00592f05441c0e074081268
+:10b2c00024efd0e0f0eaa2e0500302b35de06003b7
+:10b2d00002b35574071224efe0641e6078740512ff
+:10b2e00024f912a5a4059212b8f1600b740112247e
+:10b2f000ef12b86f02b81a12180b8a218b22a821fc
+:10b30000a92274051224f90592e0243312b84ae800
+:10b31000497003029ea288828983a3a3e4f00412e9
+:10b3200024ef12b8d774051224f90592e0243112e3
+:10b33000b84a74051224f91294f874051224ef1215
+:10b34000b893e40592f074051224ef0592e02435d9
+:10b3500012b8b1801075250075260080087405129a
+:10b3600024f91294f85392fe90039a74081222fe64
+:10b370008b22ea4522600302b81a8525828526833e
+:10b38000a3a3ae82af8374031224ef12b8bea3aca2
+:10b3900084ad8574031224ef059212a9948584214b
+:10b3a00085852274011224ef059212b8be85842788
+:10b3b00085852874071224ef0592e0547f147003ea
+:10b3c00002b79e14700302b7b524fe700302b5a83d
+:10b3d00014700302b5c914700302b461147003023f
+:10b3e000b5f314700302b56014700302b5d714707e
+:10b3f0000302b67714700302b78214700302b677a3
+:10b4000014700302b79014700302b63f1470030265
+:10b41000b78214700302b51314700302b5e51470fb
+:10b420000302b60f14700302b63924fd700302b78d
+:10b43000c314700302b63914700302b7d114700339
+:10b4400002b63924fe700302b70d24fe700302b762
+:10b450002514700302b77524cc700302b60102b73d
+:10b46000df12b914602b752301782312276485211c
+:10b470008285228312b8a51224ef12a98bf97402d7
+:10b480001224ef0592129e83129d3212249c02b662
+:10b4900032852582852683a3a3a3a3a3a3a3a37494
+:10b4a0000712b8267405f0e5252405f8e52612b83c
+:10b4b0002f2404fce93400fd852782852883e024bd
+:10b4c000f5f9aa21ab221215b9e9f8702675230afd
+:10b4d000782312276485218285228312b8a512243d
+:10b4e000ef12a98bf9aa25ab261213c174011224fd
+:10b4f0009c80128e828f83e028f07c047d00aa2538
+:10b50000ab2612160d74011224ef129e831218112d
+:10b5100002b7f012b914600302b46612b8347411a1
+:10b5200012b8f98532828533838582238583247816
+:10b530002312276012b859121565740212249ce96f
+:10b54000f8853282853383e060a98532848533852e
+:10b55000059212277f852182852283059202b4db22
+:10b5600012b914600302b466853282853383e4f035
+:10b570008582238583247823122760ac25ad26128b
+:10b58000b8591215ef740212249ce9f8700e853236
+:10b5900082853383e07005740af080ae853282853f
+:10b5a0003383e070a502b4f312b914600302b466e9
+:10b5b00012b834740512b8f9aa21ab221215f5e9b4
+:10b5c000f8700302b4cd02b4f374011224ef129e9a
+:10b5d0008312150502b7f074011224ef129e831234
+:10b5e00014ff02b7f074011224ef129e831215119a
+:10b5f00002b7f074011224ef129e8312150b02b7ea
+:10b60000f0752300782312276412b8c302b4ec75d6
+:10b610002301782312276412b8c3740112249ce911
+:10b620006005f52302b46974011224ef129e83129f
+:10b6300013afaa25ab2602b50d12156b02b5058e08
+:10b64000828f83e0700a12b838740f12b81f14f09a
+:10b65000ac25ad26852782852883e024fbf523e4ed
+:10b6600034fff52474017823122454a923aa21abb2
+:10b67000221215ad02b7f07a007b0085258285265f
+:10b6800083a3a3a3a3a3a3a3a3a38582278583281e
+:10b690008e828f83e0700812b838740b12b81f7452
+:10b6a000031224ef12a98b640c701a85258285265b
+:10b6b000830592a3a3a3a3a3a3a3a3740df08c82d9
+:10b6c0008d83129e83853282853383858223858391
+:10b6d000245392fe78231227608527238528247817
+:10b6e000231227607916eafcebfd852182852283ef
+:10b6f000129e831215b3740412249ce9f8853282d9
+:10b70000853383e0600302b54a1802b4f3852782cb
+:10b71000852883e024f9f523782312276479011220
+:10b72000b86802b4ec90f7f4e05404fe60177405b6
+:10b730001224efe02416f584a3e0128a0ee0d2e092
+:10b74000f07905800279028527828528835392fe4d
+:10b75000e024f9f523782312276412b868740112e3
+:10b76000249cee600302b50574011224ef129e833f
+:10b770001213b5807b74011224ef129e8312157789
+:10b78000806e12b8821224ef129e831214f9806028
+:10b7900012b8821224ef129e831214f380527403a3
+:10b7a0001224ef12a332f974031224ef12afac1279
+:10b7b00014e702b50574011224ef129e831213bb25
+:10b7c00002b63274011224ef129e831215a702b63c
+:10b7d0003274011224ef129e831215a102b6327444
+:10b7e000011224ef12b86fe5254526600302b63238
+:10b7f00074081224efe0702274071224efe0641e34
+:10b80000601874051224efe0243112b8ab740512ed
+:10b8100024ef0592e0243312b8ab740902836e1250
+:10b82000b826e004f022f08e828f8322f8e585347a
+:10b8300000f9e8228e828f837405f0e5252405f552
+:10b8400082e52612a5b1a3a3a322f582a3e012a547
+:10b85000b1e80592f0a3e9f022852782852883e0ec
+:10b8600024f7f9aa21ab222212b8761214ed221283
+:10b87000b87c12181122852182852283e0faa3e088
+:10b88000fb22852782852883e024fbf91c1cad223e
+:10b89000740122e0243712b89c22e028f584a3e04a
+:10b8a0003400f58522129e7774042212b8b1a3f0f9
+:10b8b00022f584a3e03400f585e40592f02212a974
+:10b8c00098a322852782852883e024f9f912b87687
+:10b8d00012159b2290f796e0f8a3e0f92212180bbc
+:10b8e000853282853383eaf0a3ebf085328285339b
+:10b8f00083e0f8a3e0f9e8492212b826e0f8e5254c
+:10b9000028f582e526129d3cac82ad838e828f8322
+:10b91000e004f0228c828d83129e7712b876121684
+:10b9200001e92274f612251875210c752200782180
+:10b930001227607c007d007a547b60121f0702e9a9
+:10b94000c1c082c0838a828b8380075392fee0f558
+:10b95000d9a3e9f874ff28190470f002d916c0823f
+:10b96000c0838a828b838007e5d95392fef0a3e9d6
+:10b97000f874ff28190470f002d91674f61225180d
+:10b9800074fe1224b612274ce970159004b0e064de
+:10b9900001700d9003efe064017005121703802819
+:10b9a0009003efe0701012e2ef600312c4f0900316
+:10b9b000ed74fff0801279001219a3ea240212c577
+:10b9c0001c7ae77b031237a102e9b874f612251836
+:10b9d000ea2428f582eb12e73fc333f8e433f97425
+:10b9e000a928f582740939f583e02432f8a3e034fc
+:10b9f00000f9ea241cf582eb12d09c12bff5e88511
+:10ba000021f0a4c8aaf08522f0a42afa8521f0e941
+:10ba1000a42af9e8241ff8e93403f97a207b0312f9
+:10ba200023fb88218922ac21ad227a717b0212236b
+:10ba3000fb8a218b22740578211224739004a1e5de
+:10ba400021f0a3e522f0ecf8edf97a717b021223e4
+:10ba5000fb90049f12e2e69004a6ecf0a3ed02d75f
+:10ba60005c74f212251874fe1224b612274c74fc72
+:10ba70001224868a258b26900b341222b6853282b8
+:10ba80008533831222c290618fe0c0e085328285c7
+:10ba900033837821122285e5252521f582e5263597
+:10baa00022f583d0e0f0900b387821122285853280
+:10bab0008285338378211221c085328285338305c4
+:10bac00092900b3c782112228505927821121f72e8
+:10bad00040b485258285268378211222859009b974
+:10bae000782112225f85328285338378211222a742
+:10baf00079007a00853282853383752101752200b1
+:10bb0000ea7821122473e5223395e0f523f52478b1
+:10bb100021122213e5214522452345246001090a0b
+:10bb2000eac3942040cee9c39402500302ba778559
+:10bb30002582852683e0f8a3e068701c8525828530
+:10bb40002683a3a3e0687010852582852683a3a39e
+:10bb5000a3e068700302ba778525828526831222c6
+:10bb6000b68532828533831222c279007a1f8532ec
+:10bb7000828533837821122285e5215403f87402eb
+:10bb800068600574016870010985328285338378a5
+:10bb90002112228574017821122162853282853337
+:10bba0008378211222a71aea70c4e9c394194003ca
+:10bbb00002ba778525828526837821122285741a18
+:10bbc000782112216285328285338378211222a75f
+:10bbd00079007a058532828533837821122285e5c2
+:10bbe000215403f8740268600574016870010985c6
+:10bbf00032828533837821122285740178211221c3
+:10bc000062853282853383e521f0a3e522f0a3e546
+:10bc100023f0a3e524f01aea70bae9c394025003b2
+:10bc200002ba77740412249c02e21a74f6122518e0
+:10bc300074fe1224b612274c8a848b85e9701c7519
+:10bc4000210875220078211227607c007d0012e80f
+:10bc50007c12249c74010592f080260592e0a2e0fb
+:10bc6000e433f075210775220005927821122760d0
+:10bc70007c007d000592a3aa84ab8512e87c122487
+:10bc80009c8532828533835392fe02e9bec082c016
+:10bc9000835392fe9004c6e0a2e040329061b1e48a
+:10bca000f0e070f87401f0e0640170f81217ab90e6
+:10bcb00004c6e0d2e0f0753400e59ea2e640fae565
+:10bcc00094a2e24009759403e594a2e250fa80033d
+:10bcd000f0a3f0d083d08202111874f6122518e96f
+:10bce000fe60067c917d0480047c8b7d04752106ba
+:10bcf00075220078211227607a167b6012c97a12a9
+:10bd0000249c906015e0c2e0f0ee600478018002af
+:10bd1000780002d75a74f6122518e9fe75210675c7
+:10bd200022007821122760eafcebfd7a1c7b60126e
+:10bd3000c97a12249c906015e0c2e1f0ee600478ac
+:10bd4000028002780002d75a74f712251874fe1286
+:10bd500024b612274ce9fe8c848d85740b1224efd7
+:10bd6000e0ff74072ff5d98ed9790612164980079e
+:10bd7000439201e0f5d9a3eff874ff281f0470f097
+:10bd8000e5e170fc75e1958532828533835392fe3f
+:10bd900002c9d174f6122518e9fe12e4ba600479da
+:10bda0003a8053906022e0f874ff6870047907804d
+:10bdb000457f0080040fc313f8e8a2e040f7752127
+:10bdc000067522007821122760eafcebfdef12d302
+:10bdd0004712249c752101ef7821122473af21efc3
+:10bde000f4f8906023e058f0ee6003e04ff09060cc
+:10bdf00022e04ff0790002e9c674f312251874feb0
+:10be00001224b612274c892512e4b66004793a80d0
+:10be100061906022e0f522a3e0ff7521017e00e53c
+:10be2000225521603ee5256007852182a882800297
+:10be30007800ef552168702b752306752400782350
+:10be4000122760ac84ad85ee12d33212249c8b2471
+:10be5000ea4524700ee521f4f8906022e058f0796c
+:10be600000800f0ee521c333f521eec3940840afe7
+:10be70007912853282853383122754740212249cee
+:10be80007f050225f0c082c0835392fe906022e4b9
+:10be900002bcd274f012251874fe1224b612274c7c
+:10bea0008c278d2874121224f90592e0f582a3e004
+:10beb000f58374141224f9e0fca3e0fd7416122437
+:10bec000f9e0fea3e0ff858284858385eaf0a3eb99
+:10bed000f0ea24faf8eb12bfea502fe52724faf82b
+:10bee000e52812bfea5023c3e5279ae5289b401aac
+:10bef000c3ee94f5ef94015011ec24f6f8ed34ff05
+:10bf0000f9c3e89477e9940c4005791202bfe790f1
+:10bf100004b9e0f8c394024051e8c333f88884853b
+:10bf20008425858284858385e0f521a3e0f522a818
+:10bf300021f9aa257b001223fb8a238b24a823a99d
+:10bf400024e8496025e5212525fae5223400fbeaad
+:10bf5000c398f8eb99f9858284858385e8f0a3e995
+:10bf6000f0c3e52798e5289940a0ec75f050a4fcb3
+:10bf7000a8f075f050eda428fdee2401f525ef346e
+:10bf800000f526e4f527f528059212bff5e52175a1
+:10bf9000f00aa4f521a8f075f00ae522a428f522fc
+:10bfa000e4f523f52478257921121fdf8d228c21d9
+:10bfb000782179251221d3852125852226852327dd
+:10bfc000852428900b2c7825122213e5254526453b
+:10bfd000274528600302bf0ae52145224523452461
+:10bfe000700302bf0a790002dc7d34fff9c3e894d4
+:10bff0007be9940c22e0f521a3e0f5222274f012f3
+:10c00000251874fe1224b612274c74fa1224867472
+:10c01000021224ef12db2c74041224efecf0a3edd7
+:10c02000f0892874181224efe0f52774191224ef10
+:10c0300012db32741b1224ef12db38741d1224ef52
+:10c04000e0f523a3e0f524741f1224ef12bff5904e
+:10c050000485e0a2e05005790c02c22a9003ede0cd
+:10c06000f470f47821122760782312276074041288
+:10c0700024ef85822585832678251227601216975e
+:10c08000740612249ce9600302c22a1217b78a259b
+:10c090008b26ae25af26ee4f7005790902c22a8e97
+:10c0a000828f83a3a3a3a3a3a3e0c0e074041224fc
+:10c0b000ef12e2fad0e00592f074021224ef05923a
+:10c0c00012e4bd60347525067526007825122760b8
+:10c0d00074041224ef12db38ee240912d0ab1224c0
+:10c0e0009c12d096e5286005e0d2e08003e0c2e033
+:10c0f000f0906014e0c2e38006906014e0d2e3f0b8
+:10c10000e52760047a0180027a00900489e054fef9
+:10c11000f8a3e0f9e84a900489f0a3e912d46eee9e
+:10c120002412faef3400fb1216617a0090618fe05e
+:10c13000c0e08a25ee2525f8ef3400f9e82416f54d
+:10c1400082e912d09cd0e0f00aeac3940340dd12e9
+:10c15000c505ee241c12dbf785328285338312e29b
+:10c1600080ee2420f582ef12de2d12d6de241ef59d
+:10c1700082ef12dbf1f0a3e522f0ee242812d09931
+:10c180007405f0ee241912d0997402f00592e0f8cb
+:10c19000a3e0f9ee241a12d099e8059212e2e79092
+:10c1a00004ade0c0e0ee24e312d099d0e0f07521b8
+:10c1b0000575220078211227607ca87d04ee2422d8
+:10c1c00012d0ab12249ceefaeffb12170990618f8c
+:10c1d000e054072405c0e0ee242712d099d0e0f007
+:10c1e000a2afe433fac2afe594a2e240097594032a
+:10c1f000e594a2e250fa12c5149003eb12e2e6eacb
+:10c20000a2e092af9003fceef0a3eff09003ed7488
+:10c21000fcf09003ef7401f012c3e59003e912e221
+:10c22000e67ae77b031217817900740602e04d7409
+:10c23000f712251874091224efe0f8740a1224ef9b
+:10c24000e0fe740b1224efe0ffec4d6014ea4b604b
+:10c2500010ec2afaed3bc313fbea1390040812db3f
+:10c260002de96004900407f0e890040cf0ef9004ce
+:10c27000056005e0d2e08003e0c2e0f0906014e0e9
+:10c2800054fcf0ee6003e04ef002c9d974f61225ba
+:10c2900018e99004056005e0d2e18003e0c2e1f016
+:10c2a0007521067522007821122760eafcebfd7ae1
+:10c2b0000d7b0412c97a12249c790002e9c674f637
+:10c2c00012251874fe1224b612274c74ff1224860d
+:10c2d000e9fe900406706ee07005790002e9b3a2f1
+:10c2e000afe433ffc2af900455e064fe7004a3e0f6
+:10c2f0006403701712e4d34009759403e594a2e235
+:10c3000050fae5e170fc75e142800d90040474ff81
+:10c31000f07afe7b0312177b900406e4f0efa2e0b4
+:10c3200092af90040412c50f64fd60f690040a12e7
+:10c33000e2f260a60592a3a3a3a3a3a3e012da8d61
+:10c3400012da988095e06004793a809090040ce0cd
+:10c35000640360499004bae06005790c02c2dc1203
+:10c3600017b78a218b22a821a92290040a12e2e69b
+:10c37000e8497005790902c2dc900485e04401f0c7
+:10c38000900489e054fef8a3e0f9900405e0a2e0ef
+:10c39000e433fae84a900489f0a3e9800690040a9d
+:10c3a000e4f0a3f0e594a2e24009759403e594a2b9
+:10c3b000e250fa12c3e590040012e2e674016ea3a3
+:10c3c0007007e4f0a374088005740af0a3e4f09009
+:10c3d00004067401f090040474fdf07afe7b0312ed
+:10c3e000178102c2da79001219a3ea2404f8eb34a7
+:10c3f00000f92274f412251874fe1224b612274c88
+:10c4000074ff122486e9feeaffee7068a2afe433ff
+:10c41000f522c2af900455e064e77004a3e0640322
+:10c42000701712e4d34009759403e594a2e250fa20
+:10c43000e5e170fc75e142801d9003efe06401705e
+:10c440001512e2ef600312c4f09003ed74fff07a6e
+:10c45000e77b0312177b9003efe4f0e522a2e09262
+:10c46000af9003ed12c50ff470f779007401122438
+:10c470009c02e8e39003ede0f874fe6860ec74ff62
+:10c48000686004793a80e59003f0e4f0906009f088
+:10c49000eb9003ee6005e0d2e48003e0c2e4f090ac
+:10c4a0006014e0c2e2f0ef6004e0d2e2f09003f149
+:10c4b000e4f09003eee054b3f090600a12c508e592
+:10c4c00094a2e24009759403e594a2e250fa12c5e1
+:10c4d0001479001219a3ea240412c51ca374fef0f7
+:10c4e0009003ef7401f07ae77b0312178102c46aac
+:10c4f0000592a3a3a3a3a3a3e0f91217b19003fc91
+:10c50000e4f0a3f0229004877401f0a3e4f0221277
+:10c51000ce38e02212e4c3a312e1a322f8eb3400e8
+:10c52000f99003e912e1a312e4c39003eb12e1a333
+:10c5300022c082c083e9c394104002790fe9c45439
+:10c54000f0f85392fe906186e0540f4802bcd2741a
+:10c55000f6122518e9ffe5a8fec2af8f217522006b
+:10c560007821122760eafcebfd7a137b0412c97a6a
+:10c5700012249cef900432f0eea2e792af02e9c6db
+:10c5800074f6122518e9ffe5a8fec2af8f217522c7
+:10c59000007821122760eafcebfd7a337b0412c994
+:10c5a0007a12249cef90045280cd74f612251874f0
+:10c5b000fe1224b612274c749f122486e9fee5c7aa
+:10c5c00075c703900369e0a2e04019d2e0f005923c
+:10c5d0009009f01227737b0a7a0079001219df7430
+:10c5e0000412249c74ff6e70069004b9e08001ee82
+:10c5f000853282853383f07521d57522007821122a
+:10c6000027607c007d007ae77b0312e87c12249c83
+:10c61000853282853383e09004b9f07521667821f4
+:10c620001227607c007d007a007b6012e87c122477
+:10c630009c900408e4f0a37402f09004077407f0df
+:10c6400090040474fff09003f6744b12c50a900333
+:10c65000eb743212c50a9003eef075212578211291
+:10c6600027607c007d007a607b0412e87c12249ca9
+:10c6700075210478211227607cff7d007aa87b0455
+:10c6800012e87c12249c9004ac741ff090045ce4cb
+:10c69000f0a3f09003fcf0a3f074ff6e6011ee7550
+:10c6a000f0e4a4faabf012135590045312db2c9073
+:10c6b000045312e8ff9004bae4f085328285338394
+:10c6c0008013e58424e4f8e58512d459e8f0a3e961
+:10c6d00012c93ce004f0e0fa12d8c0ee24fff8e4fe
+:10c6e00034fff9c3ea98e499a2d265d03340d385e8
+:10c6f0008482858583e4f0a312c93c9003fee4f0b4
+:10c70000a3f090040474fdf09003e712d463791051
+:10c710007cc7fd74011224efaa82ab831214337517
+:10c72000210678211227607c0e7d7874031224ef95
+:10c73000aa82ab8312c97a12249c75211078211227
+:10c7400027607c997d0974131224efaa82ab8312af
+:10c75000c97a12249c7810882174011224efe58292
+:10c760002521f582e58312e73f64bff008e8c39412
+:10c770002040e474011224ef8582218583227821f0
+:10c7800012276074031224efac82ad837413122459
+:10c79000efaa82ab83121325740212249c79107cb9
+:10c7a000d77dff74111224efaa82ab831214337564
+:10c7b0002110752200782112276074131224efac27
+:10c7c00082ad8374031224efaa82ab83121efb7422
+:10c7d0000212249c8b22ea45227005800c1217b7a6
+:10c7e000eeff74ff2f1e0470f41219bb121817907d
+:10c7f00061c67401f09061807440f090619174485a
+:10c80000f09061bc7407f090619a743ff0a3745a81
+:10c81000f09061a0747ff0900369e0a2e74028796e
+:10c82000017c017dff853282853383aa82ab83122e
+:10c830001433906186e0540ff8853282853383e0ab
+:10c8400054f048906186f074ff6e7007906192e03a
+:10c85000d2e7f0906022e4f0906009f043a9014330
+:10c86000b901759b00759100439a01c2a890f7f435
+:10c87000e0a2e3500474e1800274c09004bbf09025
+:10c880006181e4f0a3748012c50a794074211224f6
+:10c89000efac82ad837a037b00121859e9fb74ff79
+:10c8a0006b603a7a0080318a2174211224efe5828c
+:10c8b0002521f584e58312dbfa858482858583a3af
+:10c8c000e0c0e00592e0f8748028f582746112d02f
+:10c8d0009cd0e00592f00a0aeac39b40ca12283ca9
+:10c8e00012164312178d9004aee4f09004b0f0904d
+:10c8f00004aff09004b1f0906002740ff090f7f480
+:10c90000e0a2e45004740580027402906003f09089
+:10c910000455e4f0a3f0900489e054fef09004057f
+:10c92000e4f079067cea7dff7a8b7b0412143312e3
+:10c930001a09e5c775c703746102e9b5f08532824b
+:10c94000853383e00592a3a3a3a3a3a3f0059222ba
+:10c9500074f6122518e5a8fec2af752106752200ef
+:10c960007821122760eafcebfd7a917b0412c97ae8
+:10c9700012249c02c578aa23ab24121f0174022240
+:10c9800074f712251874fe1224b612274ce975f0bc
+:10c99000e4a4fcadf0900453e02cf584a3e03df555
+:10c9a00085ea858482858583a3a3a3a3a3a3a3f09b
+:10c9b0000592a3a3a3a3a3a3a3a3740af085328221
+:10c9c0008533830592800aa2e092af853282853357
+:10c9d00083122754740212249c7f010225f074f004
+:10c9e00012251874fe1224b612274c74ff122486e6
+:10c9f0008a278b2812ce4b12daa8ae82af838a82a6
+:10ca00008b830592a3a3a3a312ce38ee2442f52371
+:10ca1000ef3400f5248a828b83a3a3a3a3a3ac8263
+:10ca2000ad838e828f83a3a3a3a3a3a3a3a3858295
+:10ca300025858326ee240ff521ef3400f52285327b
+:10ca400082853383e0700302cba014700302cb5bba
+:10ca500014700302cb5314700302cca714700302aa
+:10ca6000cd7814700302cdd814700302cddd1460ac
+:10ca70007714700302cb1b14606314700302cbeeb7
+:10ca800014700302cc1c14600914700302cbcf0293
+:10ca9000ce0f7523057524007823122760ee243d00
+:10caa00012d0ab12249c852582852683e064077012
+:10cab00002e4f0852182852283e0d2e1f0a2e04009
+:10cac0000dac27ad28eefaeffb12179f8007aa27bf
+:10cad000ab281218117b0312ce6102ce338525825a
+:10cae000852683e06406600aaa27ab281218110283
+:10caf000ce33852182852283e0d2e212d6c8e4f0cb
+:10cb0000752108f522782112276012c97612249c1b
+:10cb1000aa27ab281218117b0480bc8521828522ac
+:10cb200083e0d2e2f0752108752200782112276097
+:10cb300012c97612249c7901aa23ab2412166778b5
+:10cb4000211227647823122760790912de1f12242c
+:10cb50009c80c412ce8e7409f0808d852582852636
+:10cb6000837402f07521077522007821122760ee88
+:10cb7000245512d0ab12249caa27ab28121811ee10
+:10cb8000245a12ce77700302ce338e828f83a3a3f2
+:10cb9000a3a3a3a3a3742812d6c8740af002ce33a9
+:10cba0008525828526837401f075210b7522007816
+:10cbb00021122760ee244a12d0ab12249caa27ab84
+:10cbc00028121811ee245312ce7770be02ce331203
+:10cbd000ce8ee06403600302cae8e4f0852182851a
+:10cbe0002283e054e7f07b0712ce6102cae8852178
+:10cbf00082852283e0d2e4f0752300782312276433
+:10cc0000e4f524782312276012de1d12249c85216e
+:10cc100082852283e0c2e6f0d2e38080852182858e
+:10cc20002283e0d2e412d760852182852283e050fe
+:10cc300005c2e702cb58543ff07521007821122736
+:10cc400064e4f522782112276012de1d12249c75ff
+:10cc50002108782112276012d0a012249c7521048b
+:10cc6000782112276012ce5724b412d0ab12249c24
+:10cc7000782112276012ce5724a412d0ab12249c24
+:10cc80008525828526837403f07521167821122765
+:10cc900064ee245c12ce411227607403c0e012d708
+:10cca000eed0e0f902ce2d8525828526837404120c
+:10ccb000e0591223fb12e1867523167524007823b0
+:10ccc000122760ee245c12d0ab12249c7908ee246b
+:10ccd00072faef3400fb121a0f7904ee247afaef9d
+:10cce0003400fb121a0f752308782312276012d024
+:10ccf000a012249c7823122760ee247212ce5a24ac
+:10cd00009612d0ab12249c7523047823122760124c
+:10cd1000ce5724b412d0ab12249c78231227601271
+:10cd2000ce5724a412d0ab12249c7823122760ee95
+:10cd3000247a12ce5a24b812d0ab12249c78231233
+:10cd40002760ee247a12ce5a24a812d0ab12249c6b
+:10cd5000852182852283e04418f075210c78211208
+:10cd60002764ee247212ce41122760790412de1f6e
+:10cd700012249c7b0602cad7852182852283e0d2b9
+:10cd8000e4f075210c7522007821122760ee2472e0
+:10cd900012d0ab12249c7521087821122760ee2452
+:10cda0007212ce5a249612d0ab12249c75210478ac
+:10cdb00021122760ee247a12ce5a24b812d0ab1278
+:10cdc000249c7821122760ee247a12ce5a24a812cd
+:10cdd000d0ab12249c02cae81218118096121811c6
+:10cde000900485e0a2e0500f8e828f83a3a3a3a3bb
+:10cdf000a3a3e0f912171b852182852283e054e763
+:10ce000012d6c8740b12d76040297b0702cad775a7
+:10ce10002101782112276474011224ef8582218573
+:10ce2000832278211227607907ac27ad2812de23f0
+:10ce300012249c740102e04de0853282853383f038
+:10ce400022f521ef3400f522782122ea2424f5820c
+:10ce5000eb12e746547f22ee246efcef3400fdee29
+:10ce60002212ce65228e828f83a3a3a3a3a3a3e065
+:10ce7000fa79001219eb2212de45ee242cf584ef2c
+:10ce800012e1670592e0c398a3e0995480228c8256
+:10ce90008d83e08e828f83a3a3a3a3a3a3a3f08596
+:10cea00025828526832274f712251874fe1224b673
+:10ceb00012274ceafeebffa2afe433f521c2af121a
+:10cec000cfc0eefceffde58412cee47009888289c4
+:10ced00083eef0a3eff07901aa84ab85121787e502
+:10cee0002102c9c72437fae5853400fb121637e55d
+:10cef000842435f8e5853400f988828983e0faa333
+:10cf0000e0fbea4b2274f712251812ce4bfe12cf2b
+:10cf100027243bfae93400fb1216377b05eefa7939
+:10cf2000001219eb02c9d9eafcebfdee75f0e4a49e
+:10cf3000f8a9f090045312cf3a22e028f8a3e03980
+:10cf4000f9e82274f712251874fe1224b612274c41
+:10cf5000eafeebffee4f60658e828f83a3a3e07045
+:10cf600005121811805712cfc0a2afe433f521c2c9
+:10cf7000afe58412d08d12e737a2e7402ca2e3ee92
+:10cf8000fceffd401fe58424371a1a12cee7700922
+:10cf900088828983eef0a3eff07901aa84ab851231
+:10cfa00017878013121637800eeefceffd1216372e
+:10cfb000aa84ab8512133de521a2e092af02c9cb52
+:10cfc000ee242412e743547f12d8c42274f51225ac
+:10cfd0001874fe1224b612274c8a848b85ecfeed61
+:10cfe000ff740d1224ef12db38740f1224efe0f5fa
+:10cff00021ee4f700302d07a858482858583a3a3b6
+:10d00000a3a3a3a3e0c0e0ee242412d099d0e012a1
+:10d01000d3257403f0740125218e828f83a3a3127c
+:10d02000d6c3e9f0e521601175220078211227604e
+:10d03000ee240512d0ab12249ca2afe433f521c23a
+:10d04000af12e737a2e7eefceffde584500f12d0f8
+:10d050008d12163daa84ab8512133d801712cee4c3
+:10d06000700988828983eef0a3eff07901aa84ab7e
+:10d0700085121787e521a2e092af8532828533833e
+:10d08000122754740212249c7f030225f02439fadb
+:10d09000e5853400fb22ee2410f582ef12de4822f3
+:10d0a000ee2466fcef3400fdee248efaef3400fb34
+:10d0b000121f0174022274f012251874fe1224b695
+:10d0c00012274ceafeebff8e848f850592a3a3e521
+:10d0d000d914f0e5d98e828f830592a3a3a3f0a281
+:10d0e000e5502e0592e0c3940640267800e5d9c0ad
+:10d0f000e0882174b32521f582740412d09cd0e01d
+:10d100005392fef008e8c3940640e20592e024fa48
+:10d11000f078008009882112d317d0e0f0088584c8
+:10d12000828585835392fee0f9e8c399e5d9c0e092
+:10d1300040e3ee242512d099d0e0f0ee242612d060
+:10d1400099e5d9f0a2e7400302d2b464fe600a1266
+:10d1500018117a007b0002d3149003eee0a2e440a1
+:10d160000302d3109060090592906022e0f80592c6
+:10d17000e048f5267521018e828f83a3a3a3e05496
+:10d1800040f528906023e0f5278e828f83a3a3a328
+:10d19000e0540ff52574046525600ee5a8f8c2afcc
+:10d1a0009003eee0c2e612daa1752200e5265521d1
+:10d1b0006032e5286007852182a88280027800e538
+:10d1c00027552168701e75230675240078231227c1
+:10d1d000607cb37d04e52212d33212249c8b24eab6
+:10d1e0004524600fe521c333f5210522e522c394d0
+:10d1f0000840b9906014e0a2e274086522500f70f4
+:10d200000302d310906009e04521f002d310604c76
+:10d21000906009e055217022e04521f0e525600984
+:10d2200074066525600302d310e5a8f8c2af900329
+:10d23000eee0d2e612daa102d31074046525701272
+:10d240009003eee0a2e6500ae5a8f8c2afe0c2e61d
+:10d2500080e2eefaeffb12181102d30c74ff652680
+:10d26000700302d3107521017522008008e521c3e7
+:10d2700033f5210522e526552170f2752306752424
+:10d280000078231227607cb37d04e52212d3471275
+:10d29000249ce521f4f8906023e05812d325e0a205
+:10d2a000e65007906023e04521f0906009e04521b9
+:10d2b000f002d229ee2424f8ef3400f9e8fce9fd6d
+:10d2c000e044808c828d83f0547f12d8c0e58424a2
+:10d2d0000ff8e58512da858e828f83a3a3a3e0542d
+:10d2e00003640360190592e0a2e450127a3d8c8237
+:10d2f0008d830592e0547ff91216d902d2524392df
+:10d3000001e0a2e6500ac2e4f01213437e007f005f
+:10d31000eefaeffb02dc7dee2521f582ef12de480e
+:10d32000a3a3a3a32212d32922f08e828f83a3a3c7
+:10d33000a32275f006a4f8a9f0742428fa746039c1
+:10d34000fb121efb74022275f006a4f8a9f07424e7
+:10d3500028fa746039fb121f0174022274f212253c
+:10d360001874fe1224b612274c12e8f69004b0e0ae
+:10d3700014f0e5d9f812d096e5d9a2e6e05004d22f
+:10d38000e08002c2e0f07900e5d9c0e0892112d343
+:10d3900017a3a3a3a3a3d0e0f009e9c3940640e830
+:10d3a00074fb28f88002e5d9882174ff2521180430
+:10d3b00070f490600ee0f525a3e0f5268e848f854d
+:10d3c0000592a3a379101219a3ea2525f8eb3526b7
+:10d3d000f9e82404f8e912d45912e2e690045c80da
+:10d3e000048882898312e4bd604588828983a3a36f
+:10d3f000a3a3a3a3e0a2e740e8858482858583e018
+:10d40000a2e092f088828983a3a3e0a2e020f00149
+:10d41000b3401c900369e0a2e00592e0400924ffbc
+:10d42000f0a3e034ff80072401f0a3e03400f053c0
+:10d4300092fe9003fc12d4639003efe4f0ee2434e8
+:10d4400012d099740312d46e8e828f83a3a3a3a3e8
+:10d45000a3a3a312d6d002e21a3400f985848285f0
+:10d46000858322e4f0a3f09003ed74fff022f0ee48
+:10d47000242912de45e4f02274f712251874fe12f6
+:10d4800024b612274cea24e3f8eb3400f9888289a9
+:10d4900083e4f0fc74075cf87401b800028004c3f4
+:10d4a00033d8fcc0e0ec131313541ff8ea28f8eb50
+:10d4b0003400f9e82422f584e912dbfad0e0f843dd
+:10d4c0009201e058601d0592e0f8ea28f8eb34007c
+:10d4d000f9e824bef584e912dbfaec0592f0059236
+:10d4e000e004f00cecc3942540aa02bd8774f2124c
+:10d4f000251874fe1224b612274c9004b0e014f0e4
+:10d5000090040a12e8f9e5d9f8e5d9f918740f5929
+:10d510006405700574226860130808882174ff256b
+:10d52000211804700302d6ace5d980ef12c50512ac
+:10d53000d096e9a2e6e05004d2e08002c2e0f079a1
+:10d5400006ee2409faef3400fb12164fee241212f5
+:10d55000dbf77906aa84ab8512164f7916aa84ab3d
+:10d560008512164fe5d9e5d9ee242712da83059204
+:10d57000e0c4135407c0e0ee242812d099d0e0058f
+:10d5800092f00592e0541ff08e828f830592a3a340
+:10d59000a3a3a3a3a3e4f0ee241c12da8312d6de25
+:10d5a000243412d099740bf0c30592e09406a3e0e2
+:10d5b0009400500302d6ac7a008a23ee2523f8efbc
+:10d5c0003400f9e82422f582e912d92070070aea2a
+:10d5d000c3940440e474046a7010ee2426f582efcc
+:10d5e00012e73f541f700302d6aceefaeffb12169f
+:10d5f0005bee241912d6b8700474018007c3940935
+:10d6000040037408f0e0f875f0e2a4c8aaf075f0e1
+:10d6100004a42af9059290606412e2e6eefaeffba8
+:10d620001217098e828f83a3a3858225858326798d
+:10d63000101219a3ee241a12d09912e2ebe8c333a8
+:10d64000f8e933f9ea28f8eb39f9e824020808e99f
+:10d650003400f985258285268312d6bfa882a98346
+:10d660000592e0c333fae433fbea24030a0a0aeb27
+:10d670003400fbea0592f0a3eb12d6c8e024fff0d9
+:10d68000a3e034fff088828983e02401f0a3e03432
+:10d6900000f07a007b001239cb90040ae4f0a3f08a
+:10d6a000900406f090040474ff12d6d0853282856f
+:10d6b00033835392fe02e220f584ef12e4b122e8b4
+:10d6c000f0a3e912d329a322f0852582852683229f
+:10d6d000f07b0112ce65eefaeffb1237a1228584b2
+:10d6e0008285858312e4c6e875f005a4f8aaf07572
+:10d6f000f005e9a42af9ee242e12e19cee2274f63c
+:10d70000122518eafeebff7521057522007821121b
+:10d7100027607c007d00ee24af12e87712249c780d
+:10d72000211227607c007d00ee249f12e8771224ee
+:10d730009c900485e0a2e05004788080027800ee9e
+:10d7400024b3f582ef12e73f4812d7605004780007
+:10d7500080027880ee24a312d099e048f002e9c656
+:10d76000f0900485e0a2e02274f612251874fe12ef
+:10d7700024b612274c12d83344c012d7604007aaef
+:10d7800084ab851217157521007821122764e4f502
+:10d7900022782112276012d7ee7406f9aa84ab858d
+:10d7a00012de2702e9b574f612251874fe1224b6ab
+:10d7b00012274c74ff122486ea853282853383f067
+:10d7c00012d8bf752101782112276474011224ef49
+:10d7d000858221858322782112276012d7ee740d6d
+:10d7e000f9aa84ab8512de2712249c02e9b3121831
+:10d7f0000beafcebfd2274f612251874fe1224b617
+:10d8000012274c12d833d2e6f07521007821122766
+:10d8100064e4f522782112276012d7ee7405f9aa84
+:10d8200084ab8512de2712249caa84ab85121715bf
+:10d8300002e9b8e912d8c4e584240ff582e585121f
+:10d84000e7462274f612251874fe1224b612274ced
+:10d85000e9feeaffee12d8c0ef702be5a8f521c271
+:10d86000af7a06eef9121721858482858583a3a3fa
+:10d87000a3a3a3a3a3a3e4f012e73754e7f0e521a1
+:10d88000a2e792af8036e584247ef521e58512cead
+:10d8900044122760e584248efce5853400fdaa212e
+:10d8a000ab22121325740212249c900485e0a2e09e
+:10d8b000eef95005121727800312171b02e9b8e989
+:10d8c00012d8c42275f0e4a4f8a9f0900453e0281b
+:10d8d000f584a3e039f58522c082c083ea4b603627
+:10d8e000ea2426f582eb12d920a2e750097cb37d09
+:10d8f000041214cf80208a828b83a3a3a3e0540355
+:10d9000024fe6005146007800a1213eb80081216cb
+:10d91000df8003121811d083d0825392fe021118b7
+:10d9200012de485392fee02274f6122518a2afe4ec
+:10d9300033fec2af9004b0e0700ceea2e092af9064
+:10d9400004b2e4f0803aeea2e092af12180bea4b78
+:10d95000602e1216fdea4b6003121733a2afe433b8
+:10d96000fec2af9004b0e014f070079004b2e4f08f
+:10d9700080097b007a0079001219ebeea2e092afe9
+:10d9800002e9c6c082c08312173902bcd374f612f2
+:10d99000251874fe1224b612274ce9feeaffee1297
+:10d9a000daa8e582240ff8e58312da85ef604214e5
+:10d9b000604514604d14606414606814601e146047
+:10d9c0006914700302da4b14700302da5214700304
+:10d9d00002da5914700302da7002da80e582243b1d
+:10d9e000fae58312e86e700302da8012173302da66
+:10d9f0008012173902da80e0d2e5f0eef91213df77
+:10da0000807e0592900485e0a2e0500354fef0056c
+:10da100092e0c2e5f0eef91213e58064eef912131c
+:10da2000f1805deef91213f78056e582245cfce587
+:10da3000833400fde5822464f582e58312d09c05e1
+:10da40009212db32eef91218ef8035eef91213fd67
+:10da5000802eeef91214098027059290040a12e430
+:10da6000a612da8df090040612da981213d98010fb
+:10da7000e5a8f8c2af0592900369e0c2e012daa10e
+:10da800002bc81f8ef3400f98884898522f91217e5
+:10da9000b190040ae4f0a322f0900485e054fef073
+:10daa00022f0e8a2e792af2275f0e4a4f8a9f01200
+:10dab000dab32212dab7220592900453e028f582f5
+:10dac000a3e039f58322c082c08385328285338307
+:10dad0005392fee0f8e99003ee6005e0d2e18003a6
+:10dae000e0c2e1f0ea4b60069003f612db2cec4d4d
+:10daf00060089003f2ecf0a3edf09003f612db382f
+:10db00009003eb12db32c3ec9aed9b50089003ebd1
+:10db1000ecf0a3edf0e89003ee6005e0d2e58003c1
+:10db2000e0c2e502bcd2853282853383eaf0a3eb02
+:10db3000f022e0faa3e0fb22e0fca3e0fd2274f176
+:10db400012251874fe1224b612274ceaffe975f06c
+:10db5000e4a4f8a9f012de4dac82ad83e0f87408bd
+:10db6000686073740968606ee5a8fec2af852182a3
+:10db7000852283a3a3a3a3a3a3a3858225858326ac
+:10db8000eff012dbe9242ef584e52212d6bbf8a3d0
+:10db9000e0f9e521241cf584e52212dbfa12e13cd0
+:10dba0001223fb12e1a9e521243212e2df8c828ddf
+:10dbb000837408f0eea2e792af7523017823122751
+:10dbc00064782512276012d7ee7402f9aa21ab22dd
+:10dbd00012de2712249c85328285338312275474e7
+:10dbe0000212249c7f070225f0e521242cf582e512
+:10dbf0002212de48e52122f584ef3400f5852274f7
+:10dc0000f012251874fe1224b612274c12e142704d
+:10dc100008900485e0a2e05004793a805d12180b68
+:10dc20008a278b28ea452870047907804de5a8f5f6
+:10dc300022c2afee2442f525ef3400f5267900aa82
+:10dc400025fb12166712e1251223fb12e1868e8254
+:10dc50008f83a3a3a3a3a3a3a3a37406f0e522a287
+:10dc6000e792af7522087822122764782512276080
+:10dc7000790812de1f12249c790002e0508532825e
+:10dc80008533835392fe122754740212249c7f081a
+:10dc90000225f074f012251874fe1224b612274cd7
+:10dca00074fb122486e9853282853383f07417125f
+:10dcb00024efe0f523a3e0f52474191224ef12e811
+:10dcc000f9853282853383e075f0e4a4f885f0218c
+:10dcd000a92112de4de06005793a02de18782312a0
+:10dce00027608e258f26782512276074071224ef6f
+:10dcf000858225858326782512276012169774065b
+:10dd000012249ce9600302de1812180b740112241d
+:10dd1000ef12db2c74011224ef12e4bd70057907b9
+:10dd200002de18e521242cf582e52212d09c780031
+:10dd3000797de521241cf584e52212e1391223fbcb
+:10dd4000882589260592e02525f8a3e03526f9e8ff
+:10dd5000240108e93400f9e521243212de38244a8e
+:10dd6000f527e5223400f528752509752600782564
+:10dd7000122760e5212419fce5223400fdaa27ab17
+:10dd80002812c97a12249c74031224ef12e2ebe5e4
+:10dd900021244d12de382451f582e52212d09cee6a
+:10dda000f0a3eff0e521244ff582e52212de2de508
+:10ddb00021244bf582e52212d09ce4f0a3f08527c4
+:10ddc000828528837402f0e5a8fac2af12dbe92449
+:10ddd0001ef584e52212e150e521245312e2df858d
+:10dde0002182852283a3a3a3a3a3a3a3a37401f0e9
+:10ddf000eaa2e792af75230b7823122764782712e3
+:10de00002760790074041224ef12db38aa21ab22b8
+:10de100012de2712249c7900740502e04d790bacc8
+:10de200027ad28eefaeffb1216f774032212de4834
+:10de3000e523f0a3e524f022f582e52212de481264
+:10de4000e1a3e52122f582ef3400f5832212dab353
+:10de50008582218583220592a3a3a3a3a3a3a3a3c1
+:10de60002274f6122518e9fe75211075220078211a
+:10de700012276012cf27247efae93400fb121f011b
+:10de800002e9c174f012251874fe1224b612274c50
+:10de900074fd12248612db2674021224efe9f08c42
+:10dea000238d2412e22d900485e0a2e0500812e0b8
+:10deb00072790c02e04b8e828f83a3a3a3a3a3a34a
+:10dec000a3a3e0600812e072793a02e04bee240f5f
+:10ded000f527ef3400f528852782f583e054ef44d9
+:10dee0000812e0591223fb882189220592e025219e
+:10def000f8a3e03522f912e190f582ef12e2e3eea9
+:10df0000246412dbf7ee245cf525ef3400f526ecf3
+:10df10004524702e75210875220078211227607c17
+:10df2000007d00aa25ab2612e87c12249c752102f4
+:10df300078211227607c007d00aa84ab85121f0720
+:10df4000802e7521027522007821122760aa84abe9
+:10df50008512c97a12249c7521087821122760e560
+:10df6000232402fce5243400fdaa25ab26121f0160
+:10df7000740212249cee246e12dbf77904aa84ab9f
+:10df800085121a0fee2466f521ef3400f522790888
+:10df9000aa21fb121a0f852782852883e0a2e75069
+:10dfa00035e5a8f8c2af8e828f83a3a3a3a3a3a352
+:10dfb000a3a3740512daa17521007821122764e465
+:10dfc000f5227821122760790a74031224ef12e1f6
+:10dfd0007712249c807375230875240078231227f8
+:10dfe00060ac21ad2212d0a812249c7521047522a8
+:10dff000007821122760ac84ad85ee24b412d0ab3a
+:10e0000012249c7821122760ac84ad85ee24a412e2
+:10e01000d0ab12249ce5a8f521c2af8e828f83a3da
+:10e02000a3a3a3a3a3a3a37403f0752216782212bb
+:10e03000276478251227607903e91224ef12e1772b
+:10e0400012249ce521a2e792af7900740312249c6c
+:10e0500085328285338302dc86f0ee242c12de4585
+:10e060007800797dee241cf584ef12e4b1faa3e088
+:10e07000fb22853282853383e0faa3e0fb1218117c
+:10e080002274f012251874fe1224b612274c74fe66
+:10e0900012248612db2612e142600f85328285331c
+:10e0a00083e0fa121811793a8076ee242cf527efe6
+:10e0b0003400f52885278212e12d1223fb12e18618
+:10e0c000ee2455f523ef3400f5247525057526005b
+:10e0d000782512276012c97612249ce5a8fac2afef
+:10e0e000852782852883ee241ef584ef12e150ee09
+:10e0f000245a12d09912d6bfa3a3a3a37402f0eaa4
+:10e10000a2e792af7522077822122764782312279c
+:10e1100060790174031224ef12e17712249c7900d4
+:10e12000740202e04dee242cf582ef3400f5837882
+:10e1300000797dee241cf584ef12e170e0faa3e093
+:10e14000fb22e912e231a3a3a3a3a3a3a3a3e0228a
+:10e1500012e167e8c333f8e933f9059212cf3a24a4
+:10e1600007f8e93400f92212e170e0f8a3e0f9229f
+:10e170003400f585059222e0fca3e0fdeefaeffb0a
+:10e180001216f774032212e1a912e19012e19c2207
+:10e19000e8240108e93400f9ee243222f582ef3454
+:10e1a00000f583e8f0a3e9f022882389240592e0b2
+:10e1b0002523f8a3e03524f92274f212251874fe01
+:10e1c0001224b612274ce912e22da3a3a3a3a3a302
+:10e1d000a3a3858225858326e06004793a803beeff
+:10e1e000240ff582ef12e73fa2e040ef12180b8aee
+:10e1f000238b24ac23ad24ec4d70047907801b12d3
+:10e20000e1251223fb12e18685258285268374078a
+:10e21000f0eefaeffb12179f790085328285338387
+:10e22000122754740212249c7f060225f012e23158
+:10e230002275f0e4a4f8a9f012dab7ae82af830534
+:10e24000922274f712251874fe1224b612274c7508
+:10e25000845c7585048004888489858584828585ad
+:10e260008312e4bd6017ea687002eb6970e98a8284
+:10e270008b8312e2808a828b83e4f0a3f002c9cb05
+:10e2800012e4c685848285858312e1a32274f71285
+:10e29000251874fe1224b612274ca2afe433fec236
+:10e2a000af90045512e2f2700c1237a1e5e170fc58
+:10e2b00075e1068026858482858583a3a312e2eb1f
+:10e2c0000592a3a3a3a3e028f8a3e039f98a828bdf
+:10e2d000830592a3a312e2e61237a1ee02c9c7f5a5
+:10e2e00082e52212de48e812e1a42212e4c622905e
+:10e2f00003fc12e2fae584458522e0f584a3e0f50b
+:10e30000852274f412251874fe1224b612274ceae2
+:10e31000feebff8921ee2435faef3400fb8a828b75
+:10e320008312e2eb9061d0e0fc7480c39cf522e89c
+:10e3300049700302e48de82424f582e912ce51fcf1
+:10e3400012e4a36c600302e48d888289835392fef9
+:10e35000a3a3858284858385852223e02402fce4af
+:10e360003400fde5239ce49dc365d03340481c1c6c
+:10e37000e522c39c24fef522e004f5d98882898336
+:10e38000a3a3a3e0f5d97c00800f8c23e82523f517
+:10e3900082e912d31de0f5d90c858482858583e05e
+:10e3a000fdecc39d40e4e5e170fc75e19588828950
+:10e3b0008312e4bd70938a828b8312de3f70030266
+:10e3c000e48d900485e0a2e0400302e48d90048790
+:10e3d000c3e09402a3e09400500302e48de594545a
+:10e3e00004f522700e12e4d34009759403e594a25b
+:10e3f000e250fa1219a98a238b24a823a924c3e87e
+:10e400009401e99400a2d265d033406612e6c9eccb
+:10e41000faedfb1223fbe894024057e8fa8cf0a4d3
+:10e42000caacf08df0a42cfce42cfb8e828f83a36d
+:10e43000a3e09af0a3e09bf090048712e499ee2405
+:10e440002c12d09912e4999004a3e0c0e0ee2429a4
+:10e4500012d099d0e0f0eefaeffb122dbcee2410b2
+:10e46000f582ef12e73fd2e3f0e5e170fc75e1429f
+:10e47000801be5227017e5a8f8c2af12eabfe59449
+:10e48000a2e25003759402e594a2e240fa8532823a
+:10e490008533835392fe02e8e9c3e098f0a3e09449
+:10e4a00000f022900455e02406f584a3e012e4b1c4
+:10e4b0002212e170e0228a848b8590045512e4c612
+:10e4c000e849229003f2e0f8a3e0f922906182e4a7
+:10e4d000f0a3f0e5a8f8c2af9004c6e0d2e012eadb
+:10e4e000c9e594a2e222e5e170fc75e191e5e170f5
+:10e4f000fc75e18102d91ae5e170fc75e19102d960
+:10e500001a74f612251874fe1224b612274c12e85b
+:10e51000f6ee2429f582ef12e73f04f0640370025f
+:10e52000e4f0e02425906000f09009b91222b69042
+:10e5300061951222c2900489e05401f91216738e7b
+:10e54000828f83a3a3a3a3a3a3a3a3a385822185cf
+:10e550008322ee241012d6b8a2e0e433f9aa21ab4c
+:10e560002212167912179375d923900489e0a2e03c
+:10e5700050047840800278000592e0a2e050047ace
+:10e580008080027a00e84a4405f5d90592e0a2e0cd
+:10e5900050067a917b0480047a8b7b0479061216ec
+:10e5a000497906aa21ab221216497904ee241212e7
+:10e5b000e6b57903ee241612e6b57909ee241912b0
+:10e5c000e6b57905ee242212e6b5ee2427f582efb2
+:10e5d00012e73f44a0f5d9e5e170fc75e195906044
+:10e5e0000d74c1f090045c80068584828585831259
+:10e5f000e2fa858482858583a3a3a3a3a3a3a8822b
+:10e60000a983e58445856005e0a2e740dc12e6c900
+:10e61000e5844585606f0592a3a385848285858303
+:10e620009003e912e13c0592e0c39afaa3e09bfb58
+:10e63000ea2cfaeb3dfb8882898312e6be12247332
+:10e64000eac39521faeb9522fb8e828f83a3a3a3c5
+:10e65000a3a3a312e6be122473ea2521f8eb352208
+:10e66000f9ecfaedfb1223fb8a218b22a821a922c7
+:10e67000e89404e994005006e82cf8e93df9e82410
+:10e68000fcf8e98005ec24fff8ed34fff99003f87d
+:10e6900012e2e690600e12e2e6a3ecf0a3edf07554
+:10e6a000910090618274c0f075a100c2c275a7028a
+:10e6b000d2ba02e9b8faef3400fb12164922e0f5ab
+:10e6c000217522007402782122ee241c12e743fcfb
+:10e6d000a3e0fdecc333fced33fd2274f6122518e4
+:10e6e00074fb122486ec4d60498532828533837435
+:10e6f00006f074011224ef744712c50a7403122441
+:10e70000ef740312c50aea240ff582eb12e73fd239
+:10e71000e0f0752105782112276474011224ef8539
+:10e7200082218583227821122760790c12de27123c
+:10e73000249c740502e9c3e584240ff582e5851263
+:10e74000e74622f582ef3400f583e02274f71225c4
+:10e750001874fe1224b612274c12e4b67004790025
+:10e76000801d9004c6e0a2e050047902801190045c
+:10e770009b1222b68584828585831222c27901028a
+:10e78000c9cb74f712251874fe1224b612274c1246
+:10e79000e4a32404602a14600514601b802be5e1c7
+:10e7a00070fc059290040ce0f874c128f58274099d
+:10e7b00012e73ff5e1802ce5e170fc75e11680235e
+:10e7c000e5e170fc75e117801a0592900485e0a2de
+:10e7d000e05009e5e170fc75e1108007e5e170fcaf
+:10e7e00075e11102bd8774f412251874fe1224b667
+:10e7f00012274c12d8bf8003121811e584243b1253
+:10e80000e86b70f4e584243712e86b600812181185
+:10e8100080f2121811e584243912e86b70f48584b3
+:10e8200082858583a3a3a3a3a3a3858223858324b1
+:10e83000e0ff7521e475220078211227607c007dbd
+:10e8400000aa84ab8512e87c12249cef8523828584
+:10e850002483f090045e12e28090045ee584f0a3cd
+:10e86000e585f09004bae014f08078fae58534008c
+:10e87000fb121631ea4b22faef3400fb121f077429
+:10e88000022274f412251874fe1224b612274c903a
+:10e89000045e12e8f9ee4f60468e828f8312e8ff25
+:10e8a0008e848f850592a3a3a3a3a3a3e0f521756e
+:10e8b00023e4752400059278231227607c007d00f4
+:10e8c000eefaef12e87b12249ce5210592f0ee248b
+:10e8d0001112d09974800592f09004bae004f0ee21
+:10e8e000faeffb8532828533831227547402122497
+:10e8f0009c7f040225f09003fce0fea3e0ff2212bf
+:10e90000e4c690045e12e1a322c082c0835392fe4b
+:10e91000906184e4f09061a0e0f8e4f0e5e170fc3f
+:10e9200075e1029061bfe060fae0f5bce0f5bc8003
+:10e93000159061bf12e95d12e95de5bc8a828b83a7
+:10e94000f0a3aa82ab83e9fc74ff2c190470e2e502
+:10e95000e170fc75e101e89061a002bcd2e0f5bd78
+:10e96000e0f5bde0f5bde0f5bd2274f612251875a1
+:10e97000212575220078211227607c607d0412c950
+:10e980007a12249c78211227607c007d007a607bbb
+:10e990000402b93b74f6122518e9fe7521057522ab
+:10e9a00000782112276012cf2b2422fce93400fdcd
+:10e9b00002de7d740112249c853282853383122706
+:10e9c00054740212249c7f020225f0c082c083533b
+:10e9d00092fe900497e08a828b83f090049812e96b
+:10e9e000f9f090049912e9f9a3f090049a12e9f968
+:10e9f000a3a3f012283c02bcd3e08a828b83a3221b
+:10ea0000c082c083e975f0e4a4f8a9f05392fe1225
+:10ea1000cf332411f582e912e73ff902bcd374f237
+:10ea200012251874fe1224b612274c8c238d24e96b
+:10ea300075f0e4a4feaff075250675260078251262
+:10ea400027600592900453e02ef582a3e03ff58302
+:10ea50000592a3a3a3a3a3a3a3a3a3ac82ad8312f4
+:10ea6000c97a12249c900453e02ef8a3e03ff9e801
+:10ea70002410f582e912e73fa2e0e4338523828582
+:10ea80002483f002e21ac082c0835392fe90605a3f
+:10ea9000e402bcd0c082c083e5e170fc75e101e511
+:10eaa000a8f8c2af5392fe12eabf90605a12db324e
+:10eab000906058e4f0a3f0a3f0a3f0a302bcd090c0
+:10eac00004c6e0c2e012eac922f0753400e8a2e709
+:10ead00092af22c082c0835392fe12e4cc400375f1
+:10eae00094019060517401f0a37484f090605fe42d
+:10eaf000f0906053f090605e7403f09061e9e4f090
+:10eb00009009c51222b69061951222c212ec00e95a
+:10eb1000c333f8e9c394149061a650077420f074cd
+:10eb2000188004e4f0741628906184f0e5e170fc2c
+:10eb300075e11802bcd374f5122518e9feeaff8bc3
+:10eb40002312e4cc40037594019060517403f0a348
+:10eb50007493f090605e7403f0906053e4f0906101
+:10eb6000e9f09009c51222b69061951222c212ec0a
+:10eb700000eec333f8eec394149061a650077405f9
+:10eb8000f074188005740ff0741628906184f0e515
+:10eb9000e170fc75e1f174022ff5d98523d98fd985
+:10eba00078008004e4f5d908e8c39f5023e523608a
+:10ebb0000814601414601580eb882174c92521f5b0
+:10ebc00082740912e73f80dd740f80d9745580d5b7
+:10ebd000e5e170fc75e19574036523906190700d1b
+:10ebe000e0d2e5f0e5e170fc75e104800be0c2e500
+:10ebf000f0e5e170fc75e11979701219c102d08855
+:10ec0000906054e4f0a37455f0a3f0a3f02274e8ec
+:10ec100012251874fe1224b612274c74f81224869a
+:10ec2000eafeebff802412f59ef521e4f522f523a0
+:10ec3000f52412f6261222a712f4fb900b2512f5ea
+:10ec400065f9900b25e8f0a3e9f0ee4f6029ee247a
+:10ec5000ff1eef34ffffee4f701d79ff7408122482
+:10ec60009c8532828533835392fe1227547402129c
+:10ec7000249c7f100225f05392fe12f59ef812f5a7
+:10ec8000547417680592701090079f12f57e9007d4
+:10ec90009f12f5fd790080c4a3aa82ab8374366805
+:10eca0006084741b687021059290079f12f53f12d3
+:10ecb00022b612f53a1222c212f5ef90079f12f512
+:10ecc00065f990079f02ec45740168702312f59e68
+:10ecd000c0e012f815d0e012f4f812f7ea12f59c31
+:10ece000c0e012f815d0e012f55112f7ec02ec4a30
+:10ecf000741068701112f59ec0e012f815d0e01281
+:10ed0000f4f8059280e4741968700e900b25e024e5
+:10ed1000fdf8a3e034ff02ec41741a68900b2570f3
+:10ed200005e024fe80ebe024fcf584a3e034fff54d
+:10ed300085742468703412f51f12228512f5bd7493
+:10ed40000c782112247312f5b7122285e526540f90
+:10ed5000f9e52249fb12f815e5250592f0a3ebf041
+:10ed6000a3e4f0a3f0059202ec3b742568702f1227
+:10ed7000f51f12228512f5bd7418782112217b121d
+:10ed8000f5b71222850592900b2878251222137868
+:10ed900021792512223912f6281222a780c7742160
+:10eda00068701d12f51f12228512f65f122285125d
+:10edb000f6261222a712f5ed12f5b71222a780a5aa
+:10edc000743468600302ee4b12f51f12228512f6ae
+:10edd0005f12228512f63212228585292d852a2e70
+:10ede000852b2f852c300592900b2c782d12221319
+:10edf00012f4ac600512f525800312f49812f4e3c6
+:10ee000012221312f4a3600e05929007a1e02525ab
+:10ee1000f582a3e08008749f2525f58274063526c7
+:10ee2000f58312f4831221ade525452645274528b3
+:10ee3000700302ec4a0592e08a848b850592f00506
+:10ee400092a30592a3aa84ab8580d7744668600319
+:10ee500002ef36900b341222b6853282853383124c
+:10ee600022c212f51f12228512f65f12228512f6b7
+:10ee70003212228585292d852a2e852b2f852c302f
+:10ee80000592900b2c782d12221312f4ac6005120f
+:10ee9000f525800312f49812f4e312221312f4a35e
+:10eea000601205929007a1e02525f582a3e03526a2
+:10eeb000f5838024749f2525f582740680f0c2f0c6
+:10eec000a2f0e433f525e4f526f527f5288532840c
+:10eed000853385782512224c12f4831221ade52565
+:10eee0004526452745286028eafcebfd8c848d8566
+:10eef000a3aa84ab85a882a9830592a38c848d855f
+:10ef00000592e0fc88848985e06c60b2d2f080b024
+:10ef10008532828533830592782112228512f4b5d9
+:10ef20007004d2f08002c2f0a2f0e433fa12f58845
+:10ef3000e4f0a302ed62740e68703412f50612223a
+:10ef4000850592900b34782112228512f5e2c0e0fb
+:10ef500012f4bed0e00592f0900b3878211221ad6a
+:10ef6000900b3c7821121f4c500302ec4a80dc7459
+:10ef70000c68703a12f5061222850592900b4078c3
+:10ef80002112228512f4bee0c0e012f817d0e0058d
+:10ef900092f012f7ec0592900b3078211221ad908f
+:10efa0000b347821121f4c400302ec4a80d6741cab
+:10efb00068706712f51f12228512f59cf812f4fb97
+:10efc0009007a1e02521f584a3e03522f585900b7b
+:10efd000341222b674041224ef1222c20592e0c049
+:10efe000e074041224efd0e00592f00592a37405ba
+:10eff0001224ef800d439201e00592f00592a305e3
+:10f0000092a318e870ef74041224ef5392fe1222b8
+:10f01000b612f53a1222c202ec3b740d68704a1225
+:10f02000f50c12228512f6321222850592900b34cd
+:10f030007821122285801412f46c12f4d8e0c0e01a
+:10f0400012f817d0e012f54d1221ad782579211272
+:10f050001f2240e3900b3c7821121f4c500302ec1e
+:10f060004a12f6031221ad80eb741d68704c12f544
+:10f070000c12228512f6321222850592900b3478fa
+:10f0800021122285801612f46c9007a112f808c094
+:10f09000e012f815d0e012f54d1221ad7825792156
+:10f0a000121f2240e1900b3c7821121f4c500302aa
+:10f0b000ec4a12f6031221ad80eb740f6860030274
+:10f0c000f16512f50c12228512f632122285059294
+:10f0d000900b3c7825121f4c405875210475220076
+:10f0e000752300752400782179251221d385328279
+:10f0f00085338378211222a78009900b2512f57e93
+:10f1000012f5fa853282853383782d122285852d7a
+:10f1100021852e22852f23853024900b30782112d3
+:10f1200021ad85328285338378211222a712f4ac77
+:10f1300070c8852521852622852723852824900bc4
+:10f140003078211221ad900b347821121f4c4003ee
+:10f1500002ec4a12f5e2c0e012f4bed0e00592f0f3
+:10f16000900b3080dc740268700f12f51f1222853c
+:10f1700012f6541221c002ed65740368700f12f587
+:10f180001f12228512f6541221ff02ed65740468e5
+:10f19000700f12f51f12228512f65412222602ed6c
+:10f1a00065740668700f12f51f12228512f654124c
+:10f1b000227202ed65740568700f12f51f12228528
+:10f1c00012f65412224c02ed65740768701812f59d
+:10f1d0001f12228512f65f12228578257921121fcf
+:10f1e000df059202edb8740868702b12f506122242
+:10f1f0008512f5bd12f4a3600f12f628122285784d
+:10f200002179291220f98008900b34782112228567
+:10f210005392fe02ed96743268701e12f50c1222a3
+:10f220008512f65f121f4c4004d2f08002c2f0a299
+:10f23000f0e433fa059202ef2d740a68701012f5ab
+:10f240000c12228512f65f121f3750e180db7433f7
+:10f2500068701612f50c12228512f65f121f0d60ef
+:10f2600004d2f080cac2f080c6740968701612f524
+:10f270000c12228512f65f121f0d7004d2f080afbf
+:10f28000c2f080ab740b68704312f51f1222850523
+:10f290009212f5aae4f526f527f52812f4fb12f5eb
+:10f2a000b0c529f52ae4f52bf52c78257929122209
+:10f2b0003912f55412f4b5600302ec4a059290f746
+:10f2c00090e02525f8a3e0352602ecc1741468709f
+:10f2d0001212f5aa12f4fb12f59ef9a82512f57286
+:10f2e00002ecc1741868703d12f5b0f52af52bf5e3
+:10f2f0002c12f4fb852921852a22852b23852c2499
+:10f300005392fe900b3078291221ad12f4b57003a0
+:10f3100002ec4a12f59ec0e012f815d0e012f55149
+:10f3200012f7ec80cf741568701d9007a112f66576
+:10f33000e8fae9fb12f588ebf0a3e4f0a3f012f58c
+:10f34000ed9007a302ec45741668704a90079f126f
+:10f35000f81a12f4fd858482858583e0f9121a3942
+:10f360008a848b85e5844585700302ec4a9007a565
+:10f370007401f09007a3e0faa3e0fb0592a3a3a316
+:10f38000a3a3a3a3a3e493f582740193f583059249
+:10f3900012250302ec4a742f6870179007a312f627
+:10f3a0005912228505929007a1e521f0a3e52202da
+:10f3b000ec49744068702712f51f12228512f5d6a9
+:10f3c000600f12f62812228512f4b56004d2f08084
+:10f3d00002c2f0a2f0e433fa5392fe02ef2d744120
+:10f3e00068701812f51f12228512f5d670df12f61a
+:10f3f0002812228512f4b560d880d2744268701643
+:10f4000012f51f12228512f65f122285e52178255a
+:10f4100012217b02f1e1744368701612f51f12226b
+:10f420008512f65f122285e521782512214802f126
+:10f43000e1744568701712f50c12228512f65f12fe
+:10f440001f374004d2f08002c2f002f22f744468e9
+:10f45000600302ec4a12f50c12228512f65f121fad
+:10f460004c5004d2f08002c2f002f22f85292f8581
+:10f470002a3085212d85222ee52f252df8e53035e2
+:10f480002ef92285212585222685232785242843b8
+:10f490009201900b30782122749f2529fa74063549
+:10f4a0002afb22e529452a452b452c22e52d452e10
+:10f4b000452f453022e52145224523452422852933
+:10f4c00027852a28852125852226e5272525f8e573
+:10f4d000283526f912f4d822749f28f5827406394b
+:10f4e000f5832285252985262a85272b85282c53d7
+:10f4f00092fe900b2c7829220592f0059290079f9e
+:10f50000eaf0a3ebf02212f51278292212f5127814
+:10f510002522900b25e584f0a3e585f005922212c3
+:10f52000f51278212205929007a1e02529f582a302
+:10f53000e0352af583aa82ab83220592900b25122f
+:10f54000f54322e0f582a3e0f58305922212f60b43
+:10f55000220592f090079f12f7fd90079fe582f039
+:10f56000a3e583f02212f56922e02404f8a3e03435
+:10f570000022059290f790e028f8a3e03922e024d9
+:10f58000fff8a3e034fff92212f591ea0592f0a307
+:10f5900022900b25e0f584a3e0f58522059212f573
+:10f5a000a22290079f12f64ae02212f5a2f5252228
+:10f5b00012f5a2f529e42212f62e78252212f5c1c1
+:10f5c000220592900b25e024fc12f5cd22f8a3e051
+:10f5d00034ff12f5f92212f5c1e5214522452345f4
+:10f5e0002422900b25e024ff12f640e022059290a1
+:10f5f0000b2512f56912f5f922f9900b25e8f0a315
+:10f60000e9f02212f591e412f60b220592f0900b2c
+:10f610002512f801900b25e582f0a3e583f0059211
+:10f62000900b38782122059212f62e78212212f6bc
+:10f63000472212f6387829220592900b25e024fc07
+:10f6400012f5cd12f64722900b25e0f584a3e0f5e4
+:10f65000850592220592900b2512f63d7821221203
+:10f66000f638782522e0f8a3e0f92274f212251882
+:10f6700074fe1224b612274c892174101224ef1242
+:10f68000f665e5c7f52275c7038a828b83e0f52509
+:10f69000a3a3e0f5268a828b83a3a3a3e0f524e548
+:10f6a00025a2e7400b9007a5e0700302f7d4e4f031
+:10f6b000900b25e0fea3e0ff9007a1eef0a3eff092
+:10f6c0008a828b83a3a3a3a3aa82ab8374fc252184
+:10f6d000f52180208a828b835392fee0c0e012f8ed
+:10f6e00017d0e00592f08a828b830592a3aa82aba1
+:10f6f0008312f7ea85212374ff2523f5210470d4b2
+:10f70000ecfaedfbea24ff1ceb34fffdea4b602230
+:10f71000888289835392fee0c0e012f817d0e0059a
+:10f7200092f0888289830592a3a882a98312f7eabe
+:10f7300080cee525a2e7400302f7d1e526c333f8e2
+:10f74000e433f95392fe90f79012f808f8a3e0f929
+:10f7500074ff68700374ff69606ce524c333fae4d6
+:10f7600033fb12f572f9e82af582e93bf58312f6cc
+:10f770006574ff68700374ff69604b12f574f9904b
+:10f78000079f12f5fd90f7ede0faa3e0fb121d9f35
+:10f79000e960337525857526017825122760900765
+:10f7a0009f059290f790e0f8a3e0f90592e0c398e6
+:10f7b000f525a3e099f526782512276079ba121a63
+:10f7c0003f740412249c5392fe900b25eef0a3ef9d
+:10f7d000f08522c78532828533835392fe122754e7
+:10f7e000740212249c7f060225f00592900b2512cc
+:10f7f000f7fd900b25e582f0a3e583f02212f801d6
+:10f800002212f543a3059222e028f584a3e039f5fe
+:10f81000850592e0220592900b2512f5942274f74b
+:10f8200012251874fe1224b612274ceafeebffeee6
+:10f83000600514600e805e12f8aa900b27e4f07940
+:10f84000018054900b27e06401700f12f8aa900712
+:10f85000a9e4f09007aaf0a3800cef9007a9f0901c
+:10f8600007aaecf0a3edf0900b277401f00592903d
+:10f8700007aa12277b05929007a9e0fc7d0090075c
+:10f88000a7e0faa3e0fb9007a6e0f9121da5740219
+:10f8900012249c80aa7900853282853383122754f2
+:10f8a000740212249c7f010225f0ef9007a6f090cd
+:10f8b00007a7ecf0a3edf02274f512251874fe12e0
+:10f8c00024b612274c90620ee0fee4f0906211e044
+:10f8d000f523a2e450197480f09008ce7407f0125a
+:10f8e000fae5600612facf1225039008cee4f0e59f
+:10f8f00023a2e2500b906211e4f09008cef0807fda
+:10f900009008cee0f87402687061906216e0ff051e
+:10f91000929008e5122777eff97a207b62121e4d4c
+:10f92000740312249c8f219008e812fada12faf07c
+:10f9300012fae86004744080027448906211f0e8a2
+:10f9400049701012fae5600612facf1225039008ea
+:10f95000cee4f0ee90620ef085328285338312277a
+:10f9600054740212249c7f030225f074066870060a
+:10f9700012facf1225039008cee0600302fa67e581
+:10f9800023a2e050ce7cdd7d0879087a207b6212cc
+:10f990001e539008ece4f0a3f09008dde054e06022
+:10f9a0001c24e0700302fa3924e0606f24c0604533
+:10f9b00024e0700302fa4824e0606f8030a3e01472
+:10f9c000601c24fe601324fe600a24fc601524fee3
+:10f9d00060168019121ecb807c121ec58077121e05
+:10f9e000bf8072121ee3806d121eef80689008cef9
+:10f9f0007404f08068a3e0600e24fa600f24fe60b7
+:10fa00001024fe601180e6121eb38049121ed180c0
+:10fa100044121edd803f121ee9803a9008ec748f7c
+:10fa2000f0a3741ef0121e8f802b9008ec7495f0da
+:10fa3000a3741ef0121e95801c9008ec7483f0a332
+:10fa4000741ef0121e83800d9008ec7489f0a3746c
+:10fa50001ef0121e899008cee06404700474608069
+:10fa6000027440906211f09008cee0f87401687062
+:10fa70004d7523029008e8e0f8a3e0f9c3e894206c
+:10fa8000e994005007e8ff75230a80027f20059261
+:10fa90009008e5122777eff97a207b62121e5f74d7
+:10faa0000312249c8f2112faf012fadae5239062f5
+:10fab00011f0efc39420400302f95302f943740597
+:10fac00068600302f95312facf12250302f95305b5
+:10fad000929008ec12fd59059222c3e09521f0a303
+:10fae000e09400f0229008ece0f8a3e0f9e8492265
+:10faf0009008e5e0f9a3e0faa3e0fbe92521f9eaa3
+:10fb00003400fa9008e5e9f0a3eaf0a3ebf0a322b1
+:10fb100074f61225187800882174cf2521f5827497
+:10fb20000812fb3c40f17800882174d42521f5822d
+:10fb3000740812fb3c40f17f020225f03400f5838b
+:10fb4000e9f008e8c3940522c082c0835392fe9076
+:10fb500008c77402f0a3e4f09008cef07903121ef7
+:10fb60003502fc9574f6122518752142752200782d
+:10fb7000211227607c007d007aee7b08121f07743b
+:10fb80000212249c9008ea7401f09008ebf09008af
+:10fb9000c704f0900369e0a2e1500e90620f740375
+:10fba000f0e0a2e750fb439a02808cc082c08353ee
+:10fbb00092fe900369e0a2e1500853f4fed2904314
+:10fbc000fe0102fc9574f712251874fe1224b61279
+:10fbd000274c8a848b85e9f8740b1224ef12fc6f92
+:10fbe000600c439201e0121fc212fc6470f402fd2b
+:10fbf0003e74f7122518e9feeb90036bf0eaa3f0d0
+:10fc0000eda3f0ec12fc2a741af012145702fd4f07
+:10fc100074f7122518e9feed90036bf0eca3f0ebfe
+:10fc2000a3f0ea12fc2a744a80dfa3f0a3e4f0ee0a
+:10fc3000a3f0a37420f0a32274f712251874fe1207
+:10fc400024b612274c8a848b85e9f8740b1224efb2
+:10fc500012fc6f600c121fa1439201f012fc647041
+:10fc6000f402fd3ee9240109ea3400fa18e822e032
+:10fc7000fca3e0fda3e0feecf9edfaeefbe822c008
+:10fc800082c0835392fe9008dbe054106007e0547a
+:10fc9000eff0121e2fd083d08202111874f71225b4
+:10fca0001874fe1224b612274ceafee5c7ff75c78a
+:10fcb0000312fd54ee24fe600814605d14602e8073
+:10fcc0007b7aee7b08121e9be960719008ebe06086
+:10fcd0006b9008efe0fb9008ebe0f8ebc398405c1a
+:10fce0007c007d007a05790312fd54804a9008ef6c
+:10fcf000e0f89008eee0fae8c39af895e0f9e849f0
+:10fd0000603a9008ebe0fac3e89ae99400402d7c51
+:10fd1000007d00e8fb7a05801c906211e0a2e040c3
+:10fd2000047840800278009008eae0600f7c007d53
+:10fd300000e8fb7a06790305921225038fc7853206
+:10fd4000828533835392fe122754740212249c7fbf
+:10fd5000010225f00592900b03e0f582a3e0f58304
+:10fd60002274f6122518e9fe8e21752200782112e0
+:10fd70002760eafcebfd900931e0f8743228fa7450
+:10fd8000093400fb121f01740212249c900931e017
+:10fd90002ef002fb37c082c0835392fe900931e0ff
+:10fda00012fedc02fc9574f212251874fe1224b6c1
+:10fdb00012274c89218a228b23ecfaedfbe5226085
+:10fdc0003714603414700302fe6914600914601c57
+:10fdd00014603502fe7ee5239008eaf060097b039b
+:10fde0007a0079071219eb790102fec9e523900820
+:10fdf000ebf060f37b0480e8a923121e71740165a7
+:10fe00002270e4121e7780df900931e0fc8c82a81a
+:10fe1000827440c398fa95e0fb852325c3ea9525b3
+:10fe2000eb9400a2d265d03350067440c39cf523f6
+:10fe3000743228fc74093400fdab237a027903e59f
+:10fe400021c333fee433ff74092ef584740b3ff5b0
+:10fe500085059212fad4122503e9608b900931e0ee
+:10fe60002523f012fedc02fde79008eee0f8a3e0a7
+:10fe7000c398f8c3952350028823e52370047900c2
+:10fe80008047f52575260078251227609008eee05a
+:10fe9000f874f028fc74083400fd121f017402127b
+:10fea000249c9008eee02523f0f8a3e0687018e4a5
+:10feb000f09008eef09008dce054dff090620e74f1
+:10fec00004f0906214e4f0a9238532828533831212
+:10fed0002754740212249c7f060225f0f97a327ba3
+:10fee00009121ea1900931e4f02274f7122518744a
+:10fef000fe1224b612274c8a848b85a2afe433fc11
+:10ff0000c2af858482858583e0faa3e0fbea4b607b
+:10ff10001a8a828b83e0f8a3e0f9e80592f0a3e95e
+:10ff2000f08a828b83e40592f0a3f0ec806174f791
+:10ff300012251874fe1224b612274c8a848b85ec85
+:10ff4000f8edf9a2afe433fcc2af858482858583e6
+:10ff5000e0faa3e0fbea4b7009e80592f0a3e9f0b0
+:10ff6000801d8a828b83858284858385439201e00c
+:10ff7000faa3e0fbea4b70eae80592f0a3e9f0eca3
+:10ff8000a2e092af8532828533835392fe800aa22b
+:10ff9000e092af8532828533831227547402122493
+:10ffa0009c7f010225f074f712251874fe1224b606
+:10ffb00012274ca2afe433f521c2af8a828b83e0d3
+:10ffc000f8a3e0f9e84960248c848d8580048e8450
+:10ffd0008f85858482858583e0fea3e0ffee4f70e8
+:10ffe000ed858482858583e8f0a3e9f0ecf8edf9ee
+:10fff0008a828b83e8f0a3e9f0e5218092ffffff7e
+:020000040001f9
+:1000000074f6122518752183752201782112276054
+:10001000797f0290ca74f412251874e0122486794c
+:10002000008a828b83a3e060061460030280c78a83
+:10003000828b83a3a3e0fe8a828b83a3a3a3e0f534
+:10004000248a828b83a3a3a3a3e0ff8a828b83a34a
+:10005000a3a3a3a3e0f523803a75f900a2f840fc1e
+:10006000e5f9c0e01280efd0e0f008e8c39f40e976
+:10007000eff521782112276474011224efac82add0
+:10008000837900852421aa217b0012159574011221
+:10009000249c1e1217ffe96024ee6021e5237800fe
+:1000a00070c9e8c39f50c975c100e586a2e040fa57
+:1000b000e5c1c0e01280efd0e0f00880e5ee8532c7
+:1000c00082853383f079018532828533838582216d
+:1000d00085832278211227608921752200782112d8
+:1000e000276079b112859812249c74200285ef88cc
+:1000f00021853282853383e5822521f582e58334ab
+:1001000000f5832274f712251874fe1224b6122704
+:100110004c128ec41217f379ac0288c2c082c0831d
+:10012000128dc01217ed79ad028c1a74f6122518d3
+:100130001217e78a218b22782112276079ae02906c
+:10014000cac082c0831217e179af028c1a74f6120a
+:10015000251874db122486853282853383aa82ab0c
+:10016000831217c38532828533838582218583225a
+:1001700078211227607521257522007821122760c9
+:1001800079b012859812249c7425803b74f6122550
+:100190001874fe1224b612274c8a848b851286a608
+:1001a000122760797e128feb12249c7a000592e070
+:1001b000f9121d33800612859812249c853282859f
+:1001c0003383122754740212249c7f020225f07498
+:1001d000f412251874fe1224b612274ceafeebff27
+:1001e0008e848f850592a3a3a3a3a3a3a312277b29
+:1001f0008e848f85a3a3a3a3a312277b12821b1235
+:100200001493740412249c8a218b22782112276073
+:100210001282af12276079790285938e828f8305cf
+:1002200092a3a312851a1287012274f4122518745e
+:10023000fe1224b612274c8a848b857a130592e02d
+:10024000f91214998a218b2278211227601286a62e
+:10025000122760797702859374f412251874fe12c0
+:1002600024b612274ceafeebff8e848f850592a3fd
+:10027000a3a3a3a3a3a312277fee24081285281209
+:1002800027608e848f850592a3a3a3a3a312277b47
+:1002900012821b121559740512249c8a218b227814
+:1002a000211227601282af12276079800285938e17
+:1002b000828f83e0f52175220078212274f61225c1
+:1002c000188a828b83e0f91215178a218b227821f4
+:1002d00012276079870290ca74f712251874fe12eb
+:1002e00024b612274c8a828b838582848583850578
+:1002f00092a3a3e0fbe5822403fce5833400fd85a3
+:100300008284858385a3e0fa0592e0f91215d179fc
+:10031000750288c274f712251874fe1224b61227cb
+:100320004c1289e11215d779760288c274f412252d
+:100330001874fe1224b612274c74df122486eafecb
+:10034000ebff8532828533837420f08e848f8505a0
+:1003500092a3a385822185832205927821122760aa
+:1003600074031224efac82ad83858482858583e09b
+:10037000f98e828f831289b4121589740212249c1b
+:100380008a238b2474011224ef85822185832278ad
+:100390002112276074021224ef1282b312276078b0
+:1003a00023122760059212277b8e848f8512277b6c
+:1003b0007973121a3f740a12249c74210285e17425
+:1003c000f412251874fe1224b612274c74df12247e
+:1003d000868a848b858532828533837420f085827a
+:1003e00021858322782112276074031224efac82c6
+:1003f000ad838584828585831289b412158f74023a
+:1004000012249c8a238b2474011224ef8582218577
+:100410008322782112276074021224ef1282b31211
+:1004200027607823122760059212277b7974128f38
+:10043000e5808474f412251874fe1224b612274c39
+:10044000eafeebff8e848f850592a3a3a3a3a312dc
+:10045000277f1285251227608e828f8312822112b8
+:100460001553740312249c8a218b22782112276051
+:100470001282af122760798102859374f4122518d5
+:1004800074fe1224b612274c8a848b85858482855b
+:100490008583a3a3a3e0fca3e0fd12855e121547ac
+:1004a0008a218b2278211227601286a61227607972
+:1004b0008302859374f412251874fe1224b6122751
+:1004c0004ceafeebff12180bea4b60398e848f85e5
+:1004d0000592a3a3a3a3a312277f12852512276049
+:1004e0008e848f850592a3a3a312277b8e828f8390
+:1004f000059212851ae0f912154d740512249c8a92
+:10050000218b2280067521827522017821122760b5
+:100510001282af12276079828079a3e0fca3e0fd0c
+:100520008e828f8322ee2406f521ef3400f522051a
+:100530009278212274f412251874fe1224b6122720
+:100540004c12855a1215418a218b2278211227607c
+:100550001286a6122760798480398a848b858584e7
+:1005600082858583a3e0faa3e0fb0592e0f922747b
+:10057000f412251874fe1224b612274c12855a1252
+:10058000153b8a218b2278211227601286a612271a
+:100590006079881285988049121a3f74042274f495
+:1005a00012251874fe1224b612274ceafeebff8eb9
+:1005b000848f850592a3a3a312277f1286ef1215bd
+:1005c00035740112249c8a218b2278211227601213
+:1005d00082af122760798580ba12859812249c74a4
+:1005e0000112249c853282853383122754740212af
+:1005f000249c7f040225f074f412251874fe122442
+:10060000b612274ceafeebff8e848f850592a3a3da
+:10061000a3a3a312277f1285251227608e828f83c2
+:10062000128221121529740312249c8a218b2278ac
+:10063000211227601282af12276079890285937494
+:10064000f412251874fe1224b612274c1289e112f6
+:10065000152f8a218b2278211227601286a6122755
+:1006600060798a02859374f412251874fe1224b6f8
+:1006700012274c8a848b85858482858583a3e0fc40
+:10068000e58424020a0ae5853400fb0592e0f912ac
+:1006900015238a218b2278211227601286a6122721
+:1006a00060798b0285930592e0f521752200059211
+:1006b00078212274f412251874fe1224b612274ce5
+:1006c000eafeebff8e848f850592a3a3a312277ffa
+:1006d0001286ef12151d740112249c8a218b227838
+:1006e000211227601282af1227607986028593ee6d
+:1006f0002404fcef3400fd8e828f83059212870163
+:1007000022a3e0faa3e0fb8e828f83e0f922028c21
+:100710000074f612251874fe1224b612274c74fbce
+:100720001224868a848b85853282853383aa82aba4
+:10073000830592e0f91217c9853282853383858259
+:100740002185832278211227607521057522007882
+:10075000211227601299aa122760797b12912b121d
+:10076000249c74050281b974f612251874fe1224b3
+:10077000b612274c8a848b8512180bea4b6023e54e
+:10078000842402fce5853400fd0592e0f912176f20
+:10079000e9f5216005752202800e752100752200a1
+:1007a000800675218275220178211227601286a6a3
+:1007b000122760797c0281b674f612251874fe1235
+:1007c00024b612274c8a848b850592e0f9121757bc
+:1007d000e9f5216005752202800675210075220069
+:1007e00078211227601286a6122760797d0281b6d1
+:1007f00074f612251874fe1224b612274c8a848bc4
+:10080000850592e0f9121775e9f521600575220258
+:10081000800675210075220078211227601286a6b5
+:10082000122760797a0281b674f612251874fe12c6
+:1008300024b612274c8a828b83a3a3e0c0e08a826d
+:100840008b83e0f584a3e0f585d0e00592f0e4f534
+:1008500021f52205927821122760795e028ebe74fe
+:10086000f41225188a828b83e0f521a3e0f5228516
+:100870002182f583128e96122760782112276079e3
+:100880005f1285980285efc082c083795c028c1a62
+:1008900074f61225188a828b83e0f912145de4f550
+:1008a00021f522782112276079700290ca74f7121c
+:1008b000251874fe1224b612274c128d741214637c
+:1008c0007971121a3f85328285338312275474025c
+:1008d00012249c7f010225f074f612251874fa1276
+:1008e000248679067cea1291cc8582218583227840
+:1008f00021122760795d128feb12249c740602810d
+:10090000c774f612251874fe1224b612274c8a8278
+:100910008b83a3e0f98a848b850592a3a38a828bbb
+:10092000830592e0aa84ab8560051216c780031286
+:1009300016c1e4f521f5227821122760799c028ef8
+:10094000be74f612251874fe1224b612274c1289b2
+:100950009be0fca3e0fd0592a3a31289b4121469e5
+:100960008a218b227821122760799a028ebe74f632
+:1009700012251874fe1224b612274c12899ba3a3c9
+:10098000e0fca3e0fd05921289b41214758a218b54
+:10099000227821122760799b028ebe8a828b838502
+:1009a00082848583850592a3a3a3a3e0f98582842d
+:1009b00085838522e0faa3e0fb2274f412251874e3
+:1009c000fe1224b612274c1289e11219198a218bc2
+:1009d0002278211227601286a6122760798c028560
+:1009e000938a848b85858482858583a3e0fa05922a
+:1009f000e0f92274f412251874fe1224b612274c62
+:100a000074c01224868a828b837523007524007932
+:100a100000e0f8c394065017853284853385ac8492
+:100a2000ad85a3e0fb7a02128a6212250380067567
+:100a300023807524018532828533838582218583d5
+:100a400022782112276089217522007821122760df
+:100a50007823122760796812912b12249c7440022b
+:100a600085e1e8c333fee433ff74092ef584740b8b
+:100a70003ff5850592e0f582a3e0f58305922274a7
+:100a8000f512251874fe1224b612274ceafeebff6d
+:100a90007523008e828f83a3e0fb74ff6b602b7c39
+:100aa000007d007a0479008e828f83e0c333f521c4
+:100ab000e433f52274092521f584740b3522128a5a
+:100ac00071122503e970037523018e828f83a3a31e
+:100ad000e0fb74ff6b60227c007d007a0379008e5e
+:100ae000828f83e0128a63122503e97004d2f080ba
+:100af00002c2f0a2f0e4334223e523a2e0500875dd
+:100b0000218075220180067521007522007821124e
+:100b100027607969128feb12249c8532828533839a
+:100b2000122754740212249c7f030225f074f612db
+:100b3000251874fe1224b612274c8a828b83e0f8a3
+:100b4000c394065027e5822402fce5833400fda30c
+:100b5000e0fb7a017900128a62122503e9600875c8
+:100b60002100752200800b75218780037521807517
+:100b7000220178211227607964028ebe74f6122554
+:100b80001874fc122486853282853383aa82ab8353
+:100b90001217cf121805e9f52175220078211227c6
+:100ba0006074051224ef128ff1122760740612246c
+:100bb000ef128ff112276074071224ef128ff112d7
+:100bc000276074081224ef128ff1122760796012e7
+:100bd0001a3f740a12249c74040281c7c082c08325
+:100be000121865796c8033c082c0837cff7dff8ad8
+:100bf000828b835392fe1289b412185f796f801a28
+:100c0000c082c083128dc0121a2dd083d0820211ef
+:100c100018c082c083121835796a121a3f80eb74ab
+:100c2000f412251874fe1224b612274c74c0122434
+:100c3000868a848b85858482858583a3a3a3a3e08c
+:100c4000f8c394405004e8ff80027f40e5c7fe856a
+:100c500084828585837821122285740f7821122160
+:100c600062e521f5c78f2175220078211227608562
+:100c700084828585837821122285ac21e5224480f7
+:100c8000fd74021224efaa82ab83121f01740212b8
+:100c9000249c8ec785328285338385822185832279
+:100ca00078211227608f2175220078211227600594
+:100cb000921227737962128fe5028a5a74f2122512
+:100cc0001874fe1224b612274c74c01224868a842b
+:100cd0008b857940853282853383ac82ad830592e2
+:100ce000e0faa3e0fb121859e9f874ff68700e757a
+:100cf0002500752600752380752401800e88828565
+:100d0000822575260075230075240085328285337f
+:100d100083858221858322782112276078251227f6
+:100d2000607823122760796e12912b12249c7440f4
+:100d300012249c8532828533831227547402122434
+:100d40009c7f060225f074f612251874fe1224b654
+:100d500012274c128d74121841e960087521007534
+:100d60002200800675218275220178211227607980
+:100d70006d028ebe8a848b85858482858583a3a33c
+:100d8000e0f9e5842403fce5853400fd0592e0faf2
+:100d9000a3e0fb2274f712251874fe1224b6122762
+:100da0004c1289e11214ab79930288c2c082c083cd
+:100db000128dc0a3aa82ab831218897992028c1a71
+:100dc0008a828b835392fee0f92274f61225188ae8
+:100dd000828b83a3a3a3a3a3a3e0f91214bd8a214a
+:100de0008b227821122760799d0290ca74f6122511
+:100df0001874fe1224b612274c1289e11214c38a09
+:100e0000218b2278211227607994028ebe74f6120b
+:100e100025188a828b83e0f91214a58a218b227807
+:100e20002112276079950290ca74f412251874fe75
+:100e30001224b612274c74ff1224868a848b8505ef
+:100e400092a3a3a3a3a3a312277b8a848b85a3a326
+:100e5000a3a312277b8a848b85a3a312277b8a8472
+:100e60008b8512277b74081224efac82ad83790046
+:100e70007a007b0012148d740812249c128e8c123e
+:100e80002760782112276079980285d98a218b22e0
+:100e9000853282853383e0f523752400782322741c
+:100ea000f612251874fe1224b612274c128ec412a4
+:100eb00014b1e4f521f52278211227607999128f77
+:100ec000eb0281b98a828b83858284858385059232
+:100ed000a3a3e0fb858284858385a3e0fa0592e0e5
+:100ee000f92274f412251874fe1224b612274c74d9
+:100ef000ff122486ea240df584eb3400f585059273
+:100f000012277bea240bf584eb3400f58512277b4e
+:100f10008a848b85a3a3a3a3a3a3a3a3a312277b44
+:100f20008a848b85a3a3a3a3a3a3a312277b7408fe
+:100f30001224efac82ad838a828b830592a3a3a394
+:100f4000a3a3a3e0f912148d740812249c128e8cb2
+:100f5000122760782112276079960285d974f612db
+:100f6000251812149f8a218b2278211227607997e5
+:100f70000290ca74f612251874fc12248612188383
+:100f8000e9f52175220078211227607991128feb03
+:100f900012249c7e00853282853383aa82ab83ee45
+:100fa000f9121997e9603474031224ef128ff112c9
+:100fb000276074031224efe05401f52178211227f1
+:100fc0006074041224ef128ff11227608e217821b1
+:100fd00012276079d0128fe512249c0eeec394087c
+:100fe00040b3028bd7121a3f740822121a3f7402c0
+:100ff00022e0f52178212274f6122518900364125c
+:1010000082b31227607961128feb12249c7e0080dc
+:10101000087a00eef9121d330e900364e0f8eec377
+:101020009840ee0281cac082c083128dc01216bbe6
+:1010300079aa028c1a74f612251874fe1224b612bc
+:10104000274c8a848b850592a3a3a312277fea24c9
+:1010500004fceb3400fd8a828b830592a3a3e0f9a4
+:101060008a828b831289b4121595740112249c8a8a
+:10107000218b2278211227607972028ebec082c035
+:1010800083128dc012190d798d028c1a74f71225f6
+:101090001874fe1224b612274c128ec4121913793a
+:1010a0008f0288c274f61225188a828b83e0f912a7
+:1010b0001907e960087521007522008006752180f6
+:1010c0007522017821122760798e121a3f0281c59c
+:1010d00074f612251874fe1224b612274c8a848bdb
+:1010e00085858482858583a31222b60592e0f91254
+:1010f00019258a218b2278211227607990028ebed1
+:1011000074f41225188a238b24e9fe8c218d227811
+:10111000211227608e217522007821122760782302
+:1011200012276079bc12912b0285ef121a3f7406c8
+:1011300022c082c083796b121a3f7add7b1b1218a2
+:1011400047028c0a74f612251874fe1224b6122770
+:101150004c8a848b850592e0f91217d5e9f833950e
+:10116000e0f9e82499f521e934fff52278211227e6
+:10117000601286a612276079780281b674f612256d
+:101180001874ff12248679017ce71291cc1282b385
+:1011900012276075210178211227607521037821bb
+:1011a0001227607521477821122760752101782167
+:1011b0001227607821122760782112276079631244
+:1011c0001a3f740e12249c74010281c77dff853280
+:1011d00082853383aa82ab831214338532828533ae
+:1011e000832274f61225188a828b83a3a3a3a3a358
+:1011f000a3e0f9121685e9f5216005752202800643
+:10120000752100752200782112276079650290ca45
+:1012100074f61225188a828b83a3a3a3a3a3a3e049
+:10122000f912168be9f521600575220280067521f9
+:1012300000752200782112276079660290cac08268
+:10124000c0831216917967028c1a5392fe0211180c
+:1012500074f212251874fe1224b612274ce9feea25
+:10126000ff8b2290060be0f8748b28fa740534008b
+:10127000fbef700302933c24fb600914700302939c
+:10128000e7029403e0c39404503274041294205093
+:101290000ae0f87404c398f5218003852221eafc52
+:1012a000ebfdab21129408128a71122503e9f8c5ef
+:1012b00022c39522f52290060be028f0e0c39404a7
+:1012c000500302940390058be060057900121a2dfb
+:1012d00090060be0f890058ce02404c398f8c395c1
+:1012e0002250028822e8602690060be0f8748b28d2
+:1012f000fc74053400fdab22129408128a71122589
+:1013000003e9f8e52268700690060be028f09006e5
+:101310000be0fa90058ce02404f8e43400f9e86a64
+:101320007001e9600302940390060be0f97a8b7b6d
+:1013300005121c1390060be4f002940374401294ff
+:1013400020a2d265d0335008e0f87440c398f5234a
+:10135000e523c3952250030293e3852325752600d8
+:101360007825122760121f01740212249c90060b2c
+:10137000e02523f0e0c39404500302940390058c0d
+:10138000e0fc90060be0faec2404f8e43400f9eaff
+:1013900098e499406e74042cf523f97a8b7b05123e
+:1013a0001c1390060be0c39523f07c0090060be025
+:1013b000f8ecc39850be8c82a882852325e82525a9
+:1013c000fae43400fb748b2af58274053bf583e064
+:1013d000c0e0748b28f58274053400f583d0e0f00a
+:1013e0000c80c97900801ee5c7f52490036ae0f5fa
+:1013f000c790ff25e0f974ff6960057a00121d5758
+:101400008524c77901028d337a027900eec333f562
+:1014100023e433f52474092523f584740b35242241
+:10142000c398f895e0f9852223c3e89523e9940051
+:101430002274f712251874fe1224b612274c8a82e1
+:101440008b83a3a3e0f88a828b83a3a3a3e0fde8a8
+:10145000c3940a40077900121a2d805be875f003e7
+:10146000a4f8a9f074cf28f584745339f5858584e0
+:1014700082858583a3a3e493f8edc39850d7ea242b
+:1014800004faeb3400fbedc333f8e433f9e40592de
+:101490009328f582a3e49339f5830592e02408f5b7
+:1014a00084a3e03400f585e4059293f582740193fa
+:1014b000f58305921225030288c574f61225187467
+:1014c000fe1224b612274c8a828b83e0f8c3940262
+:1014d0004008752180752201803fa38a848b850591
+:1014e00092a3a3e8701875ab00e06005438c0180ff
+:1014f00003538cfe7589000592e0f5ab8016758d5f
+:1015000000e06005438c068003538cf9758a000562
+:1015100092e0f58de4f521f5227821122760799e7d
+:10152000028ebe74f612251874fe1224b612274cd1
+:101530008a848b85e4f521f522782112276079a031
+:10154000128feb12249c858482858583a3a3e0fb04
+:101550001289e5121d4b0281bc74f612251874fe27
+:101560001224b612274c8a848b850592a3a3a3a3c9
+:10157000a312277f8a828b830592a3a3a3a3e0f9fa
+:101580008a828b831222b6121d51740112249ce4ac
+:10159000f521f5227821122760799f028ebe74f61c
+:1015a0001225187521007522008a828b83e060085d
+:1015b00014600b14600e801aa3e0f5fd801aa3e0fe
+:1015c000f5fe8014a3e0541ff8e5ff54e048f5ff52
+:1015d0008006752180752201782112276079a10289
+:1015e00090ca74f61225187521007522008a828b24
+:1015f00083e0600814600b14600e801aa3e0f5f31a
+:10160000801aa3e0f5f48014a3e05407f8e5ff5432
+:10161000f848f5f58006752180752201782112279a
+:101620006079a20290ca74f612251874fe1224b6cc
+:1016300012274c8a828b83752100752200e0f8c343
+:1016400094034008752180752201804e858284852f
+:1016500083850592a3a3e870150592a3e0f58f0595
+:1016600092e0600553f7df803143f720802c74014e
+:101670006870150592a3e0f5f60592e0600553f752
+:10168000bf801743f7408012e06004780080027842
+:10169000800592a3e0541f48f5f71297f4122760d3
+:1016a00079a3028ebe74f612251874fe1224b612a7
+:1016b000274c7521007522008a828b83e060081414
+:1016c000601d14603280488a848b850592a3a3052f
+:1016d00092a3e0f45580f80592e048f58080368ac0
+:1016e000848b850592a3a30592a3e0f45590f80599
+:1016f00092e048f590801e8a848b850592a3a3050d
+:1017000092a3e0f455a0f80592e048f5a080067594
+:1017100021807522011297f412276079a4028ebeef
+:1017200074f21225188a828b837521007522007548
+:101730002500e0f523600814600b14600c8010e5b0
+:1017400080f5258010e59080f8e5a0f525800675e8
+:101750002180752201a3e0f8e52558f525752600be
+:1017600078251227607524007823122760782112cb
+:10177000276079a512912b028d3e74f612251874fc
+:10178000fe1224b612274c74e01224868a848b85bc
+:10179000858482858583a3a3e0f8c394205004e860
+:1017a000ff80027f20effc853282853383aa82abe3
+:1017b000830592e0f9121d87e9fe0592a3e060031c
+:1017c000121d75853282853383858221858322129d
+:1017d00097f41227608e217522007821122760e489
+:1017e000f521782112276079a812912b12249c747c
+:1017f000200281b95392fe78212274f612251874c2
+:10180000fe1224b612274c8a848b858584828585b6
+:1018100083a3a3e0fce58424030a0a0ae5853400d7
+:10182000fb0592e0f9121d8deaf5210592a3e06017
+:1018300003121d757522001297f412276079a90210
+:101840008ebe74f512251874fe1224b612274c8a27
+:10185000218b228a828b83a3a3a3a3a3ac82ad8313
+:101860008a828b83a3a3a3a38a848b850592a3a3d7
+:10187000a3a884a9858a848b85a3a3aa84ab858524
+:101880002184852285a3ae84af8585218485228528
+:10189000e0701475864275c4021298c8f5c58c8232
+:1018a0008d83e0f5c2801275f84275fb021298c86c
+:1018b000f5fc8c828d83e0f5fae4f521f5227821a0
+:1018c00012276079a6028b140592e0541ff5218837
+:1018d000828983e0c43354e0f88a828b83e0c43386
+:1018e0003354c0f98e828f83e0a2e0e433131349ae
+:1018f0004845212274f612251874fe1224b61227c8
+:101900004c8a848b85858482858583a3aa82ab8358
+:10191000e0c39441401de4f521f5227821122760af
+:1019200078211227601299aa1227607521827522e8
+:1019300001806a7c00800fe0f5f9a2f840fce5f92f
+:1019400088828983f00c8a828b83e0f8ecc39850fc
+:101950002e8c82a882e58428f582e5853400f58303
+:10196000a3a3744b28f874053400f90592e005929e
+:1019700070c5e0f5c1e586a2e040fae5c180c17519
+:10198000214b75220578211227608a828b8312826f
+:10199000b31227601299aa122760e4f52178211268
+:1019a000276079a7128fe50281b90592e0f521053c
+:1019b0009278212274f412251874fe1224b612278c
+:1019c0004c8a828b837521007522008582848583f1
+:1019d000850592a3a3a3a884a98585828485838590
+:1019e000a30592e014600924fe604d14606f800a24
+:1019f0000592e0f523c39405400875218075220106
+:101a0000807e129a95c0e074a02523f5827462341a
+:101a100000f583d0e0f0888289831289b40592e0d2
+:101a200033f8e433f974a628f582746239f583ea51
+:101a30000592f0a3ebf080480592e0f523c39402f1
+:101a400050b8129a8e700b8acc88828983e0f5cdcb
+:101a5000802e8ace88828983e0f5cf80230592e0ac
+:101a6000f523c394025093129a8e700b8aec8882ed
+:101a70008983e0f5ed80098aee88828983e0f5efbd
+:101a80001297f412276079ab128feb0285e1129a5c
+:101a900095fae523220592a3a3e054073333335488
+:101aa000f8440422028c0074f61225187521817501
+:101ab0002201782112276079b30290ca74f61225a8
+:101ac00018752181752201782112276079b402905e
+:101ad000ca74f61225187521817522017821122702
+:101ae0006079b50290ca74f4122518892375240010
+:101af000740978231224738a218b227402782112ac
+:101b00002464aa21e5225401fbe42ae5243bfb02dc
+:101b10009bb374f712251874fe1224b612274c7466
+:101b2000fc122486e9fe8532848533859009f4749d
+:101b3000041222dbeef4853282853383f07904ac23
+:101b400082ad83121463740412249c85328285331f
+:101b500083122754740212249c7f010225f074f42e
+:101b600012251874fc1224868921ebfe74031224ba
+:101b7000efeaf0eef4853282853383f074021224aa
+:101b8000ef74fff074011224ef74ff129c2685217c
+:101b90002375240074097823122473faab241214d9
+:101ba000637404800b853282853383122754740258
+:101bb00012249c7f040225f074f712251874fe127b
+:101bc00024b612274c74fc122486eafeebff89210e
+:101bd000740f1224efe0f584a3e0f5858532828549
+:101be000338374fff074031224efe9f074011224bc
+:101bf000efecf0a3ed129c261214637980eefaef5d
+:101c0000fb1218237403252154fcf9ac84ad85ee36
+:101c10002401faef3400fb1214637940eefaeffb73
+:101c2000121823029b46f07904853282853383acf7
+:101c300082ad832274f012251874fe1224b6122786
+:101c40004c7582fa7583fe1224d1e5c7c0e0740397
+:101c50001224efd0e0f09004c3e0f874306870080c
+:101c60009004c0e0242f800374ff28f525a92512d5
+:101c7000145d74021224efe4f0fbfaa9251218296e
+:101c800075270475280074011224efe48012853250
+:101c900082853383e0f912145d74011224efe004ad
+:101ca000f09004c5e0f874011224efe0c3984003fb
+:101cb000029e5e05929004c3e0f80592e02885320a
+:101cc00082853383f012a2cb400ce0f88532828506
+:101cd0003383e0c398f0853282853383e012a1b369
+:101ce000e0f521752200740b782112247312a4fef2
+:101cf00074041224efe4f0a3e9f07b107aff85323c
+:101d000082853383e0f91218297582008f83a3a39b
+:101d1000a3a37e04af83800a74041224efe0fea321
+:101d2000e0ff74041224ef12a4d94003029c8e8eab
+:101d3000828f830592900b3078211222850592784c
+:101d400021121f0d60d28e828f83e0a2e75008a37c
+:101d5000a3a3a3ae8280bd8e848f850592a3a3a387
+:101d6000a2e54003029e58e02527f8e43528f9e86b
+:101d70002404f8e93400f9c3e89401e994084060c8
+:101d800074012525f523f521059212a1c2e86521ec
+:101d90007001e97003752330a92312145d7b007470
+:101da000021224efe004faa9231218297b207afffb
+:101db000a9251218298525219004c0e0242ff8e4d4
+:101dc0003400f9e865217001e9700575253080025d
+:101dd000052574021224efe004f07527047528002d
+:101de000439201e0f52175220005927821122760c7
+:101df000ee2404fcef3400fd74081224efaa82ab39
+:101e000083121f01740212249caa27ab28a9251251
+:101e1000181d74061224ef858221858322782112f1
+:101e200027600592e0f98e828f830592a3e0fca3e0
+:101e3000e0fd12182f740212249c0592e024fff892
+:101e4000e434fff9e854fc2408f8e93400f9e52704
+:101e500028f527e52839f52812a4cc029d4f7b20d0
+:101e60007affa92512182974031224efe0f5c7128e
+:101e7000183b7582067583011224d185328202a433
+:101e8000af74f412251874fe1224b612274ce5c75d
+:101e9000fe75c70390f7efe09004c0f0c3941140c3
+:101ea000057901121a2d8ec7e5c7ff9004c174ff92
+:101eb000f0a3e4f0a3f0a3f0a3f07523fff5247ed4
+:101ec0003080368582848583850592a3e0f4704d49
+:101ed000858284858385a3a3e0f47041858284850f
+:101ee0008385a3a3a3e0f4703405929004c1e0f4c9
+:101ef0007002eef0a3e004f00e8e8285822175223e
+:101f00000012a6b45060ee12a1b3740b7821122413
+:101f100073f582e5224480f583e0f460a6439201e4
+:101f20009004c5e004f0858284858385a3a3a3780b
+:101f300003a985e0fac3952350078a23ee9004c3d2
+:101f4000f088848985e0f8c3952440078824ee90c2
+:101f500004c4f00592e054306410609c121865903f
+:101f600004c3e4f080069004c3e070057430f0a36d
+:101f7000f08fc7029ba574f012251874fe1224b6c8
+:101f800012274c74f612248674041224efeaf0a38c
+:101f9000ebf074061224efecf0a3edf0e985328249
+:101fa000853383f012a3aa74027821122454e52108
+:101fb00004f528e5c7c0e074031224efd0e0f07404
+:101fc000011224efe4f0a3f0f527f52580020525a2
+:101fd00012a1c29004c3e02525fb9004c5e0fae5f8
+:101fe00025c39a400302a1238b2612a6bd400b9065
+:101ff00004c0e0c526c39526f526e52612a1b385c3
+:102000002621752200740b7821122473e522448066
+:10201000ff85282175220074027821122473c3954c
+:1020200021f8e49522f9e428ef39f9e82404f8e9e5
+:102030003408f974081224efe812a4ee8005a3a373
+:10204000a3ae82af83eefaeffb74081224ef12a660
+:102050008ec3ea98eb994003029fce8e828f830550
+:1020600092900b30782112228505927821121f0d53
+:10207000705274061224f9059212277b74021224fe
+:10208000ef0592e0f974061224ef12a1b9c0e0a99d
+:102090002612181dd0e0f9eefceffd12182f740285
+:1020a00012249ce527600e74011224ef12a1d27451
+:1020b00020f912182374031224efe0f5c779017494
+:1020c0000a02a4a68e828f83e0a2e7a3500302a097
+:1020d0003e12a68e74041224efe0687003a3e06938
+:1020e00070348e828f83e0a2e5502b74011224efae
+:1020f00012a68ee84960127420c0e074011224ef29
+:1021000012a1d2d0e0f912182374011224efeef0dc
+:10211000a3eff08526278e828f83a3a3a312a69a0e
+:1021200002a03e8b2112a6bd400b9004c0e0c52149
+:10213000c39521f521e52112a1b39004c2e0c39417
+:1021400002500d74031224efe0f5c7790002a0bf1e
+:10215000e014f09004c574012af07b20a921121824
+:102160002974061224f9059212277b74021224efb7
+:102170000592e0f974061224ef12a1b9c0e085219e
+:1021800023752400740b7823122473e52444807a89
+:1021900004fba92112181dd0e0f9eefceffd121886
+:1021a0002f740212249c74011224ef12a68ee849a7
+:1021b00002a0a5c4540ff5c722e0fca3e0ffecfe8b
+:1021c000e92212a1c6229004c0e02430f8e43400d1
+:1021d000f922e0faa3e0fba92712181d2274f012dd
+:1021e000251874fe1224b612274c74fe122486851c
+:1021f0003282853383eaf0a3ebf075250080020577
+:10220000259004c5e0f8e525c398400302a29e127c
+:10221000a2c54005e0cac39afa12a4bc122473e511
+:10222000224480ffe42400f527ef3408f528758266
+:10223000008f83a3a3a3a37e04af838004ae27af44
+:1022400028c3ef952850b88e828f830592900b306b
+:10225000782112228505927821121f0d60df8e826f
+:102260008f83e0a2e7a3a3a35005a3ae8280ca8513
+:102270008221858322a2e5501aee2404fcef34006b
+:10228000fde0f98e828f83a3e0faa3e0fb12a2b3f4
+:1022900012250385218285228312a69480cc7c009e
+:1022a0007d0079007aff7bff12a2b312250374022e
+:1022b00002a4a68532848533850592e0f582a3e0e9
+:1022c000f5830592229004c3e02525fa12a1c6eaff
+:1022d00012a6bf2274f412251874fe1224b6122717
+:1022e0004ceafeebff79008001099004c5e0f8e9b3
+:1022f000c398400302a3a39004c3e029f89004c04c
+:10230000e02430fae43400fbe89ae49bc365d03360
+:102310004005e0c8c398f8e812a1b38821752200ef
+:10232000740b7821122473e5224480fbe42400eb33
+:102330003408fd7582008b83a3a3a3a37a04ab8327
+:1023400080047a00edfbc3eb9d509e8a828b83054f
+:1023500092900b30782112228505927821121f0d60
+:1023600060e08a828b83e0a2e7a35007a3a3a3aa1d
+:102370008280cbe06e7003a3e06f70098a828b834a
+:10238000e0a2e540228a828b83a3a3a3e012a3aa42
+:10239000e52154fcf521ea2521f582eb3522f58370
+:1023a000a380c97a007b00029ba52403f521e434b5
+:1023b00000f5222274f012251874fe1224b612279a
+:1023c0004c74fc12248674021224efeaf0a3ebf0a2
+:1023d00089288c26e5c7f5277525008002052590fc
+:1023e00004c5e0f8e525c398400302a49d12a2c5e8
+:1023f0004005e0cac39afa12a4bc12247312a4e4e2
+:10240000af83800b853282853383e0fea3e0ff1229
+:10241000a4d350c98e828f830592900b30782112fd
+:10242000228505927821121f0d60d98e828f83e05c
+:10243000a2e75008a3a3a3a3ae8280c48e848f8595
+:102440000592a3a3a3a2e550430592a3e0652870db
+:102450003b0592e0652670348526217522000592a1
+:10246000782112276074041224efe0fca3e0fdee53
+:102470002404faef3400fb121efb740212249c8b1e
+:1024800022ea45227006eefaeffb80184392011211
+:10249000a4cca3a3a3a3ae82af8302a40f8527c7b6
+:1024a0007a007b00740412249c8532828533831267
+:1024b0002754740212249c7f080225f0eac4540faa
+:1024c000f5c78a21752200740b782122e012a6a09c
+:1024d000059222853282853383e0f8a3e0f9c3eeca
+:1024e00098ef992212a4fe853282853383e4f0a30b
+:1024f000e9f07582008f83a3a3a3a37e0422e522c3
+:102500004480ffe42400ef3408f92274f212251805
+:1025100074fe1224b612274c8c258d26e9fee5c7e1
+:10252000ff12184dea4b603f8a848b850592a3a366
+:10253000a3e0f8eec39850048e2180028821852103
+:102540002375240005927823122760ea2404fceb0b
+:102550003400fdaa25ab26121f01740212249c052b
+:1025600092e08fc7f980048fc779ff853282853367
+:10257000835392fe122754740212249c7f06022574
+:10258000f07f020225f074f112251874fe1224b6b1
+:1025900012274c74fa12248674041224efeaf0a372
+:1025a000ebf074021224efecf0a3edf0e5c7f52791
+:1025b000752600800205269004c5e0f8e526c3983c
+:1025c000400302a6739004c3e02526f525f52112e9
+:1025d000a6b44008e0c525c39525f525e52512a13b
+:1025e000b3852521752200740b782112247312a45f
+:1025f000e4af83800b853282853383e0fea3e0ff66
+:1026000012a4d350b08e828f830592900b30782124
+:1026100012228505927821121f0d60d98e828f8338
+:10262000e0a2e75008a3a3a3a3ae8280c4a2e55012
+:1026300031a312a68e74021224efe058f8a3e059d9
+:10264000f974041224efe0687003a3e06970137456
+:1026500020c0e0eefaeffba92512181dd0e0f91218
+:1026600018238e828f83a3a3a312a694a3ae82af56
+:1026700083808d8527c7740612249c85328285331a
+:1026800083122754740212249c7f070225f0e0f87d
+:10269000a3e0f92212a69aa3a322e012a6a0a322e5
+:1026a0002403f8e43400f9e854fcf8ee28f582ef4e
+:1026b00039f5832212a1c6e52112a6bf22c3eb98e9
+:1026c000e499c365d0332274f61225187e30800653
+:1026d000eef912145d0e8e2112a6b440f312183bcf
+:1026e00002a581c082c0838a828b835392fee0f868
+:1026f000a3e0f9e8c399543ff9d083d082021118be
+:1027000074f612251875218a752200782112276027
+:102710007c007d007ab37b07121f07740212249c91
+:1027200078211227607c007d007a3d7b08121f070c
+:10273000740212249c90083b7401f09008c5f07854
+:10274000007900e5c7fa90036ae0f5c7900369e0f5
+:10275000a2e7401290ff02e0f890ff06e0f990ff38
+:1027600021e09007b2f08ac7e8a2e65018438640fd
+:1027700043c48074a058600dc2e9439a049007b224
+:10278000e06002d2aae9a2e65027e5f1a2e1400802
+:10279000e5ff543f4440f5ffd2fe43fb8074a0594f
+:1027a000600fc2ea439a089007b2e064016009d260
+:1027b000ab9007b2e0f4604e9003837470f0900722
+:1027c000b2e0900384600774f9f07908800574c161
+:1027d000f07907e9a3f09007b2e060047885800201
+:1027e00078fbe8900386f0a37420f0a3743ff09088
+:1027f00007b2e0900389600474108002740ef0a3a5
+:102800007419f075d608800e8532828533831227bd
+:1028100054740212249c7f020225f074f6122518cb
+:1028200074fe1224b612274ce975f08aa4faabf0b4
+:1028300074b32af58274073bf583e0603de4f0e56c
+:10284000822446f584e5833400f5850592e0f52180
+:1028500074012521543ff0e97004e5c18002e5f9d7
+:10286000c0e0e5822521fae5833400fbea2448f53f
+:1028700082eb12abbdd0e00592f0808c74f2122591
+:102880001874fe1224b612274ce9ffecfeef75f027
+:102890008aa4f8a9f074b328fc740739fdec244726
+:1028a000f8ed3400f9888489850592e0f52412adad
+:1028b000f70592e0f523852482858221c39521f8ce
+:1028c00095e0f98e25c3e89525e99400a2d265d05c
+:1028d000335006e523c39524feee60298e25752628
+:1028e000007825122760ec2521f8ed3400f9e82462
+:1028f00048fce93400fd121f01740212249c059269
+:10290000e02e543ff0439201e06523700375d60832
+:10291000eef98532828533830592122754740212b0
+:10292000249c7f060225f074e812251874fe1224f8
+:10293000b612274c89218a2b8b2c8c22e975f08ac0
+:10294000a4f8a9f074b328fe740739ffe5216005e7
+:102950007523088003752304e523f4f52452a8eebb
+:102960002447f584ef3400f5850592e0faee24461d
+:10297000f52fef3400f530852f82f5830592e0fbcb
+:10298000ee2489f52def3400f52e852d82f583e4b4
+:10299000f0e52342a8ebc39a543ff8c395225002b6
+:1029a0008822e5227005790002aa938a82a882ee25
+:1029b00028fcef3400fdec2448fced3400fdeac3b4
+:1029c0009b50118522257526007825122760aa2b99
+:1029d000ab2c806a8522828582277440c398f89543
+:1029e000e0f9c3e89527e99400a2d265d0335008f6
+:1029f0007440c39af5258003852225852529752aeb
+:102a0000007829122760aa2bab2c121f0174021226
+:102a1000249ce525c39522502d852582aa82e52791
+:102a2000c39af52795e0f5287827122760ee244809
+:102a3000fcef3400fde52b2afae52c3400fb121fd5
+:102a400001740212249ce52452a80592e025225428
+:102a50003ff012abb70592e0f960260592e0f885e9
+:102a60002f828530830592e0c398543fc39940116b
+:102a7000852d82852e837401f0fbaa217904121919
+:102a8000eba921121de78e828f83a3e4f0e5234298
+:102a9000a8a9228532828533831227547402122416
+:102aa0009c7f100225f074f712251874fe1224b6cc
+:102ab00012274c8921e975f08aa4f8a9f074b3288b
+:102ac000f584740739f58574042521fee521600439
+:102ad0007f0880027f04eff452a8e5842446fae5db
+:102ae0008512ae9c6038e5842488f582e58512abba
+:102af000bde0f86029ebc3984024e5842489f58281
+:102b0000e58512abbde070167401f0ef42a87c00c1
+:102b10007d007a05eef912add712250380080592e3
+:102b2000a3e4f0ef42a802ae0274f6122518900753
+:102b3000b512abcc9007b6e06860f9539afb9004ed
+:102b4000c6e0fa74b72521f582740712abbde9f02f
+:102b5000e89007b5f0eaa2e34010e5a8f8c2af900c
+:102b600004c6e0d2e312abc2d2e9439a0402a8162b
+:102b700074f612251890083f12abcc900840e0681c
+:102b800060f9539af79004c6e0fa74412521f58262
+:102b9000740812abbde9f0e890083ff0eaa2e44007
+:102ba00010e5a8f8c2af9004c6e0d2e412abc2d2de
+:102bb000ea439a0802a816ee2488f582ef3400f55d
+:102bc0008322f0753400e8a2e792af22e0f5217489
+:102bd000012521543ff82274f612251874fe1224a0
+:102be000b612274c89218a22e975f08aa4f8a9f047
+:102bf00074b328fe740739ffee2489f8ef3400f926
+:102c000088848985e40592f0ea601bee2446faef99
+:102c100012ac84e9c39522400d74010592f0fbaa21
+:102c20002179041219eb12abb7e5225392fef002a0
+:102c3000a80874f712251874fe1224b612274ce95e
+:102c4000feeaffee75f08aa4f8a9f074b328f874d0
+:102c50000739f9e82444f584e93400f5857440c364
+:102c60009f0592f0ef601512ac7f0592e0f8e9c382
+:102c70009850097b02eefa79041219eb02ae02e8d1
+:102c80002402fae93400fb121ddb2274f712251826
+:102c900074fe1224b612274ceaffebfe8c848d855d
+:102ca000ef601c14601914602414604a14603e79ab
+:102cb0000002ae02439201e0f9121dff0592a38ebd
+:102cc0002174ff25211e0470eb790180e49007b286
+:102cd000e0700deefcaa84ab857900121ded80d169
+:102ce000eefcaa84ab857900121df380c4eefa795c
+:102cf00000121e0b80d3eefa7900121e11790180aa
+:102d0000b074f712251874fe1224b612274ceaff8d
+:102d1000ebfe8c848d85ef601c1460191460241404
+:102d2000604c146040790002ae02439201e0f91257
+:102d30001e050592a38e2174ff25211e0470eb79d8
+:102d40000180e49007b2e06401700deefcaa84ab50
+:102d5000857901121ded80cfeefcaa84ab85790147
+:102d6000121df380c2eefa7901121e0b80d1eefa29
+:102d70007901121e11790180ae74f712251874fec4
+:102d80001224b612274c9007b2e075f08aa4f8a975
+:102d9000f074b328fc740739fdec2448f582ed1279
+:102da000abbde0fb9007b2e02404f974012bc0e056
+:102db00012adf7d0e0f0ec2447f582ed12abbd7414
+:102dc00001f07c007d007a05e912add7122503855c
+:102dd00032828533838034c333fee433ff74fd2ea7
+:102de000f584740a3ff58512adeb220592e0f58279
+:102df000a3e0f583059222ec2446f582ed3400f53c
+:102e000083228532828533835392fe1227547402c3
+:102e100012249c7f010225f074f712251874fe120b
+:102e200024b612274ce9feeaff8e82aa82eac33357
+:102e3000f8e433f9740528f584740b39f585ea75df
+:102e4000f08aa4faabf074b32af874073bf974045f
+:102e50002ef521ef600b14600f146026146037808c
+:102e600038eef9121df98031e82446fae912ae9cd9
+:102e700060277c007d007a05a92112adeb122503a5
+:102e8000801712ac7fe9f8743fc398fb600b7c009d
+:102e90007d007a0680e2121e2302adcf3400fb12c1
+:102ea0001ddbe9fb22c082c08312aed44402f0a332
+:102eb000e0f012b47ca2e040f9c2ac8031c082c024
+:102ec0008312aed454fdf0a3e0f0759800d2ac129a
+:102ed000132b801a5392fe900316e022f075d6024f
+:102ee000000000000000000000740149f5b3d08329
+:102ef000d082021118c082c08312aed454fef0a357
+:102f0000e0f0900373e4f0a3f0a37470f0a374b145
+:102f1000f0a3e4f0a37410f0a3741df0a37442f0c6
+:102f2000a37470f0a374b2f0a3e4f0a3f0a3f0a331
+:102f30007410f0a3741ef0a37412f0759800d2ac54
+:102f400080acc082c083eb12af617442808ec082bd
+:102f5000c083ea240ffaeb340012af6174c202aef0
+:102f6000dc5392fe12af6822900373f0eaa3f09054
+:102f7000037a2274f7122518ea240ffaeb340012b0
+:102f8000af6874c2f0ec240ffced340090037df0c8
+:102f9000eca3f0900382743202b5dd74f7122518a9
+:102fa000eb12af687442f0ed90037df0eca3f0906b
+:102fb0000382741202b5dd74f612251874fe122411
+:102fc000b612274ceafeebff8c218d22740c1224e2
+:102fd000efe0f584a3e0f5851212fbee4f79046073
+:102fe00006eefaeffb80047a027b03121313e5b3bb
+:102ff000a2e350fa79067a027b03121313e5b3a217
+:10300000e350fa7900ac84ad85aa21ab22121319e2
+:10301000e5b3a2e350fa121301853282853383129d
+:103020002754740212249c7f020225f0c082c083c0
+:1030300012b5cf401912b47c54027012900316e0fe
+:103040004401f0a3e0f0900314e4f075980102ae9f
+:10305000ee74f61225188a828b83e004f0704ca37c
+:10306000e004f070468a828b83a3a3e004f0703bf7
+:103070008a828b83a3a3a3e004f0702f8a828b83c0
+:10308000a3a3a3a3e0547f647f701de05480f07578
+:10309000210475220078211227607c007d00121f18
+:1030a00007740212249c8003e004f002b02774f637
+:1030b00012251874fe1224b612274c801f7a3dee9a
+:1030c0002424f582ef12b625e0547ff91216d9eeca
+:1030d000faeffb121811900314740af0900314e035
+:1030e000700302b18214700302b25614700302b26c
+:1030f0007b14700302b2b214700302b3161470038f
+:1031000002b36814700302b3b414700302b3d5148d
+:10311000603e14600614606a02b44012b4687521ff
+:103120000475220078211227607c287d037a187ba1
+:1031300003121efb740212249c8b22ea45226003b8
+:1031400002b0bd12b49b24af12b45b1216eb8086a2
+:1031500075210475220078211227607c187d0312e6
+:10316000b4daaa82ab83121f01740212249c12b437
+:10317000c22404f012b46812b49b249f12b45b12f0
+:1031800016e512b47c54026021900316e054fef060
+:10319000a3e0f0e5a8f8c2af9004c6e0c2e1f07584
+:1031a0003400e8a2e792af02b440900312e0f8a323
+:1031b000e0f9e84960d312b48c79040592e0547fb9
+:1031c00075f0e4a4faabf00592900453e02afaa358
+:1031d000e03bfbea247efaeb3400fb12131305926a
+:1031e000e0a2e70592506712b4c224fcf0752104f6
+:1031f0007522000592782112276012b4daac82adf4
+:10320000837a187b03121f01740212249c12b48566
+:1032100012b457059212b47824aef582e912b6259d
+:103220007401f0e582240ef584e5833400f585e42d
+:103230000592f0e582240ff582e58312b62574ff2e
+:103240000592f0900315e4f090031402b43d90034e
+:1032500014740102b43f75211075220078211227e1
+:10326000607c007d007a187b03121f077402122411
+:103270009c790612b44c740202b43f12b4f65004a6
+:1032800024ae8002249efae93400fb8a828b837488
+:1032900049f0ea240ef582eb12b62512b4c0c0e064
+:1032a00012b5c0d0e00592f0795012b45074030208
+:1032b000b43f9003197401f012b4cba3e05403059a
+:1032c0009290031af0795012b44c7404f0a312b423
+:1032d000c0f8740f58700302b4408882aa82ea547e
+:1032e0000ff87410c398f52195e0f5220592782126
+:1032f0001227607c007d000592900312e02a12b62e
+:10330000210592a3a3a3a3aa82ab83121f07740271
+:1033100012249c02b44012b4b7aa82ab83e82410f2
+:10332000f8e43400f912b4c2fce89ce99400c365e7
+:10333000d033500e795012130d900315e024100273
+:10334000b43f79007c187d0312131f12b619059241
+:10335000e0a2e75008900314740902b43f12b45776
+:1033600012b478249e02b21a12b4f6500424ae802d
+:1033700002249efae93400fbea240ff584eb3400c2
+:10338000f5850592e004f0791612130d0592e0051b
+:10339000929003146005740702b43f7406f075211f
+:1033a0000c75220078211227607c007d007a1c7b3e
+:1033b0000302b30b12b485a2e750047802800278ae
+:1033c00000e84410f97c187d037a187b0312131f60
+:1033d000900314806812b4b7ac82ad8312b619aef4
+:1033e00082af830592e0a2e7500478028002780061
+:1033f000e84430f9ecfaedfb12131f900315e024ba
+:1034000010f0f812b4c2c39850308e828f830592a8
+:10341000e0a2e7501e752104752200782112276072
+:103420007c187d037a287b03121f01740212249cee
+:1034300002b24e900314740880050592a37405f03f
+:103440008532828533835392fe02b01f7a187b0344
+:1034500012130d9003142212b52222fae93400fb54
+:10346000121331eefaeffb227a127b031216318a25
+:10347000218b22ae21af222212b4ab22900316e0a0
+:10348000f8a3e0e82212b48c0592e022900312e047
+:103490002424f584a3e03400f58522ee2424f5826b
+:1034a000ef12b5ca12b51d12b4ab22900453e02836
+:1034b000f8a3e039f9e822a3e0f8059212b4e22279
+:1034c000e4f012b4c62212b4cbe022900312e0f56d
+:1034d00084a3e0f5850592a3a32212b4c6f812b422
+:1034e000e222900312e028f582a3e03400f5830580
+:1034f00092a3a3a3a322900453e0faa3e0fb0592b6
+:10350000900312e02424f582a3e012b5ca059212ba
+:10351000b51dea28f8eb39f9e0a2e7e822e012b598
+:103520002222547f75f0e4a4f8a9f02274f7122542
+:103530001874fe1224b612274c12b5c0e0a2e75050
+:103540006fea2439f584eb3400f585e0a2e35040be
+:10355000858482858583e0fca3e0fdec4d60498c89
+:10356000828d83a3a3a3e06403703d8c828d83e0ee
+:10357000f8a3e0f9858482858583e8f0a3e9f08cdf
+:10358000828d83e4f0a3f07a127b0312163780c099
+:10359000858482858583e0fca3e0fd7a127b03129b
+:1035a0001637e40592f0a3f012b5cf400312132ba7
+:1035b000853282853383122754740212249c80380a
+:1035c000ea240f12b5c722f582eb3400f5832253ab
+:1035d00092fe900316e0f8a3e0e8a2e022f075d690
+:1035e00006000000000000000000000000000000d5
+:1035f000000000740149f5b37f010225f0c082c0cc
+:1036000083eafcebfd7a127b0312163712b47ca21c
+:10361000e0400312132b02aeee0592900312e02459
+:1036200024f582a3e012b5ca2274f4122518e9ff2a
+:103630008a238b24ecfe60078e2175220480067598
+:10364000210075220002b8aa74f31225188a218b72
+:1036500022ecffedfe740d1224ef12baef12276078
+:103660008e2375240078231227608f237823122756
+:103670006078211227608921752200782112276045
+:1036800079ca121a3f740a12249c7f050225f0742d
+:10369000f6122518e9ffecfe8a218b2278211227e9
+:1036a000608e2175220078211227608f21782112e7
+:1036b000276079cb12b764800f752200782112271a
+:1036c0006079cd121a3f740412249c7f020225f007
+:1036d00074f6122518e9ffeafe8e21752200782182
+:1036e0001227608f21782112276079c580d574f068
+:1036f000122518e9fe8a238b248c258d267410123e
+:1037000024efe0f527a3e0f52874121224ef12b796
+:10371000cce5274528602a78271227608927752855
+:1037200000782712276078251227607823122760f7
+:10373000782112276079c7121a3f740a12249c80dc
+:103740001a7823122760e4f523f5247823122760e2
+:10375000782112276012b76212249c79017f080237
+:1037600025f079c6121a3f74062274f2122518e960
+:10377000fe8a238b248c258d26740e1224ef12b71b
+:10378000ccec452660257825122760892575260012
+:103790007825122760782312276078211227607914
+:1037a000c9121a3f740812249c801a7823122760c9
+:1037b000e4f523f52478231227607821122760127c
+:1037c000b76212249c79017f060225f0e0f98e820f
+:1037d0008582217522002274f6122518e9fe740aea
+:1037e0001224ef12b9201227608c218d2278211229
+:1037f00027608a218b2278211227608e2175220072
+:10380000782112276079be121a3f740802b6c87474
+:10381000f11225188a218b22ecffedfe740f122481
+:10382000efe0f523a3e0f52474111224efe0f52571
+:10383000a3e0f52678251227608e257526007825c9
+:10384000122760782312276078211227608f217554
+:10385000220078211227608921782112276079bd02
+:10386000121a3f740c12249c7f070225f074f61282
+:103870002518e9fe8e21752200782112276079cf64
+:10388000121a3f740202b6c874f4122518e9fe8aaf
+:10389000218b228c238d24782112275c8e21752286
+:1038a00000782112276079ce80167823122760785d
+:1038b000211227608f21752200782112276079c696
+:1038c00012b76412249c7f040225f074f6122518a6
+:1038d00074fc122486eafe853282853383aa82ab89
+:1038e00083f912199774031224ef12b9201227607a
+:1038f00074031224efe05401f5217821122760743b
+:10390000041224efe0f52178211227608e2178211e
+:1039100012276079d0121a3f740812249c02b6c68e
+:10392000e0f52175220078212274f6122518e9feaf
+:1039300075218575220178211227608e2102b6b982
+:1039400074f6122518e9ffeafe60078e217522033e
+:10395000800675210075220078211227608f2102d0
+:10396000b6b974f6122518e9fee4f521f52278219e
+:1039700012276075218575220178211227608e211a
+:10398000752200782112276079c602b6b474f41249
+:103990002518e9ff8a238b24ecfe60078e2175220f
+:1039a00004800675210075220002b8aa74f612255b
+:1039b00018e9ffeafe60078e217522028006752154
+:1039c0000075220078211227608f2175220078214e
+:1039d00012276079c402b6c374f6122518e9ffea0b
+:1039e000fe740a1224efe0f521a3e0f522782112fb
+:1039f00027608c218d2278211227608e217522006c
+:103a000078211227608f21782112276079c102b8ae
+:103a10000774f6122518e9fe8a218b2278211227d5
+:103a20006075210875220078211227608e21782187
+:103a300012276079c202b6b474f6122518e9ffeabb
+:103a4000fe70077a00121d33801e8e2175220278c7
+:103a5000211227608f21752200782112276079cded
+:103a6000121a3f740412249c02b6cb74f712251864
+:103a70007a04121d337f010225f074f71225187a9b
+:103a80000880ef74f3122518e9feeaff8c218d22dd
+:103a9000740d1224efe0f9740e1224efe0fa740fa3
+:103aa0001224ef12baef1227608a237524007823bc
+:103ab000122760892378231227608b23782312270b
+:103ac0006078211227608f217522007821122760eb
+:103ad000eef83395e0f9e82499f521e934fff52271
+:103ae000782112276079d1121a3f740e02b687e04e
+:103af000f523a3e0f52478232274f412251874fe2c
+:103b00001224b612274c74f0122486e9ffeafe1242
+:103b10001415e9f5226030853282853383ac82ad9d
+:103b200083740a1224efaa82ab83eff912140f7484
+:103b3000011224efaa82ab83eff912141beff912e2
+:103b40001421e9f521804875230675240078231295
+:103b500027607c007d00740c1224efaa82ab8312d4
+:103b60001f07740212249c75230978231227607c96
+:103b7000007d0074031224efaa82ab83121f077426
+:103b80000212249c853282853383e4f07521ffe59f
+:103b900022a2e55004d2f08002c2f0a2f0e433fa8f
+:103ba000e522a2e750047c0280027c0075220078a6
+:103bb0002112276074081224f9059212277b740cd5
+:103bc0001224f912277b740a1224f912277b740835
+:103bd0001224ef0592e0f521782112276074141267
+:103be00024ef8582218583227821122760ea4c8e7a
+:103bf000214521f52175220078211227608f217837
+:103c00002112276079c0121a3f741012249c74107c
+:103c100012249c853282853383122754740202b8a1
+:103c2000c374f6122518e9fe8e2175220078211240
+:103c300027608a218b22782112276079bf02b6c3c0
+:103c400074f612251812c0f47011a3e0f8a3e07006
+:103c50000aa3e064027002a3e060089008ce740436
+:103c600002bd139008dde02480600814602a14600f
+:103c70003780e8e870e59008dae0600478018002b7
+:103c80007800900984e8f0a3e4f09008d9e0606837
+:103c9000900984e04402805c9008c7e0640470bb33
+:103ca000900984e4f0a3804fe8547ff5219008c781
+:103cb000e0640470a6e521c39406509f74c72521d3
+:103cc000f58274083400f583e854806010a3a3a340
+:103cd000a3a3a3a3e06403701578018013e58224f5
+:103ce0000cf582e5833400f583e0640360eb780033
+:103cf000900984e8f0a3e4f09008cee06404601436
+:103d00009008e57484f0a37409f0a3e4f0a37402ae
+:103d100012c154f07f020225f074f612251874fec9
+:103d20001224b612274ce9fa9008e312c0f770107b
+:103d30009008c7e0640460109008e112c0f76008c2
+:103d40009008ce740402bde89008dde0541f6008be
+:103d500014600d14601580e89008dfe064016005d0
+:103d6000790002bdebea9008d9807d9008e1e0542b
+:103d70007ff5219008dfe070e7e521c3940650c08d
+:103d8000e52190620ef074c72521f5847408340093
+:103d9000f5859008e1e054806021ea6004741080a9
+:103da000027440906211f0ea600474038001e4053b
+:103db00092a3a3a3a3a3a3a3f08026ea6004742084
+:103dc00080027480906214f0ea600474038001e45d
+:103dd000c0e0e584240cf582e5853400f583d0e06d
+:103de000f05392fe90620ee4f079018532828533c1
+:103df00083122754740212249c02bd14c082c08313
+:103e000079008057c082c0837901804fc082c0830f
+:103e10005392fe9008e112c0f77013a312c0f7701e
+:103e20000d12be52e85480fae9fbea4b6007900895
+:103e3000ce7404801ae8906200f09008c76009e030
+:103e40006402700c74038007e0640370037402f072
+:103e5000800c9008dfe0f8a3e0f922121eb9d083ad
+:103e6000d08202111874f5122518121ea712be5224
+:103e70007a00fbe4700374026b7020e8fb79021295
+:103e8000beefe924020909ea3400fa89828a831222
+:103e9000be559008e8e8f0a3e9800fe8fb12beeffa
+:103ea000a37b00121fa1a3f0a3e4f09008e5e0fcbf
+:103eb000a3e0fda3e0feec4d4e9008ce7004740428
+:103ec0008027e0640460239008e3e0faa3e0fb901d
+:103ed00008e812be55c3ea98eb9950089008e8ea42
+:103ee000f0a3ebf09008ce7401f07f030225f012ee
+:103ef0001ead9008e5eaf0a3ebf0a3e4f09008e52e
+:103f0000e0f9a3e0fa2274f212251874fe1224b626
+:103f100012274c8a848b85752100802d9062147441
+:103f200090f0741012bffa7003752240e52290627f
+:103f300015f0ec906213f0e8240cf582e93400f5fa
+:103f400083e4f090620ef00521858482858583a349
+:103f5000a3a3a3e0f8e521c398400302bfe77b00d9
+:103f60007a007905121eadea4b60dc8a828b83a34e
+:103f7000a3ae82af83e0540ff52390620ef075225a
+:103f8000008a828b83a3a3a3a3e02407f525a3e0e3
+:103f90003400f52674037825122464ac2574c725f3
+:103fa00023f874083400f98a828b83a3a3a3aa821e
+:103fb000ab838e828f83e0a2e7400302bf1c906236
+:103fc000117448f0740812bffa7003752240e5229c
+:103fd000906212f0ec906210f088828983a3a3a310
+:103fe000a3a3a3a302bf4185328285338312275442
+:103ff000740212249c7f060225f0f08a828b83e0f3
+:104000005403640122c082c0835392fe12c0f47034
+:1040100010a312c0f7700aa3e064017002a3e0606d
+:10402000079008ce7404800c9008e574c8f0a3745f
+:104030000812c14af002be5e74f51225189008c736
+:10404000e0640260149008e112c0f7700ca312c083
+:10405000f770069008e0e060099008ce7404f00262
+:10406000c0f1121ea79008dfe060787b007a00792b
+:1040700002121ead8a218b22ae21af22ee4f60d9f3
+:104080009008dfe0f88e828f83a3a3a3a3a3e0c0f0
+:10409000e0e8fad0e06a70d39008c77404f0e8a3af
+:1040a000f07523008e828f83a3a3a3a3e0f8e523fa
+:1040b000c398503d85232174c92521f582740834a5
+:1040c00000f583e4f07b007a007904121eadea4b20
+:1040d000600d8a828b83a3a3a3e070e9121ed7052b
+:1040e0002380c19008c8f09008c77403f0f9121e2d
+:1040f0003502beea9008dfe0f8a3e0f9e84922744f
+:10410000f51225189008c7e0640470199008dde0e6
+:104110006481701112c0f4700c9008e3e0640170c7
+:1041200002a3e060079008ce7404801a9008e1e0d2
+:1041300024c9f521a3e03408f5229008e5e521f033
+:10414000a3e52212c14af002beeaf0a3e4f0a30400
+:1041500012c15422f0a3e4f09008ce042274f612a7
+:1041600025189008c7e0640470109008dde0640131
+:1041700070089008e312c0f760089008ce7404f04d
+:104180008068121ea77b007a007902121ead8a8217
+:104190008b83e5824583600ea3a3a3a3a3e0f890dd
+:1041a00008c8e06870df7b007a027904121eadea6d
+:1041b0004b60c712be52a3e0fca3e0fd8a828b8352
+:1041c000a3a3e0feec6e7001ed60108a828b83a3e6
+:1041d000a3a3e0fee86e7001e970cb74c92cf582f0
+:1041e00074083df583e8f0121ed702bd1474f7126f
+:1041f0002518e9900364f075f075a4faabf012137a
+:1042000055900365eaf0a3ebf0800e85328285338a
+:1042100083122754740212249c7f010225f0c0826d
+:10422000c0835392fe900363e0c0e0ea2424f58249
+:10423000eb3400f583d0e0f08a828b83a3a3a374d0
+:1042400002f01216f1d083d082021118c082c0830e
+:104250001214b780f074f612251874fe1224b612e8
+:10426000274ce9fe12c3cd75217575220078211205
+:1042700027607c007d00900361e0faa3e0fb121f41
+:1042800007740212249c12c35fd2e0f01219017c61
+:1042900004eef990036712c356eef9121d21853220
+:1042a00082853383122754740212249c7f020225d4
+:1042b000f074f212251874fe1224b612274c8923ca
+:1042c000e9900363f0fe75f075a4f521e5f0f522a1
+:1042d000900365e02521f8a3e03522f9900361e819
+:1042e000f0a3e9f0800312181112c3bf121631eacd
+:1042f0004b70f312c35fc2e0f0ee75f0e4a4feafc2
+:10430000f00592900453e02ef584a3e03ff5850577
+:1043100092a3a3a3a3a3a3a3e0fea9231217b17c96
+:1043200002a923900365e02521faa3e0352212c3f8
+:104330004beefaa923121d09853282853383122799
+:1043400054740212249c7f060225f0fbea246ff5c8
+:1043500082eb3400f583e0faa3e0fb12144b2290c9
+:104360000361e02474f584a3e03400f5850592e050
+:104370002274f612251874fe1224b612274ceafc99
+:10438000ebfdec2424f582ed12c4d1547f12c3cd91
+:1043900012c5b30592e0f8a3e0f9e849701890035c
+:1043a0002e74081222fe8b22ea45227009ecfaede7
+:1043b000fb12162b800612c3bf12163702c29e9044
+:1043c0000361e02472faa3e03400fb22e990036366
+:1043d000f075f075a4f8a9f0900365e028f8a3e063
+:1043e00039f9900361e8f0a3e9f02274f712251877
+:1043f00074fe1224b612274ce9fe75f0e4a4f8a965
+:10440000f00592900453e028f582a3e039f583a8e3
+:1044100082a983e82440f584e93400f58512277bde
+:10442000e8243ef582e93400f5830592e0fca3e040
+:10443000fde8243df582e912c4d1faeef9121d0f10
+:10444000740212249c02c20b74f7122518e9fe753f
+:10445000f0e4a4f8a9f090045312c6d32442fae978
+:104460003400fbeef9121d1502c21974f71225185b
+:1044700074fe1224b612274ce9fe900363f0f8751f
+:10448000f075a4faabf00592900365e02af582a3db
+:10449000e03bf583aa82ab83059212c5c4f584a3e1
+:1044a000e039f585e584240ff582e58512c4d1a2b3
+:1044b000e7500b7c05eef912c34c7a00800b059295
+:1044c000a3a3a3a3a3a3a3e0faeef9121d1b02c2a8
+:1044d0000b12c6672274f312251874fe1224b6124a
+:1044e000274cea24fa601514700302c58e14700379
+:1044f00002c58e14700302c59602c5a07521008006
+:10450000127c06a921900365e02efaa3e03f12c3b6
+:104510004b0521900364e0f8e521c3985065e5213f
+:10452000900363f0f875f075a4feaff0900365e0ba
+:104530002efaa3e03ffb12c5c412c658a2e550d123
+:104540001217ffe970098058ecfaedfb12162b12d6
+:10455000c5b3aa82ab830592e0f8a3e0f9e849600d
+:10456000a01216318a238b24ac23ad2490032e7421
+:10457000081222fe8b24ea452460cd12c3bf121616
+:104580003d801d1217ffe9601712173f801212c3fa
+:10459000cc12157d800a12c3cc7a007b001216075c
+:1045a000853282853383122754740212249c7f053e
+:1045b0000225f00592900361e02472f582a3e034b5
+:1045c00000f58322900361eaf0a3ebf0e875f0e4d4
+:1045d000a4f8a9f0900453e0282274f712251812c9
+:1045e0001d2702c21974f7122518e9fe900364e032
+:1045f000f8eec39840047900800dee12c6be50f666
+:10460000eef91217db790102c219c082c083e9fdfd
+:104610005392fe900364e0f8edc398400479008063
+:10462000348d82a882e875f075a4faabf09003652a
+:10463000e02afaa3e03bfbea2474f582eb12c4d132
+:10464000a2e050d9e875f0e4a4f8a9f0900453e092
+:104650002812c658f902c245f8a3e039f9e8240f38
+:1046600012c66422f582e93400f583e02274f61262
+:104670002518e9fe900364e0f8eec3984004790041
+:1046800080398e82ac82ec12c6be50f2752109755b
+:1046900022007821122760ec75f0e4a4fcadf090c4
+:1046a0000453e02cf8a3e03df9e82419fce93400b8
+:1046b000fd121f01740212249c790102c2ac75f034
+:1046c00075a4f8a9f090036512c6d3247412c664c9
+:1046d000a2e022e028f8a3e039f9e82274f71225d5
+:1046e0001874fe1224b612274ce9fb900364e0f81c
+:1046f000ebc398400479ff800912c74450f7059234
+:10470000e0f98532828533835392fe02c21174f739
+:1047100012251874fe1224b612274ce9fb9003648c
+:10472000e0f8ebc39840047900801612c74450f7b4
+:10473000eb900363f0900361e584f0a3e585f079e5
+:104740000102c20beb75f075a4f8a9f0900365e0c7
+:1047500028f584a3e039f585e5842474f582e585a0
+:1047600012c667a2e0227f010225f074f612251816
+:10477000e9ff8a218b22a2afe433fec2af90054845
+:10478000e004540ff8900547e06870057900121aac
+:104790002d12c7cf741928f582740539f583e522e7
+:1047a00012c7ce741828f582740539f583e52112f5
+:1047b000c7ce741728f582740539f583eff090059c
+:1047c00048e004540ff0eea2e092af02c84df09022
+:1047d0000548e075f003a4f8a9f022c082c083a2c6
+:1047e000afe433f8c2af5392fe900547e0f9a3e07f
+:1047f000696009740129540f900547f0e8a2e0921e
+:10480000afd083d08202111874f612251874fe12ec
+:1048100024b612274cc2af900515e0f974ff696009
+:104820001c89217522007403782112247312cabbdb
+:10483000059290051512c914e9900516f0d2af85be
+:104840003282853383122754740212249c7f020221
+:1048500025f074f312251874fe1224b612274c8921
+:1048600025eafeebffa2afe433fac2af7523ff9057
+:104870000515e0f52480058524238b2474ff652429
+:1048800060778524217522007403782112247374c3
+:10489000f52521f874043522f9888289835392fe24
+:1048a000a3a3a3a3a3a3a3e0fb888489850592a364
+:1048b000a3e06f600574ff6f70bd88848985a3e0f5
+:1048c0006e70b488848985e0652570ab900515e02d
+:1048d0006524601985232175220074037821122430
+:1048e0007374fc2521f58474043522f585eb12c917
+:1048f00014e524900516f08081eaa2e092af121828
+:104900007d853282853383122754740212249c7f62
+:10491000050225f0f0900516e00592f02274f012e1
+:10492000251874fe1224b612274c74fd12248674c6
+:10493000021224efe9f074011224efeaf0ebff74a5
+:10494000151224ef7825122285a2afe43385328236
+:10495000853383f0c2af75340012cbd87825792126
+:1049600012219a900b287825122213900516e0f454
+:1049700070057900121a2d900516e0f9892175222b
+:10498000007403782112247374f52521f5847404ce
+:104990003522f585858482858583a3a3a3a3a3a35c
+:1049a000a3ac82ad83e0900516f074021224efe010
+:1049b0000592f0ef8584828585830592a3a3f07428
+:1049c000011224efe0858482858583a3f00592a3fc
+:1049d000a3a378251222a70592900515e0fa74ff8b
+:1049e0006a700302ca8c8a2175220074037821122e
+:1049f000247312cc8f85252185262285272385289f
+:104a00002478211221e7900b2c782112221312cc4a
+:104a100086600cea8c828d83f0e99005158075ea3a
+:104a200080030592e0fe8e21752200740378211226
+:104a3000247312cabbfa74ff6a60438a217522008c
+:104a40007403782112247374f82521f584740435d5
+:104a500022f585852521852622852723852824057d
+:104a60009278211221e7900b2c782112221312cc7c
+:104a70008660afe90592f0ea8c828d8380168c8483
+:104a80008d8574ff0592f0e905928008e9f08c822b
+:104a90008d8374fff0853282853383e0a2e092af8c
+:104aa00012187d740312249c853282853383122769
+:104ab00054740212249c7f080225f012cb0de022d0
+:104ac00074f412251875230074012523c0e0852392
+:104ad000217522007403782112247312cb0dd0e0cb
+:104ae000f00523c3940340e0752400740378231277
+:104af000247374fc2523f58274043524f58374ff34
+:104b0000f0900515f0a3e4f07f040225f074fc2575
+:104b100021f58274043522f5832274f71225187565
+:104b200034001219c702c76674f012251874fe12f9
+:104b300024b612274c12cbd8803074f52af5827433
+:104b4000043bf583e0f5258582848583850592a362
+:104b5000a3e0ff0592a3e0fe1219d3effaeef9e508
+:104b60002512cbe412250312187d900515e0f525da
+:104b700074ff65256036752600740378251224734a
+:104b8000aa25ab2674f82af58274043bf5837825b0
+:104b9000122285782579211221d39009fc782512db
+:104ba0002213e525452645274528708e900547e0c8
+:104bb000f8a3e068601fe812cc18f52112cc00fec3
+:104bc00012cc0cff1219cdeefaeff9e52112cbe46d
+:104bd00012250380d702caa81239f68a218b228cab
+:104be000238d2422c333fce433fd74152cf5847427
+:104bf0000b3df5850592e0f582a3e0f58305922251
+:104c0000e82424f582e93400f583e022e82423f542
+:104c100082e93400f583e02275f003a4f8a9f0746a
+:104c2000f528f8740439f9e82422f582e93400f50e
+:104c300083e02274f0122518900547e0f8a3e0689d
+:104c400060047900803d900515e0f460341239f677
+:104c50008a258b268c278d28e0f521752200740388
+:104c6000782112247312cc8f782112228578217931
+:104c7000251221d39009fc782112221312cc8670c0
+:104c8000c1790102cab6e521452245234524227493
+:104c9000f82521f58274043522f5832274f6122555
+:104ca0001874fe1224b612274c8a848b8590051541
+:104cb000e0f52174ff652170047900801b752200e6
+:104cc0007403782112247312cc8f1222b685848249
+:104cd0008585831222c2790102c83fc082c083d277
+:104ce000bd439a10d2a95392fe900369e0a2e75007
+:104cf0000302cd8ee5c7f890036ae0f5c790ff0a7e
+:104d0000e0f5f190ff02e054bff586a3e0f5c4a3ff
+:104d1000e0f5c5a3e0f5c2a3e0f5f8a3e0f5fba339
+:104d2000e0f5fca3e0f5fa90ff0be0f5f3a3e0f566
+:104d3000f4a3e0f5f590ff15e0f4f5aba3e0f4f58e
+:104d40008da3e0f4f5ac90ff19e0f4f58fa3e0f447
+:104d5000f5f6a3e0f4f5f7a3e0f4f5aee5aea2e3d3
+:104d60005003438c8090ff20e0543842c690ff1dd2
+:104d7000e0f5e4a3e0f5cba3e0f5eb90ff22e0f44f
+:104d8000f5fda3e0f4f5fea3e0f4f5ff88c7e5ae7a
+:104d9000a2e35017e5ae5407f87401b8000280048e
+:104da000c333d8fcf8f45290e842fe800574011237
+:104db000249cd083d08202111874f212251874fe3c
+:104dc0001224b612274ce9fe8a2374f05523600b97
+:104dd00024f0604e24f0607502ce7c12ce8f7413e6
+:104de0002521f58274063400f583e0f5257526004b
+:104df000782512276074102521f58274063400f599
+:104e000083e0f52578251227607821122760059226
+:104e100090060c12277379d3121a3f740a12249c3d
+:104e2000805a12ce8fe521c333f8741b28f58474a1
+:104e3000063400f585059212277b0592782112270a
+:104e40006079d5121a3f740412249c802feaa2e0e4
+:104e5000401605929006161227737b20eefa79060b
+:104e60001219df740412249c8e21752200782112fd
+:104e7000276079d4121a3f740212249c85328285ed
+:104e80003383122754740212249c7f060225f053a8
+:104e9000230f8523828582217522002274f6122534
+:104ea00018752101752200e97821122473e924f88c
+:104eb000601214601414601614601824fd60191434
+:104ec00060228023432103801e43210c801943214b
+:104ed0003080144321c0800f9061a97401f090626a
+:104ee0004bf0800353aef7eb14600624fe600b809a
+:104ef0000cd3e521d2e7f52180034321c0e99006d8
+:104f00001af08521f274035af8eb333354fc48c489
+:104f100054f049f5b6e5a8f8c2af9004c6e0d2e275
+:104f2000f0753400e8a2e792af7f020225f074f436
+:104f30001225188a218b228c238d24e9ff740c12f0
+:104f400024efe06004780180027800e84420feea63
+:104f5000452245234524602b74206e70117b20ef81
+:104f6000fa79061219d990061678211222a778210b
+:104f700012275ceefbeffa79061219df7404122493
+:104f80009c8009eefbeffa79061219d97f040225fd
+:104f9000f0740759f87401b800028004c333d8fcd8
+:104fa000f8f4fbe9a2e7ea501b601be8fa74185911
+:104fb000600a24f8601424f86018801ce5805b4abd
+:104fc000f580801460e57a0080e3e5905b4af59017
+:104fd0008006e5a05b4af5a05392fe021118e9f89d
+:104fe000740758f97401b900028004c333d9fcf97d
+:104ff000e8a2e75004e9fa80027a00741858600abf
+:1050000024f8601024f860148018e580596a701242
+:1050100079018010e590596a700880f4e5a0596a1a
+:1050200060ee790080b2c082c08374ff122486854e
+:105030003282853383e45392fe8002e004f0e0c3c1
+:10504000941440f702cdadc082c08374ff12248651
+:10505000853282853383e45392fe8002e004f0e0df
+:10506000c3940a40f702cdadc082c083121d69c24d
+:105070009643fe40121d6343fe80121d6902cdb2ad
+:10508000c082c083c29643fe4012d0e1a29750fc7a
+:10509000121d6353febf80e274f7122518e9ff7eec
+:1050a00008efa2e7500553febf8005c29643fe40bd
+:1050b00012d0e1a29750fc12d131efc333ff1eeea4
+:1050c00070df53febf12d0e1a29750fc121d63e5c2
+:1050d00090fe12d134eea2e6b3e433f97f0102254b
+:1050e000f0121d6953fe7f2274f712251889217e64
+:1050f000007f08eec333fe53fe7fa29750fc121dc3
+:1051000069a2965004eed2e0fe121d6912d1341f3e
+:10511000ef70e0e5216007c29643fe40800353fe36
+:10512000bf12d0e1a29750fc12d13153febfee80e6
+:10513000aa121d6343fe80121d692274f7122518fe
+:1051400074fe1224b612274c892112d1e074014555
+:1051500021f9121d7be970047900801feffe700cad
+:1051600080f67901121d81e90592f0a31fef70f21c
+:105170007900121d81e90592f0eef98532828533be
+:10518000835392fe122754740212249c02d0dc74c2
+:10519000f612251874fe1224b612274ce9fe12d11d
+:1051a000e0eef9121d7be970047a00801d75210084
+:1051b00080020521e521c39f500e439201e0f912c0
+:1051c0001d7be90592a370eaaa217b0085328285c6
+:1051d00033835392fe122754740212249c02cf2967
+:1051e0008a848b85ecff53fe3f53903f121d6f2244
+:1051f00074f212251874fe1224b612274c8a238bdf
+:10520000248c218d22e9fe74101224efe0f8a3e033
+:10521000f974121224efe0f525a3e0f526741412b8
+:1052200024ef12d40f7406f00592e0fae5232a1257
+:10523000d396a3aa82ab830592e0240612d4d6e8c3
+:10524000f0a3e9f08a828b83a3a3a3a312d4c7128d
+:105250002760ea240602d48f74f612251874fe1211
+:1052600024b612274ce9fe12d5b6741b12d60f24b1
+:1052700002f0ee8a828b83a3a3a3a3a3a3a3a3120a
+:10528000d65be5842402fae5853400fb02d6487437
+:10529000f7122518e9fe8a828b83a3a3e02ef07c07
+:1052a000047d0012160d02d52a74f212251874fe20
+:1052b0001224b612274c8a238b248c218d22e9fede
+:1052c00074101224ef12d3171224ef12d40f74109b
+:1052d00002d47e74f612251874fe1224b612274cde
+:1052e000740c1224ef12d5af740c02d62a74f21289
+:1052f000251874fe1224b612274c8a238b248c2185
+:105300008d22e9fe74101224ef12d3171224ef122b
+:10531000d40f741602d47ee0f525a3e0f5267412ae
+:105320002274f712251874fe1224b612274ce9fed7
+:1053300012d5b6741812d52f0412d6068007f005c0
+:1053400092e004f014f07c047d0002d51f74f41286
+:10535000251874fe1224b612274c8a218b22e9feee
+:105360008a848b850592a3a37405f0ea240512d3e1
+:1053700096740e12d3fc04f08e23752400059278e7
+:1053800023122760121f01740212249c74ff2ef84e
+:105390000592e028804d12d4262274f41225187448
+:1053a000fe1224b612274c8a218b228c238d24e9ed
+:1053b000fe740e1224ef12d40f741212d3fc2402c6
+:1053c000f0e5230592f0a3e524f08e237524007800
+:1053d00023122760ea24020a0a12d4bd12249c0573
+:1053e00092e02ef07c047d00aa21ab2212d4b312ed
+:1053f0002754740212249c7f040225f0f00592e0e9
+:10540000f8ea2812d426a3aa82ab830592e022e010
+:10541000fca3e0fd8a848b850592a3a37405f0eac2
+:10542000240512d42622f582eb3400f5830592a3dd
+:10543000a3a32274f412251874fe1224b612274c6a
+:105440008a218b228c238d24e9fe740e1224ef1204
+:10545000d40f745202d3bb74f212251874fe1224b6
+:10546000b612274c8a238b248c218d22e9fe7410de
+:105470001224ef12d3171224ef12d40f740812d390
+:10548000fc240412d4d612d4c7122760ea2404faea
+:1054900012d4bd12249c0592e02ef07c047d00aa5b
+:1054a00023ab2412d4b3122754740212249c7f0617
+:1054b0000225f012160d85328285338322eb3400eb
+:1054c000fb121f01740222e525f0a3e526f08e21d0
+:1054d000752200782122f0e5210592f0a3e522f063
+:1054e0008a828b83a3a32274f712251874fe1224d8
+:1054f000b612274c12d5b6740a12d66812d506ec2d
+:10550000f0a3ed02d3452402f085848285858322b1
+:1055100012d52f12d5067417f0a3e4f07c04fd1207
+:10552000d4b3122754740212249c7f010225f01276
+:10553000d61bfcea2c12d6222274f612251874fe11
+:105540001224b612274c740c1224ef12d5af740437
+:1055500002d62a74f712251874fe1224b612274cac
+:1055600012d57d741302d33e74f712251874fe12ff
+:1055700024b612274c12d57d741e02d33e8a828b2c
+:1055800083a3a37405f0ea240512d58d22f584ebdc
+:105590003400f5850592a3a3a32274f7122518748d
+:1055a000fe1224b612274c12d5b6740302d510e0b1
+:1055b000f521a3e0f5228a828b83a3a3a882a98385
+:1055c0007405f0ea2405f582eb3400f583a3a3a368
+:1055d0002274f612251874fe1224b612274ce9fe26
+:1055e000740c1224efe0ff12d5b6740112d60f240a
+:1055f0000412d508a3ecf0a3ed12d606f0ef059245
+:10560000a3a3a3f0803bf0ee8584828585832212dc
+:10561000d61bf521ea252112d62222f08882898321
+:10562000e02212d58da30592e02212d6682404123e
+:10563000d65b858482858583a3a3e521f0a3e5223b
+:10564000f07c047d0012160d85328285338312278b
+:1056500054740212249c7f020225f0f08584828516
+:105660008583ecf0a3edf02212d61bfeea2e12d6b3
+:1056700022225392fe02111874f712251874fe129a
+:1056800024b612274c8a828b83a3a3a3a38582848a
+:105690008583850592a3a3ecf0a3edf08a848b8526
+:1056a000a3a3e024fcf8e434fff9e80592f0a3e9b1
+:1056b000f01213d3804b74f712251874fe1224b61f
+:1056c00012274ce9fe8a848b850592a3a3a3a3a38a
+:1056d000a3a3a38a828b830592a3a3740af0740107
+:1056e0000592f0ee8584828585830592a312d714f6
+:1056f0007402f0a3e412d714a3a3ecf0a3ed12d725
+:10570000fe853282853383122754740212249c7fd3
+:10571000010225f0f0858482858583a3a32274f796
+:1057200012251874fe1224b612274ce9fe8a848bc7
+:10573000850592a3a3a3a3a3a3a3a38a828b830516
+:1057400092a3a3740af07413809674f3122518744c
+:10575000fe1224b612274c740f1224efe0fea3e0d1
+:10576000ff74111224efe0f521a3e0f52274131267
+:1057700024efe0f523a3e0f5248a828b83a3a3a37f
+:10578000a3a3a3a3a3a882a9838a828b83a3a374c0
+:1057900010f0888289837412f012d80f04f00592f9
+:1057a00012d80f888289830592a3f088828983a307
+:1057b000a37408f0a3e412d7f0ecf0a3ed12d7f035
+:1057c000a3a3eef0a3ef12d807e521f0a3e5221280
+:1057d000d807a3a3e523f0a3e52412d7fe853282e0
+:1057e000853383122754740212249c7f050225f00e
+:1057f00012d7f422f088828983a3a3a3a322f07c8a
+:10580000057d0012160d2212d7f4a3a3a3a32290a4
+:105810000361e02471f584a3e03400f5850592e08e
+:105820002274f612251874fe1224b612274ceafed2
+:10583000ebff8e828f83a3a3a3a3a3a3a3a3a8821a
+:10584000a983a385822185832288828983e01470bd
+:105850000302d8e224ef600814700302d8e28071da
+:10586000900485e0a2e04069888489850592a3a31d
+:10587000a3a3a3a3a3a3a3a312277b88848985a39f
+:10588000a3a3a3a3a3a3a312277b88828983059242
+:10589000a3a3a3a3a3a3e0fca3e0fd88828983a321
+:1058a000a3a3a3e0faa3e0fb900363e0f912175d62
+:1058b000740412249ce970047c0080027c017d0049
+:1058c000852182852283e0f9eefaeffb121619801a
+:1058d000147c007d00852182852283e0f912161355
+:1058e0008003121811853282853383122754740283
+:1058f00012249c7f020225f074f61225188a828bee
+:1059000083a3a3e0c394045005121811802e8a8249
+:105910008b83a3a3a3a3a3a3e0f521a3e0f522789f
+:105920002112278e04000209d92fd939d934d9126e
+:1059300016078008121991800312162580b5e975a3
+:10594000f00aa4faabf0745f2afa744b3bfb539253
+:10595000fe02111874e812251874fe1224b61227dc
+:105960004c74ea12248674061224efaa82ab837563
+:105970002d00752e00752900752a0074301224f947
+:10598000853282853383e584f0a3e585f0e975f0ff
+:105990000aa4f8a9f0745f28f52f744b39f5308507
+:1059a0002f82f583a3a3a3a3782512229474021255
+:1059b00024f9852f8285308374041222ec802b1207
+:1059c000db4288828983059212db8ca882a983ec52
+:1059d000faedfb12db7212db72e08a828b83f0a39a
+:1059e0000aab8374047825122162e52545264527f4
+:1059f0004528700302dac38a828b835392fea3acdc
+:105a000082ad83e525540f24fe606b14606814603a
+:105a10005b14605814600e14600b146066146063ad
+:105a200014609c80be12db2e782112228585328282
+:105a30008533830592e02404f8a3e03400f985322d
+:105a400082853383e8f0a3e9f08a828b83e5211213
+:105a5000db1fad22ae23e524cecd8a828b83f0a35b
+:105a6000eecdf0a3edf0a30a0a02d9e012db421258
+:105a7000db18e902d9da12db25f812db3e12db185b
+:105a800002d9e312db25f529a3e0f52a12db3e8ad1
+:105a9000828b83e52912db1d74031224efe0f8e505
+:105aa0002928f8e52a3400f9e8f0e9f8740212240c
+:105ab000efe048f012db25f52da3e0f52e12db3eda
+:105ac00002d9e35392fe900549e0f8a3e0f9e849d2
+:105ad000602e782d122760ac29ad2a74041224efb1
+:105ae000aa82ab83852f82853083a3e4932404f9b3
+:105af000059290054912db68122503740212249c5a
+:105b0000741612249c8532828533831227547402c2
+:105b100012249c7f100225f0e88a828b830592f084
+:105b2000ecfaedfb2212db292212db2ee022853279
+:105b300082853383e0f584a3e0f58505922212dbac
+:105b40004d2212db29f8a3e0f912db4d22853284c5
+:105b500085338512db68a3a3853284853385e5828e
+:105b60000592f0a3e583f022e0f582a3e0f583053a
+:105b7000922212db7912db792212db8c08a9838a4c
+:105b8000828b83a30aab838882898322e08a828bfb
+:105b900083f088828983a322c082c0835392fe90bf
+:105ba00004c6e4f09004c7f0c2adc2c743a92043c5
+:105bb000b920900369e0a2e0500575358080037537
+:105bc0003500d083d08202111874f012251874fcad
+:105bd000122486853282853383eaf0a3ebf0a3ecae
+:105be000f0a3edf012dd419004cc78211222a785bc
+:105bf00032828533831222b69004c81222c28532c3
+:105c00008285338378251222859009f87825122120
+:105c1000ad782579211221d39009fc782512221321
+:105c2000e5254526452745286006d2add2c7802107
+:105c3000e5ad60fc74021224efe0f59774011224c4
+:105c4000efe0f596853282853383e0f595c2c7d2c1
+:105c5000ad740412249c7f080225f074f0122518fc
+:105c600074fe1224b612274c9004c6e0600302ddd5
+:105c700029c2af1219f7e96003753401d2afe534d8
+:105c8000700302dd29121d93e9700302dd299003e0
+:105c900069e0a2e1500302dd297e07a2e340031e72
+:105ca0001e1ee586a2e04004a2f850048fc780794a
+:105cb000a2ad40048ebe803012dd419004c878252c
+:105cc000122285782579211221d3900b287825126c
+:105cd0002213900a007825121f82405beec39405c0
+:105ce00040557e05eeff8fbe7e00900369e0a2e086
+:105cf0004017e5be54036403700f0ee5a8f8c2af69
+:105d0000e0d2e0f0e8a2e792af123940d2afeea2c3
+:105d1000e0501605929009f01227737b0a7a0079f9
+:105d2000001219df740412249c8532828533831299
+:105d30002754740202dc53eec3940740a77f068009
+:105d4000a51239f68a218b228c238d242274f41219
+:105d5000251874f8122486c2af74041224efaa82a4
+:105d6000ab831217a5e9fe853282853383aa82ab05
+:105d7000831219fd900a04782112228585328285ca
+:105d8000338378211221c09004c7e4f0ee6059e912
+:105d9000603474026e6027853282853383782112e5
+:105da000228574041224ef78211221e79009fc78ef
+:105db00021122213e521452245234524600d853219
+:105dc00082853383801074026e60209004c7740152
+:105dd000f074041224ef1222b6121871d2af7408b4
+:105de00012249c7f040225f0e970d3c2ad80ed74cb
+:105df000f612251874fe1224b612274c8a848b855d
+:105e0000e9fe74026e700479028063e584240ff564
+:105e100082e5853400f583e06013e584240ef58285
+:105e2000e5853400f583e060047900804175210c3c
+:105e300075220078211227607c377d0a12deaa12b3
+:105e4000249c8b22ea452270e0e584240cf582e54f
+:105e5000853400f583e00592f0e584240df582e5b4
+:105e6000853400f5830592e00592a3f0790185322f
+:105e7000828533835392fe02e02474f6122518e9da
+:105e8000fe740a1224efe06e6004790080198e21fe
+:105e9000752200782112276012deaa12249c8b2220
+:105ea000ea452270e5790102e02c121efb74022201
+:105eb00074f612251874fe1224b612274ce9fe8ed1
+:105ec00082ac82a2e7502d75211075220078211234
+:105ed0002760ec547ff5217404782112247390f725
+:105ee00098e02521fca3e03522fd121f0174021267
+:105ef000249c8024c333fce433fd059290f79ae0a0
+:105f00002cf582a3e03df5830592e0f8a3e0f98a41
+:105f1000828b83e8f0a3e9f085328285338302e047
+:105f20002474f1122518e9feecff8f82752600a873
+:105f3000828d82ac82eea2e75034741012dfaf5033
+:105f400006a821a9228002a9268821892278211267
+:105f50002760ee547ff52175220074047821122405
+:105f60007390f798e02521f8a3e03522802c740285
+:105f700012dfaf5006a821a9228002a92688218914
+:105f8000227821122760eec333f523e433f5249001
+:105f9000f79ae02523f8a3e03524f9e82cfce9344e
+:105fa00000fd121f01740212249c7f070225f0c31a
+:105fb0009cf52195e0f522c3e52198e5229400a205
+:105fc000d265d03322c082c083e95392fe90000193
+:105fd000f075c90bc2af80fe74f612251874fa1260
+:105fe000248679067cc77dff853282853383aa8229
+:105ff000ab831214337521067522007821122760b5
+:106000007c0e7d7874021224efaa82ab8312deaa82
+:1060100012249c8b22ea45227004790180027900c7
+:1060200074068005122754740212249c7f020225f4
+:10603000f074f3122518e9ffea8f82858221752218
+:10604000008c8285822375240024fb600714601273
+:10605000790080247823122760782112276079b88c
+:10606000800c7823122760782112276079b9121ae0
+:106070003f740412249c79017f050225f074f51207
+:1060800025188b238c218d227821122760ac237b4d
+:1060900000804074f51225188b238c218d227821e5
+:1060a000122760ac237b01802a74f51225188b23fc
+:1060b0008c218d227821122760ac237b02801474fe
+:1060c000f51225188b238c218d227821122760aca4
+:1060d000237b03121c7f740212249c7f030225f091
+:1060e00074f51225188b238c218d227821122760bc
+:1060f000ac237b0480dd74f51225188b238c218d55
+:10610000227821122760ac237b0580c774f6122504
+:1061100018e5c7fc75c70390f7f4e0a2e7500779cc
+:1061200001121a2d80f9fd8cc7e5c7fc90036ae0c7
+:10613000f5c7eda2e050047e0580027e007900895b
+:1061400082aa82740e2af58274ff3400f583e0ff80
+:106150007521017522007821122473e5215e7054a7
+:10616000eac333fae433fb74fd2af582740a3bf583
+:1061700083ef601114601614601b146020146025f6
+:1061800014602a802f740df0a3741c802674c9f04b
+:10619000a3741d801e74abf0a3741d8016747df073
+:1061a000a3741e800e7417f0a3741e8006741df075
+:1061b000a3741ef009e9c3940640848cc7eda2e0e5
+:1061c0005014900b01740df0a3741cf0900afd7430
+:1061d000abf0a3741df07f020225f0c082c08312d1
+:1061e000e299701b9008e1e064027002a3e0704a3b
+:1061f0009000017401f075c9099008cee4804074e4
+:106200002268701d9008cee070369008dfe0f8a399
+:10621000e0f990097ae8f0a3e9f09008ce740280e2
+:106220001e74206870149008cee070149008e57415
+:1062300073f0a37409f0a3e480df9008ce7404f037
+:106240008071c082c08312e299740368702690083e
+:10625000e1e064027002a3e070379008e5747cf01e
+:10626000a37409f0a3e4f0a37406f0a3e4f090088b
+:10627000ce04802274216870189008cee0701890c7
+:1062800008e57473f0a37409f0a3e4f0a374078025
+:10629000d99008ce7404f0801a5392fe9008dee084
+:1062a000f82280028000c082c0835392fe9008ce04
+:1062b0007404f0d083d08202111874f7122518a24a
+:1062c000afe433fec2af12e3737900906214e0a230
+:1062d000e05022906216e0f8a3e0e8ff8a828b8308
+:1062e000a3f0ea2402fceb3400fdeff97a287b628c
+:1062f000121e537901900972e090620ef0eea2e056
+:1063000092af7f010225f074f712251874fe122453
+:10631000b612274c8a848b85e9ff12e3738003123f
+:106320001e65906211e0a2e040f5a2afe433f521d2
+:10633000c2afeffe601f944140027e40ac84ad8549
+:10634000eef97a287b62121e5990620e7404f09066
+:1063500062117401f0900972e090620ef0e521a2e2
+:10636000e092af853282853383122754740212245f
+:106370009c808f90620ee0900972f090620e74041f
+:10638000f02274f612251874fe1224b612274c74eb
+:10639000fe122486853282853383aa82ab83121350
+:1063a0004f9004beeaf0a3ebf0853282853383126e
+:1063b000e4447a277b001223fbe8fe9004be12e43b
+:1063c000c67d008012e5842427f8e5853400f9e8cd
+:1063d0000592f0a3e9f00d8d82aa82ea75f027a458
+:1063e000f8a9f05392fe9004bee028f584a3e039aa
+:1063f000f585ee24fff8e434fff9c3ea98e499a2a6
+:10640000d265d03340bfe40592f0a3f074021224a9
+:106410009c8532828533830592122754740212249c
+:106420009c7f020225f0c082c0835392fe12e44199
+:10643000e8496004790180027900d083d08202119a
+:10644000189004bce0f8a3e0f92274f71225187440
+:10645000fe1224b612274c7900a2afe433f8c2af83
+:1064600005929004bc800709858284858385e0f5c8
+:1064700082a3e0f583e582458370ece8a2e092af69
+:106480008532828533830592122754740212249c2c
+:106490007f010225f0c082c083a2afe433fcc2af0b
+:1064a0005392fe9004bce0faa3e0fbea4b600f8a33
+:1064b000828b8312e4c68a828b83e4f0a3f0eca281
+:1064c000e092af02e43ae0f8a3e0f99004bce8f00f
+:1064d000a3e9f02274f7122518eafeebffa2afe45d
+:1064e00033f521c2afee4f603412e441e849701534
+:1064f0007b06ee2424f582ef3400f583e0547ffa26
+:1065000079011219eb12e4418e828f83e8f0a3e93e
+:10651000f0eef8eff99004bce8f0a3e9f0e521a271
+:10652000e092af02e49074f712251874fe1224b6bc
+:1065300012274c74fe122486e9fe85328485338549
+:106540009007ac74021222dbee600974011224ef92
+:106550007401800674011224efe4f08532828533e1
+:1065600083ac82ad837b027a0079010592900affa9
+:10657000e0f582a3e0f5830592122503740212244c
+:106580009c853282853383122754740212249c7fa7
+:10659000010225f074f712251874fe1224b6122792
+:1065a0004c74fe12248674804b853282853383f0ce
+:1065b00074011224efea80a2c082c0835392fe903d
+:1065c00007aee0543ff9e0c413135403600b1460aa
+:1065d00012146014146028802c1217e17900121d27
+:1065e000b180221217ed80f4a3e0f8740358fbe8a1
+:1065f0001313543ffa1217f37900121db1800612db
+:1066000017e7121db7d083d08202111874f7122534
+:106610001874fe1224b612274c9007b0e0f874ae3e
+:1066200028f58274073400f583e9f09007b0e004a0
+:10663000f0640270137b007a0079051219d9900773
+:10664000b0e4f0121dbd80160592900b4412277322
+:106650007b007a0079051219df740412249c02e58c
+:106660008174f712251874fe1224b612274ceafe24
+:10667000ebff8c848d85ee6019790085328285333d
+:10668000835392fe02e587439201e0f9121dc30590
+:1066900092a3eff874ff281f0470ec790180dcc02e
+:1066a00082c083ea70085392fe9007b0e4f0d08372
+:1066b000d0825392fe021118c082c0831217e102e9
+:1066c000e60574f7122518e5c7fe90036ae0f5c7e2
+:1066d00090ff14e0f974ff69600c121d5de960061b
+:1066e0008ec7790080048ec779017f010225f0747e
+:1066f000f112251874fe1224b612274c8925eafee1
+:10670000ebff8c238d2474111224efe0f521a3e01c
+:10671000f522e5c7f890036ae0f5c790ff25e0f59c
+:1067200026f52788c774ff652760137c007d007bf2
+:106730000012e78f1225037a01a926121d57e523bf
+:10674000452460047a0080027a01eefceffdab255f
+:1067500012e791122503e5234524600eac21ad22fa
+:10676000ab237a0112e79112250374ff6527600cb1
+:106770007c007d007b3f12e78f12250385328285e6
+:106780003383122754740212249c7f070225f07a67
+:106790000379000592900afde0f582a3e0f58305f8
+:1067a000922274ff12248612142d121ca9121a03ad
+:1067b000121451121d3f121de175c70390f7f1e04d
+:1067c0006003fe80027e0190f7f0e0faeef9121409
+:1067d0003f9005497499f0a3741df0121dd5d2aff6
+:1067e00079017ce77dff853282853383aa82ab8382
+:1067f000121433853282853383e0f52175220078c7
+:1068000021122760752101782112276075210378f4
+:1068100021122760752147782112276075210178a0
+:10682000211227607821122760782112276079b61b
+:10683000121a3f740e12249c121e41121e47121a85
+:1068400033e9700579bb121a3f1214457401122402
+:106850009c021118c082c0835392fe90032c74478f
+:10686000f0a3740cf0d083d08202111874f41225b6
+:106870001874fe1224b612274c8a848b8512135b7f
+:106880008a218b22858482858583eaf0a3ebf078c8
+:106890002112276012e90e12249c90032ce0faa327
+:1068a000e0fb0592e0f8a3e0f9059290032ce028c4
+:1068b000f8a3e039f990032ce8f0a3e9f0853282df
+:1068c000853383122754740212249c7f040225f01e
+:1068d00074f41225188a218b2212135bc3ea9521c6
+:1068e000eb952250067a007b0080217821122760e8
+:1068f00012e90e12249c90032c12e9422521f8a3e0
+:10690000e03522f990032ce8f0a3e9f080bd7c008b
+:106910007d0090032ce0faa3e0fb121f0774022213
+:10692000c082c083e5c775c703f5c75392fe90f7d1
+:106930009e12e942f8a3e0f9eac398faeb99fb0248
+:10694000e865e0faa3e0fb90032ce022c082c0835c
+:106950007534015392fe900369e0a2e05004788000
+:1069600080067800800288c6e59e6870f9906270a3
+:106970007408f0d083d082021118c082c08374fee4
+:106980001224867902853282853383aa82ab8312f0
+:1069900017bd853282853383e0f5bc74011224ef84
+:1069a000e0f5bc740212249c80c974f71225187497
+:1069b000fe1224b612274c8a848b85800b5392fedc
+:1069c00090618fe00592f0a3e9f874ff2819047034
+:1069d000ec8532828533835392fe1227547402125f
+:1069e000249c7f010225f0c082c0835392fe90f761
+:1069f00094e0f8a3e0f9900982e8f0a3e9f0d083ed
+:106a0000d08202111874f712251874fe1224b612df
+:106a1000274ceafcebf87a007b0008802fe8604303
+:106a2000a3e0fdec6d6038e96d700b059290098272
+:106a3000e0faa3e0fb185392fe900982e02efea339
+:106a4000e03400ff900982eef0a3eff0900982e0bd
+:106a5000f584a3e0f5850592e0fe70c1e860047a54
+:106a6000007b00853282853383059212275474029d
+:106a700012249c7f010225f0c082c083c2af5392d2
+:106a8000fe906270e0a2e740f5e9c333906272f0d5
+:106a9000906270e0d2e0f0e0a2e740fbd2afd0839a
+:106aa000d08202111874f7122518a2afe433f8c28d
+:106ab000afed90036bf0eca3f0a37462f0a37473da
+:106ac000f0a3e4f0e9a3f0a37412f0a3744af0eb8e
+:106ad000906272f0ea906271f07403f5d575d46b30
+:106ae00075d601906270e0d2e1f0e0a2e740fbe8e9
+:106af000a2e092af7f010225f074f612251874fe11
+:106b00001224b612274c9061b1e4f0e070f8906165
+:106b1000f3e4f09061f2f0e5c7fe7400f5c774bdd0
+:106b2000059290036bf07473059290036cf0a3745c
+:106b300061f0a374f0f0a3740df0a374ecf0a374ef
+:106b400020f0a37442f01214578ec79061b1740103
+:106b5000f0e0640170f58532828533831227547426
+:106b60000212249c7f020225f074f712251874fe8d
+:106b70001224b612274c740b1224efe0f8a3e0f9ac
+:106b80008a828b838c848d85800e0592a30592a3c7
+:106b9000e824ff18e934fff9e849601e5392fee04b
+:106ba000fa0592e06a60e3e0f80592e0c3985006c7
+:106bb0007aff7bff80087a0180027a007b008532b1
+:106bc000828533835392fe122754740212249c7fd1
+:106bd000010225f074f612251874fe1224b612274d
+:106be0004ceafeebff89218c228021aa22a9218e6a
+:106bf000848f850592a3a3e0f582a3e0f583059237
+:106c00001225038e828f83e0fea3e0ffee4f70db40
+:106c1000853282853383122754740212249c7f02aa
+:106c20000225f074f7122518e9feeaff12183b124c
+:106c3000183512134912142d12186b1219e512137c
+:106c400007eef91216cdeef91213cd1218e9121350
+:106c5000c7eef91214db121481eff91217f97f0154
+:106c60000225f0c082c0831219f112187780f874df
+:106c7000f712251874fe1224b612274c740b122436
+:106c8000efe0f8a3e0f98a848b858c828d838010f5
+:106c9000e00592f0a30592a3e824ff18e934fff978
+:106ca000e84970ec853282853383122754740212ce
+:106cb000249c7f010225f07403f5d3746b2408f53e
+:106cc000d275d100c2c0d2b85392fe02111874031b
+:106cd000f5d575d46b75d6010000000000000000ea
+:106ce0000075d70180e2c082c083853282853383fc
+:106cf0005392fee0f8a3e0f98a828b83800becf0dc
+:106d0000a3e824ff18e934fff9e84970f1d083d0f3
+:106d100082021118ffffffffffffffffffffffffd2
+:106d2000ffffffffffffffffffffffffffffffff73
+:106d3000ffffffffffffffffffffffffffffffff63
+:106d4000ffffffffffffffffffffffffffffffff53
+:106d5000ffffffffffffffffffffffffffffffff43
+:106d6000ffffffffffffffffffffffffffffffff33
+:106d7000ffffffffffffffffffffffffffffffff23
+:106d8000ffffffffffffffffffffffffffffffff13
+:106d9000ffffffffffffffffffffffffffffffff03
+:106da000fffffffffffffffffffffffffffffffff3
+:106db000ffffffffffffffffffffffffffffffffe3
+:106dc000ffffffffffffffffffffffffffffffffd3
+:106dd000ffffffffffffffffffffffffffffffffc3
+:106de000ffffffffffffffffffffffffffffffffb3
+:106df000ffffffffffffffffffffffffffffffffa3
+:106e0000ffffffffffffffffffffffffffffffff92
+:106e1000ffffffffffffffffffffffffffffffff82
+:106e2000ffffffffffffffffffffffffffffffff72
+:106e3000ffffffffffffffffffffffffffffffff62
+:106e4000ffffffffffffffffffffffffffffffff52
+:106e5000ffffffffffffffffffffffffffffffff42
+:106e6000ffffffffffffffffffffffffffffffff32
+:106e7000ffffffffffffffffffffffffffffffff22
+:106e8000ffffffffffffffffffffffffffffffff12
+:106e9000ffffffffffffffffffffffffffffffff02
+:106ea000fffffffffffffffffffffffffffffffff2
+:106eb000ffffffffffffffffffffffffffffffffe2
+:106ec000ffffffffffffffffffffffffffffffffd2
+:106ed000ffffffffffffffffffffffffffffffffc2
+:106ee000ffffffffffffffffffffffffffffffffb2
+:106ef000ffffffffffffffffffffffffffffffffa2
+:106f0000ffffffffffffffffffffffffffffffff91
+:106f1000ffffffffffffffffffffffffffffffff81
+:106f2000ffffffffffffffffffffffffffffffff71
+:106f3000ffffffffffffffffffffffffffffffff61
+:106f4000ffffffffffffffffffffffffffffffff51
+:106f5000ffffffffffffffffffffffffffffffff41
+:106f6000ffffffffffffffffffffffffffffffff31
+:106f7000ffffffffffffffffffffffffffffffff21
+:106f8000ffffffffffffffffffffffffffffffff11
+:106f9000ffffffffffffffffffffffffffffffff01
+:106fa000fffffffffffffffffffffffffffffffff1
+:106fb000ffffffffffffffffffffffffffffffffe1
+:106fc000ffffffffffffffffffffffffffffffffd1
+:106fd000ffffffffffffffffffffffffffffffffc1
+:106fe000ffffffffffffffffffffffffffffffffb1
+:106ff000ffffffffffffffffffffffffffffffffa1
+:10700000ffffffffffffffffffffffffffffffff90
+:10701000ffffffffffffffffffffffffffffffff80
+:10702000ffffffffffffffffffffffffffffffff70
+:10703000ffffffffffffffffffffffffffffffff60
+:10704000ffffffffffffffffffffffffffffffff50
+:10705000ffffffffffffffffffffffffffffffff40
+:10706000ffffffffffffffffffffffffffffffff30
+:10707000ffffffffffffffffffffffffffffffff20
+:10708000ffffffffffffffffffffffffffffffff10
+:10709000ffffffffffffffffffffffffffffffff00
+:1070a000fffffffffffffffffffffffffffffffff0
+:1070b000ffffffffffffffffffffffffffffffffe0
+:1070c000ffffffffffffffffffffffffffffffffd0
+:1070d000ffffffffffffffffffffffffffffffffc0
+:1070e000ffffffffffffffffffffffffffffffffb0
+:1070f000ffffffffffffffffffffffffffffffffa0
+:10710000ffffffffffffffffffffffffffffffff8f
+:10711000ffffffffffffffffffffffffffffffff7f
+:10712000ffffffffffffffffffffffffffffffff6f
+:10713000ffffffffffffffffffffffffffffffff5f
+:10714000ffffffffffffffffffffffffffffffff4f
+:10715000ffffffffffffffffffffffffffffffff3f
+:10716000ffffffffffffffffffffffffffffffff2f
+:10717000ffffffffffffffffffffffffffffffff1f
+:10718000ffffffffffffffffffffffffffffffff0f
+:10719000ffffffffffffffffffffffffffffffffff
+:1071a000ffffffffffffffffffffffffffffffffef
+:1071b000ffffffffffffffffffffffffffffffffdf
+:1071c000ffffffffffffffffffffffffffffffffcf
+:1071d000ffffffffffffffffffffffffffffffffbf
+:1071e000ffffffffffffffffffffffffffffffffaf
+:1071f000ffffffffffffffffffffffffffffffff9f
+:10720000ffffffffffffffffffffffffffffffff8e
+:10721000ffffffffffffffffffffffffffffffff7e
+:10722000ffffffffffffffffffffffffffffffff6e
+:10723000ffffffffffffffffffffffffffffffff5e
+:10724000ffffffffffffffffffffffffffffffff4e
+:10725000ffffffffffffffffffffffffffffffff3e
+:10726000ffffffffffffffffffffffffffffffff2e
+:10727000ffffffffffffffffffffffffffffffff1e
+:10728000ffffffffffffffffffffffffffffffff0e
+:10729000fffffffffffffffffffffffffffffffffe
+:1072a000ffffffffffffffffffffffffffffffffee
+:1072b000ffffffffffffffffffffffffffffffffde
+:1072c000ffffffffffffffffffffffffffffffffce
+:1072d000ffffffffffffffffffffffffffffffffbe
+:1072e000ffffffffffffffffffffffffffffffffae
+:1072f000ffffffffffffffffffffffffffffffff9e
+:10730000ffffffffffffffffffffffffffffffff8d
+:10731000ffffffffffffffffffffffffffffffff7d
+:10732000ffffffffffffffffffffffffffffffff6d
+:10733000ffffffffffffffffffffffffffffffff5d
+:10734000ffffffffffffffffffffffffffffffff4d
+:10735000ffffffffffffffffffffffffffffffff3d
+:10736000ffffffffffffffffffffffffffffffff2d
+:10737000ffffffffffffffffffffffffffffffff1d
+:10738000ffffffffffffffffffffffffffffffff0d
+:10739000fffffffffffffffffffffffffffffffffd
+:1073a000ffffffffffffffffffffffffffffffffed
+:1073b000ffffffffffffffffffffffffffffffffdd
+:1073c000ffffffffffffffffffffffffffffffffcd
+:1073d000ffffffffffffffffffffffffffffffffbd
+:1073e000ffffffffffffffffffffffffffffffffad
+:1073f000ffffffffffffffffffffffffffffffff9d
+:10740000ffffffffffffffffffffffffffffffff8c
+:10741000ffffffffffffffffffffffffffffffff7c
+:10742000ffffffffffffffffffffffffffffffff6c
+:10743000ffffffffffffffffffffffffffffffff5c
+:10744000ffffffffffffffffffffffffffffffff4c
+:10745000ffffffffffffffffffffffffffffffff3c
+:10746000ffffffffffffffffffffffffffffffff2c
+:10747000ffffffffffffffffffffffffffffffff1c
+:10748000ffffffffffffffffffffffffffffffff0c
+:10749000fffffffffffffffffffffffffffffffffc
+:1074a000ffffffffffffffffffffffffffffffffec
+:1074b000ffffffffffffffffffffffffffffffffdc
+:1074c000ffffffffffffffffffffffffffffffffcc
+:1074d000ffffffffffffffffffffffffffffffffbc
+:1074e000ffffffffffffffffffffffffffffffffac
+:1074f000ffffffffffffffffffffffffffffffff9c
+:10750000ffffffffffffffffffffffffffffffff8b
+:10751000ffffffffffffffffffffffffffffffff7b
+:10752000ffffffffffffffffffffffffffffffff6b
+:10753000ffffffffffffffffffffffffffffffff5b
+:10754000ffffffffffffffffffffffffffffffff4b
+:10755000ffffffffffffffffffffffffffffffff3b
+:10756000ffffffffffffffffffffffffffffffff2b
+:10757000ffffffffffffffffffffffffffffffff1b
+:10758000ffffffffffffffffffffffffffffffff0b
+:10759000fffffffffffffffffffffffffffffffffb
+:1075a000ffffffffffffffffffffffffffffffffeb
+:1075b000ffffffffffffffffffffffffffffffffdb
+:1075c000ffffffffffffffffffffffffffffffffcb
+:1075d000ffffffffffffffffffffffffffffffffbb
+:1075e000ffffffffffffffffffffffffffffffffab
+:1075f000ffffffffffffffffffffffffffffffff9b
+:10760000ffffffffffffffffffffffffffffffff8a
+:10761000ffffffffffffffffffffffffffffffff7a
+:10762000ffffffffffffffffffffffffffffffff6a
+:10763000ffffffffffffffffffffffffffffffff5a
+:10764000ffffffffffffffffffffffffffffffff4a
+:10765000ffffffffffffffffffffffffffffffff3a
+:10766000ffffffffffffffffffffffffffffffff2a
+:10767000ffffffffffffffffffffffffffffffff1a
+:10768000ffffffffffffffffffffffffffffffff0a
+:10769000fffffffffffffffffffffffffffffffffa
+:1076a000ffffffffffffffffffffffffffffffffea
+:1076b000ffffffffffffffffffffffffffffffffda
+:1076c000ffffffffffffffffffffffffffffffffca
+:1076d000ffffffffffffffffffffffffffffffffba
+:1076e000ffffffffffffffffffffffffffffffffaa
+:1076f000ffffffffffffffffffffffffffffffff9a
+:10770000ffffffffffffffffffffffffffffffff89
+:10771000ffffffffffffffffffffffffffffffff79
+:10772000ffffffffffffffffffffffffffffffff69
+:10773000ffffffffffffffffffffffffffffffff59
+:10774000ffffffffffffffffffffffffffffffff49
+:10775000ffffffffffffffffffffffffffffffff39
+:10776000ffffffffffffffffffffffffffffffff29
+:10777000ffffffffffffffffffffffffffffffff19
+:10778000ffffffffffffffffffffffffffffffff09
+:10779000fffffffffffffffffffffffffffffffff9
+:1077a000ffffffffffffffffffffffffffffffffe9
+:1077b000ffffffffffffffffffffffffffffffffd9
+:1077c000ffffffffffffffffffffffffffffffffc9
+:1077d000ffffffffffffffffffffffffffffffffb9
+:1077e000ffffffffffffffffffffffffffffffffa9
+:1077f000ffffffffffffffffffffffffffffffff99
+:10780000ffffffffffffffffffffffffffffffff88
+:10781000ffffffffffffffffffffffffffffffff78
+:10782000ffffffffffffffffffffffffffffffff68
+:10783000ffffffffffffffffffffffffffffffff58
+:10784000ffffffffffffffffffffffffffffffff48
+:10785000ffffffffffffffffffffffffffffffff38
+:10786000ffffffffffffffffffffffffffffffff28
+:10787000ffffffffffffffffffffffffffffffff18
+:10788000ffffffffffffffffffffffffffffffff08
+:10789000fffffffffffffffffffffffffffffffff8
+:1078a000ffffffffffffffffffffffffffffffffe8
+:1078b000ffffffffffffffffffffffffffffffffd8
+:1078c000ffffffffffffffffffffffffffffffffc8
+:1078d000ffffffffffffffffffffffffffffffffb8
+:1078e000ffffffffffffffffffffffffffffffffa8
+:1078f000ffffffffffffffffffffffffffffffff98
+:10790000ffffffffffffffffffffffffffffffff87
+:10791000ffffffffffffffffffffffffffffffff77
+:10792000ffffffffffffffffffffffffffffffff67
+:10793000ffffffffffffffffffffffffffffffff57
+:10794000ffffffffffffffffffffffffffffffff47
+:10795000ffffffffffffffffffffffffffffffff37
+:10796000ffffffffffffffffffffffffffffffff27
+:10797000ffffffffffffffffffffffffffffffff17
+:10798000ffffffffffffffffffffffffffffffff07
+:10799000fffffffffffffffffffffffffffffffff7
+:1079a000ffffffffffffffffffffffffffffffffe7
+:1079b000ffffffffffffffffffffffffffffffffd7
+:1079c000ffffffffffffffffffffffffffffffffc7
+:1079d000ffffffffffffffffffffffffffffffffb7
+:1079e000ffffffffffffffffffffffffffffffffa7
+:1079f000ffffffffffffffffffffffffffffffff97
+:107a0000ffffffffffffffffffffffffffffffff86
+:107a1000ffffffffffffffffffffffffffffffff76
+:107a2000ffffffffffffffffffffffffffffffff66
+:107a3000ffffffffffffffffffffffffffffffff56
+:107a4000ffffffffffffffffffffffffffffffff46
+:107a5000ffffffffffffffffffffffffffffffff36
+:107a6000ffffffffffffffffffffffffffffffff26
+:107a7000ffffffffffffffffffffffffffffffff16
+:107a8000ffffffffffffffffffffffffffffffff06
+:107a9000fffffffffffffffffffffffffffffffff6
+:107aa000ffffffffffffffffffffffffffffffffe6
+:107ab000ffffffffffffffffffffffffffffffffd6
+:107ac000ffffffffffffffffffffffffffffffffc6
+:107ad000ffffffffffffffffffffffffffffffffb6
+:107ae000ffffffffffffffffffffffffffffffffa6
+:107af000ffffffffffffffffffffffffffffffff96
+:107b0000ffffffffffffffffffffffffffffffff85
+:107b1000ffffffffffffffffffffffffffffffff75
+:107b2000ffffffffffffffffffffffffffffffff65
+:107b3000ffffffffffffffffffffffffffffffff55
+:107b4000ffffffffffffffffffffffffffffffff45
+:107b5000ffffffffffffffffffffffffffffffff35
+:107b6000ffffffffffffffffffffffffffffffff25
+:107b7000ffffffffffffffffffffffffffffffff15
+:107b8000ffffffffffffffffffffffffffffffff05
+:107b9000fffffffffffffffffffffffffffffffff5
+:107ba000ffffffffffffffffffffffffffffffffe5
+:107bb000ffffffffffffffffffffffffffffffffd5
+:107bc000ffffffffffffffffffffffffffffffffc5
+:107bd000ffffffffffffffffffffffffffffffffb5
+:107be000ffffffffffffffffffffffffffffffffa5
+:107bf000ffffffffffffffffffffffffffffffff95
+:107c0000ffffffffffffffffffffffffffffffff84
+:107c1000ffffffffffffffffffffffffffffffff74
+:107c2000ffffffffffffffffffffffffffffffff64
+:107c3000ffffffffffffffffffffffffffffffff54
+:107c4000ffffffffffffffffffffffffffffffff44
+:107c5000ffffffffffffffffffffffffffffffff34
+:107c6000ffffffffffffffffffffffffffffffff24
+:107c7000ffffffffffffffffffffffffffffffff14
+:107c8000ffffffffffffffffffffffffffffffff04
+:107c9000fffffffffffffffffffffffffffffffff4
+:107ca000ffffffffffffffffffffffffffffffffe4
+:107cb000ffffffffffffffffffffffffffffffffd4
+:107cc000ffffffffffffffffffffffffffffffffc4
+:107cd000ffffffffffffffffffffffffffffffffb4
+:107ce000ffffffffffffffffffffffffffffffffa4
+:107cf000ffffffffffffffffffffffffffffffff94
+:107d0000ffffffffffffffffffffffffffffffff83
+:107d1000ffffffffffffffffffffffffffffffff73
+:107d2000ffffffffffffffffffffffffffffffff63
+:107d3000ffffffffffffffffffffffffffffffff53
+:107d4000ffffffffffffffffffffffffffffffff43
+:107d5000ffffffffffffffffffffffffffffffff33
+:107d6000ffffffffffffffffffffffffffffffff23
+:107d7000ffffffffffffffffffffffffffffffff13
+:107d8000ffffffffffffffffffffffffffffffff03
+:107d9000fffffffffffffffffffffffffffffffff3
+:107da000ffffffffffffffffffffffffffffffffe3
+:107db000ffffffffffffffffffffffffffffffffd3
+:107dc000ffffffffffffffffffffffffffffffffc3
+:107dd000ffffffffffffffffffffffffffffffffb3
+:107de000ffffffffffffffffffffffffffffffffa3
+:107df000ffffffffffffffffffffffffffffffff93
+:107e0000ffffffffffffffffffffffffffffffff82
+:107e1000ffffffffffffffffffffffffffffffff72
+:107e2000ffffffffffffffffffffffffffffffff62
+:107e3000ffffffffffffffffffffffffffffffff52
+:107e4000ffffffffffffffffffffffffffffffff42
+:107e5000ffffffffffffffffffffffffffffffff32
+:107e6000ffffffffffffffffffffffffffffffff22
+:107e7000ffffffffffffffffffffffffffffffff12
+:107e8000ffffffffffffffffffffffffffffffff02
+:107e9000fffffffffffffffffffffffffffffffff2
+:107ea000ffffffffffffffffffffffffffffffffe2
+:107eb000ffffffffffffffffffffffffffffffffd2
+:107ec000ffffffffffffffffffffffffffffffffc2
+:107ed000ffffffffffffffffffffffffffffffffb2
+:107ee000ffffffffffffffffffffffffffffffffa2
+:107ef000ffffffffffffffffffffffffffffffff92
+:107f0000ffffffffffffffffffffffffffffffff81
+:107f1000ffffffffffffffffffffffffffffffff71
+:107f2000ffffffffffffffffffffffffffffffff61
+:107f3000ffffffffffffffffffffffffffffffff51
+:107f4000ffffffffffffffffffffffffffffffff41
+:107f5000ffffffffffffffffffffffffffffffff31
+:107f6000ffffffffffffffffffffffffffffffff21
+:107f7000ffffffffffffffffffffffffffffffff11
+:107f8000ffffffffffffffffffffffffffffffff01
+:107f9000fffffffffffffffffffffffffffffffff1
+:107fa000ffffffffffffffffffffffffffffffffe1
+:107fb000ffffffffffffffffffffffffffffffffd1
+:107fc000ffffffffffffffffffffffffffffffffc1
+:107fd000ffffffffffffffffffffffffffffffffb1
+:107fe000ffffffffffffffffffffffffffffffffa1
+:107ff000ffffffffffffffffffffffffffffff068a
+:10800000ffffffffffffffffffffffffffffffff80
+:10801000ffffffffffffffffffffffffffffffff70
+:10802000ffffffffffffffffffffffffffffffff60
+:10803000ffffffffffffffffffffffffffffffff50
+:10804000ffffffffffffffffffffffffffffffff40
+:10805000ffffffffffffffffffffffffffffffff30
+:10806000ffffffffffffffffffffffffffffffff20
+:10807000ffffffffffffffffffffffffffffffff10
+:10808000ffffffffffffffffffffffffffffffff00
+:10809000fffffffffffffffffffffffffffffffff0
+:1080a000ffffffffffffffffffffffffffffffffe0
+:1080b000ffffffffffffffffffffffffffffffffd0
+:1080c000ffffffffffffffffffffffffffffffffc0
+:1080d000ffffffffffffffffffffffffffffffffb0
+:1080e000ffffffffffffffffffffffffffffffffa0
+:1080f000ffffffffffffffffffffffffffffffff90
+:10810000ffffffffffffffffffffffffffffffff7f
+:10811000ffffffffffffffffffffffffffffffff6f
+:10812000ffffffffffffffffffffffffffffffff5f
+:10813000ffffffffffffffffffffffffffffffff4f
+:10814000ffffffffffffffffffffffffffffffff3f
+:10815000ffffffffffffffffffffffffffffffff2f
+:10816000ffffffffffffffffffffffffffffffff1f
+:10817000ffffffffffffffffffffffffffffffff0f
+:10818000ffffffffffffffffffffffffffffffffff
+:10819000ffffffffffffffffffffffffffffffffef
+:1081a000ffffffffffffffffffffffffffffffffdf
+:1081b000ffffffffffffffffffffffffffffffffcf
+:1081c000ffffffffffffffffffffffffffffffffbf
+:1081d000ffffffffffffffffffffffffffffffffaf
+:1081e000ffffffffffffffffffffffffffffffff9f
+:1081f000ffffffffffffffffffffffffffffffff8f
+:10820000ffffffffffffffffffffffffffffffff7e
+:10821000ffffffffffffffffffffffffffffffff6e
+:10822000ffffffffffffffffffffffffffffffff5e
+:10823000ffffffffffffffffffffffffffffffff4e
+:10824000ffffffffffffffffffffffffffffffff3e
+:10825000ffffffffffffffffffffffffffffffff2e
+:10826000ffffffffffffffffffffffffffffffff1e
+:10827000ffffffffffffffffffffffffffffffff0e
+:10828000fffffffffffffffffffffffffffffffffe
+:10829000ffffffffffffffffffffffffffffffffee
+:1082a000ffffffffffffffffffffffffffffffffde
+:1082b000ffffffffffffffffffffffffffffffffce
+:1082c000ffffffffffffffffffffffffffffffffbe
+:1082d000ffffffffffffffffffffffffffffffffae
+:1082e000ffffffffffffffffffffffffffffffff9e
+:1082f000ffffffffffffffffffffffffffffffff8e
+:10830000ffffffffffffffffffffffffffffffff7d
+:10831000ffffffffffffffffffffffffffffffff6d
+:10832000ffffffffffffffffffffffffffffffff5d
+:10833000ffffffffffffffffffffffffffffffff4d
+:10834000ffffffffffffffffffffffffffffffff3d
+:10835000ffffffffffffffffffffffffffffffff2d
+:10836000ffffffffffffffffffffffffffffffff1d
+:10837000ffffffffffffffffffffffffffffffff0d
+:10838000fffffffffffffffffffffffffffffffffd
+:10839000ffffffffffffffffffffffffffffffffed
+:1083a000ffffffffffffffffffffffffffffffffdd
+:1083b000ffffffffffffffffffffffffffffffffcd
+:1083c000ffffffffffffffffffffffffffffffffbd
+:1083d000ffffffffffffffffffffffffffffffffad
+:1083e000ffffffffffffffffffffffffffffffff9d
+:1083f000ffffffffffffffffffffffffffffffff8d
+:10840000ffffffffffffffffffffffffffffffff7c
+:10841000ffffffffffffffffffffffffffffffff6c
+:10842000ffffffffffffffffffffffffffffffff5c
+:10843000ffffffffffffffffffffffffffffffff4c
+:10844000ffffffffffffffffffffffffffffffff3c
+:10845000ffffffffffffffffffffffffffffffff2c
+:10846000ffffffffffffffffffffffffffffffff1c
+:10847000ffffffffffffffffffffffffffffffff0c
+:10848000fffffffffffffffffffffffffffffffffc
+:10849000ffffffffffffffffffffffffffffffffec
+:1084a000ffffffffffffffffffffffffffffffffdc
+:1084b000ffffffffffffffffffffffffffffffffcc
+:1084c000ffffffffffffffffffffffffffffffffbc
+:1084d000ffffffffffffffffffffffffffffffffac
+:1084e000ffffffffffffffffffffffffffffffff9c
+:1084f000ffffffffffffffffffffffffffffffff8c
+:10850000ffffffffffffffffffffffffffffffff7b
+:10851000ffffffffffffffffffffffffffffffff6b
+:10852000ffffffffffffffffffffffffffffffff5b
+:10853000ffffffffffffffffffffffffffffffff4b
+:10854000ffffffffffffffffffffffffffffffff3b
+:10855000ffffffffffffffffffffffffffffffff2b
+:10856000ffffffffffffffffffffffffffffffff1b
+:10857000ffffffffffffffffffffffffffffffff0b
+:10858000fffffffffffffffffffffffffffffffffb
+:10859000ffffffffffffffffffffffffffffffffeb
+:1085a000ffffffffffffffffffffffffffffffffdb
+:1085b000ffffffffffffffffffffffffffffffffcb
+:1085c000ffffffffffffffffffffffffffffffffbb
+:1085d000ffffffffffffffffffffffffffffffffab
+:1085e000ffffffffffffffffffffffffffffffff9b
+:1085f000ffffffffffffffffffffffffffffffff8b
+:10860000ffffffffffffffffffffffffffffffff7a
+:10861000ffffffffffffffffffffffffffffffff6a
+:10862000ffffffffffffffffffffffffffffffff5a
+:10863000ffffffffffffffffffffffffffffffff4a
+:10864000ffffffffffffffffffffffffffffffff3a
+:10865000ffffffffffffffffffffffffffffffff2a
+:10866000ffffffffffffffffffffffffffffffff1a
+:10867000ffffffffffffffffffffffffffffffff0a
+:10868000fffffffffffffffffffffffffffffffffa
+:10869000ffffffffffffffffffffffffffffffffea
+:1086a000ffffffffffffffffffffffffffffffffda
+:1086b000ffffffffffffffffffffffffffffffffca
+:1086c000ffffffffffffffffffffffffffffffffba
+:1086d000ffffffffffffffffffffffffffffffffaa
+:1086e000ffffffffffffffffffffffffffffffff9a
+:1086f000ffffffffffffffffffffffffffffffff8a
+:10870000ffffffffffffffffffffffffffffffff79
+:10871000ffffffffffffffffffffffffffffffff69
+:10872000ffffffffffffffffffffffffffffffff59
+:10873000ffffffffffffffffffffffffffffffff49
+:10874000ffffffffffffffffffffffffffffffff39
+:10875000ffffffffffffffffffffffffffffffff29
+:10876000ffffffffffffffffffffffffffffffff19
+:10877000ffffffffffffffffffffffffffffffff09
+:10878000fffffffffffffffffffffffffffffffff9
+:10879000ffffffffffffffffffffffffffffffffe9
+:1087a000ffffffffffffffffffffffffffffffffd9
+:1087b000ffffffffffffffffffffffffffffffffc9
+:1087c000ffffffffffffffffffffffffffffffffb9
+:1087d000ffffffffffffffffffffffffffffffffa9
+:1087e000ffffffffffffffffffffffffffffffff99
+:1087f000ffffffffffffffffffffffffffffffff89
+:10880000ffffffffffffffffffffffffffffffff78
+:10881000ffffffffffffffffffffffffffffffff68
+:10882000ffffffffffffffffffffffffffffffff58
+:10883000ffffffffffffffffffffffffffffffff48
+:10884000ffffffffffffffffffffffffffffffff38
+:10885000ffffffffffffffffffffffffffffffff28
+:10886000ffffffffffffffffffffffffffffffff18
+:10887000ffffffffffffffffffffffffffffffff08
+:10888000fffffffffffffffffffffffffffffffff8
+:10889000ffffffffffffffffffffffffffffffffe8
+:1088a000ffffffffffffffffffffffffffffffffd8
+:1088b000ffffffffffffffffffffffffffffffffc8
+:1088c000ffffffffffffffffffffffffffffffffb8
+:1088d000ffffffffffffffffffffffffffffffffa8
+:1088e000ffffffffffffffffffffffffffffffff98
+:1088f000ffffffffffffffffffffffffffffffff88
+:10890000ffffffffffffffffffffffffffffffff77
+:10891000ffffffffffffffffffffffffffffffff67
+:10892000ffffffffffffffffffffffffffffffff57
+:10893000ffffffffffffffffffffffffffffffff47
+:10894000ffffffffffffffffffffffffffffffff37
+:10895000ffffffffffffffffffffffffffffffff27
+:10896000ffffffffffffffffffffffffffffffff17
+:10897000ffffffffffffffffffffffffffffffff07
+:10898000fffffffffffffffffffffffffffffffff7
+:10899000ffffffffffffffffffffffffffffffffe7
+:1089a000ffffffffffffffffffffffffffffffffd7
+:1089b000ffffffffffffffffffffffffffffffffc7
+:1089c000ffffffffffffffffffffffffffffffffb7
+:1089d000ffffffffffffffffffffffffffffffffa7
+:1089e000ffffffffffffffffffffffffffffffff97
+:1089f000ffffffffffffffffffffffffffffffff87
+:108a0000ffffffffffffffffffffffffffffffff76
+:108a1000ffffffffffffffffffffffffffffffff66
+:108a2000ffffffffffffffffffffffffffffffff56
+:108a3000ffffffffffffffffffffffffffffffff46
+:108a4000ffffffffffffffffffffffffffffffff36
+:108a5000ffffffffffffffffffffffffffffffff26
+:108a6000ffffffffffffffffffffffffffffffff16
+:108a7000ffffffffffffffffffffffffffffffff06
+:108a8000fffffffffffffffffffffffffffffffff6
+:108a9000ffffffffffffffffffffffffffffffffe6
+:108aa000ffffffffffffffffffffffffffffffffd6
+:108ab000ffffffffffffffffffffffffffffffffc6
+:108ac000ffffffffffffffffffffffffffffffffb6
+:108ad000ffffffffffffffffffffffffffffffffa6
+:108ae000ffffffffffffffffffffffffffffffff96
+:108af000ffffffffffffffffffffffffffffffff86
+:108b0000ffffffffffffffffffffffffffffffff75
+:108b1000ffffffffffffffffffffffffffffffff65
+:108b2000ffffffffffffffffffffffffffffffff55
+:108b3000ffffffffffffffffffffffffffffffff45
+:108b4000ffffffffffffffffffffffffffffffff35
+:108b5000ffffffffffffffffffffffffffffffff25
+:108b6000ffffffffffffffffffffffffffffffff15
+:108b7000ffffffffffffffffffffffffffffffff05
+:108b8000fffffffffffffffffffffffffffffffff5
+:108b9000ffffffffffffffffffffffffffffffffe5
+:108ba000ffffffffffffffffffffffffffffffffd5
+:108bb000ffffffffffffffffffffffffffffffffc5
+:108bc000ffffffffffffffffffffffffffffffffb5
+:108bd000ffffffffffffffffffffffffffffffffa5
+:108be000ffffffffffffffffffffffffffffffff95
+:108bf000ffffffffffffffffffffffffffffffff85
+:108c0000ffffffffffffffffffffffffffffffff74
+:108c1000ffffffffffffffffffffffffffffffff64
+:108c2000ffffffffffffffffffffffffffffffff54
+:108c3000ffffffffffffffffffffffffffffffff44
+:108c4000ffffffffffffffffffffffffffffffff34
+:108c5000ffffffffffffffffffffffffffffffff24
+:108c6000ffffffffffffffffffffffffffffffff14
+:108c7000ffffffffffffffffffffffffffffffff04
+:108c8000fffffffffffffffffffffffffffffffff4
+:108c9000ffffffffffffffffffffffffffffffffe4
+:108ca000ffffffffffffffffffffffffffffffffd4
+:108cb000ffffffffffffffffffffffffffffffffc4
+:108cc000ffffffffffffffffffffffffffffffffb4
+:108cd000ffffffffffffffffffffffffffffffffa4
+:108ce000ffffffffffffffffffffffffffffffff94
+:108cf000ffffffffffffffffffffffffffffffff84
+:108d0000ffffffffffffffffffffffffffffffff73
+:108d1000ffffffffffffffffffffffffffffffff63
+:108d2000ffffffffffffffffffffffffffffffff53
+:108d3000ffffffffffffffffffffffffffffffff43
+:108d4000ffffffffffffffffffffffffffffffff33
+:108d5000ffffffffffffffffffffffffffffffff23
+:108d6000ffffffffffffffffffffffffffffffff13
+:108d7000ffffffffffffffffffffffffffffffff03
+:108d8000fffffffffffffffffffffffffffffffff3
+:108d9000ffffffffffffffffffffffffffffffffe3
+:108da000ffffffffffffffffffffffffffffffffd3
+:108db000ffffffffffffffffffffffffffffffffc3
+:108dc000ffffffffffffffffffffffffffffffffb3
+:108dd000ffffffffffffffffffffffffffffffffa3
+:108de000ffffffffffffffffffffffffffffffff93
+:108df000ffffffffffffffffffffffffffffffff83
+:108e0000ffffffffffffffffffffffffffffffff72
+:108e1000ffffffffffffffffffffffffffffffff62
+:108e2000ffffffffffffffffffffffffffffffff52
+:108e3000ffffffffffffffffffffffffffffffff42
+:108e4000ffffffffffffffffffffffffffffffff32
+:108e5000ffffffffffffffffffffffffffffffff22
+:108e6000ffffffffffffffffffffffffffffffff12
+:108e7000ffffffffffffffffffffffffffffffff02
+:108e8000fffffffffffffffffffffffffffffffff2
+:108e9000ffffffffffffffffffffffffffffffffe2
+:108ea000ffffffffffffffffffffffffffffffffd2
+:108eb000ffffffffffffffffffffffffffffffffc2
+:108ec000ffffffffffffffffffffffffffffffffb2
+:108ed000ffffffffffffffffffffffffffffffffa2
+:108ee000ffffffffffffffffffffffffffffffff92
+:108ef000ffffffffffffffffffffffffffffffff82
+:108f0000ffffffffffffffffffffffffffffffff71
+:108f1000ffffffffffffffffffffffffffffffff61
+:108f2000ffffffffffffffffffffffffffffffff51
+:108f3000ffffffffffffffffffffffffffffffff41
+:108f4000ffffffffffffffffffffffffffffffff31
+:108f5000ffffffffffffffffffffffffffffffff21
+:108f6000ffffffffffffffffffffffffffffffff11
+:108f7000ffffffffffffffffffffffffffffffff01
+:108f8000fffffffffffffffffffffffffffffffff1
+:108f9000ffffffffffffffffffffffffffffffffe1
+:108fa000ffffffffffffffffffffffffffffffffd1
+:108fb000ffffffffffffffffffffffffffffffffc1
+:108fc000ffffffffffffffffffffffffffffffffb1
+:108fd000ffffffffffffffffffffffffffffffffa1
+:108fe000ffffffffffffffffffffffffffffffff91
+:108ff000ffffffffffffffffffffffffffffffff81
+:10900000ffffffffffffffffffffffffffffffff70
+:10901000ffffffffffffffffffffffffffffffff60
+:10902000ffffffffffffffffffffffffffffffff50
+:10903000ffffffffffffffffffffffffffffffff40
+:10904000ffffffffffffffffffffffffffffffff30
+:10905000ffffffffffffffffffffffffffffffff20
+:10906000ffffffffffffffffffffffffffffffff10
+:10907000ffffffffffffffffffffffffffffffff00
+:10908000fffffffffffffffffffffffffffffffff0
+:10909000ffffffffffffffffffffffffffffffffe0
+:1090a000ffffffffffffffffffffffffffffffffd0
+:1090b000ffffffffffffffffffffffffffffffffc0
+:1090c000ffffffffffffffffffffffffffffffffb0
+:1090d000ffffffffffffffffffffffffffffffffa0
+:1090e000ffffffffffffffffffffffffffffffff90
+:1090f000ffffffffffffffffffffffffffffffff80
+:10910000ffffffffffffffffffffffffffffffff6f
+:10911000ffffffffffffffffffffffffffffffff5f
+:10912000ffffffffffffffffffffffffffffffff4f
+:10913000ffffffffffffffffffffffffffffffff3f
+:10914000ffffffffffffffffffffffffffffffff2f
+:10915000ffffffffffffffffffffffffffffffff1f
+:10916000ffffffffffffffffffffffffffffffff0f
+:10917000ffffffffffffffffffffffffffffffffff
+:10918000ffffffffffffffffffffffffffffffffef
+:10919000ffffffffffffffffffffffffffffffffdf
+:1091a000ffffffffffffffffffffffffffffffffcf
+:1091b000ffffffffffffffffffffffffffffffffbf
+:1091c000ffffffffffffffffffffffffffffffffaf
+:1091d000ffffffffffffffffffffffffffffffff9f
+:1091e000ffffffffffffffffffffffffffffffff8f
+:1091f000ffffffffffffffffffffffffffffffff7f
+:10920000ffffffffffffffffffffffffffffffff6e
+:10921000ffffffffffffffffffffffffffffffff5e
+:10922000ffffffffffffffffffffffffffffffff4e
+:10923000ffffffffffffffffffffffffffffffff3e
+:10924000ffffffffffffffffffffffffffffffff2e
+:10925000ffffffffffffffffffffffffffffffff1e
+:10926000ffffffffffffffffffffffffffffffff0e
+:10927000fffffffffffffffffffffffffffffffffe
+:10928000ffffffffffffffffffffffffffffffffee
+:10929000ffffffffffffffffffffffffffffffffde
+:1092a000ffffffffffffffffffffffffffffffffce
+:1092b000ffffffffffffffffffffffffffffffffbe
+:1092c000ffffffffffffffffffffffffffffffffae
+:1092d000ffffffffffffffffffffffffffffffff9e
+:1092e000ffffffffffffffffffffffffffffffff8e
+:1092f000ffffffffffffffffffffffffffffffff7e
+:10930000ffffffffffffffffffffffffffffffff6d
+:10931000ffffffffffffffffffffffffffffffff5d
+:10932000ffffffffffffffffffffffffffffffff4d
+:10933000ffffffffffffffffffffffffffffffff3d
+:10934000ffffffffffffffffffffffffffffffff2d
+:10935000ffffffffffffffffffffffffffffffff1d
+:10936000ffffffffffffffffffffffffffffffff0d
+:10937000fffffffffffffffffffffffffffffffffd
+:10938000ffffffffffffffffffffffffffffffffed
+:10939000ffffffffffffffffffffffffffffffffdd
+:1093a000ffffffffffffffffffffffffffffffffcd
+:1093b000ffffffffffffffffffffffffffffffffbd
+:1093c000ffffffffffffffffffffffffffffffffad
+:1093d000ffffffffffffffffffffffffffffffff9d
+:1093e000ffffffffffffffffffffffffffffffff8d
+:1093f000ffffffffffffffffffffffffffffffff7d
+:10940000ffffffffffffffffffffffffffffffff6c
+:10941000ffffffffffffffffffffffffffffffff5c
+:10942000ffffffffffffffffffffffffffffffff4c
+:10943000ffffffffffffffffffffffffffffffff3c
+:10944000ffffffffffffffffffffffffffffffff2c
+:10945000ffffffffffffffffffffffffffffffff1c
+:10946000ffffffffffffffffffffffffffffffff0c
+:10947000fffffffffffffffffffffffffffffffffc
+:10948000ffffffffffffffffffffffffffffffffec
+:10949000ffffffffffffffffffffffffffffffffdc
+:1094a000ffffffffffffffffffffffffffffffffcc
+:1094b000ffffffffffffffffffffffffffffffffbc
+:1094c000ffffffffffffffffffffffffffffffffac
+:1094d000ffffffffffffffffffffffffffffffff9c
+:1094e000ffffffffffffffffffffffffffffffff8c
+:1094f000ffffffffffffffffffffffffffffffff7c
+:10950000ffffffffffffffffffffffffffffffff6b
+:10951000ffffffffffffffffffffffffffffffff5b
+:10952000ffffffffffffffffffffffffffffffff4b
+:10953000ffffffffffffffffffffffffffffffff3b
+:10954000ffffffffffffffffffffffffffffffff2b
+:10955000ffffffffffffffffffffffffffffffff1b
+:10956000ffffffffffffffffffffffffffffffff0b
+:10957000fffffffffffffffffffffffffffffffffb
+:10958000ffffffffffffffffffffffffffffffffeb
+:10959000ffffffffffffffffffffffffffffffffdb
+:1095a000ffffffffffffffffffffffffffffffffcb
+:1095b000ffffffffffffffffffffffffffffffffbb
+:1095c000ffffffffffffffffffffffffffffffffab
+:1095d000ffffffffffffffffffffffffffffffff9b
+:1095e000ffffffffffffffffffffffffffffffff8b
+:1095f000ffffffffffffffffffffffffffffffff7b
+:10960000ffffffffffffffffffffffffffffffff6a
+:10961000ffffffffffffffffffffffffffffffff5a
+:10962000ffffffffffffffffffffffffffffffff4a
+:10963000ffffffffffffffffffffffffffffffff3a
+:10964000ffffffffffffffffffffffffffffffff2a
+:10965000ffffffffffffffffffffffffffffffff1a
+:10966000ffffffffffffffffffffffffffffffff0a
+:10967000fffffffffffffffffffffffffffffffffa
+:10968000ffffffffffffffffffffffffffffffffea
+:10969000ffffffffffffffffffffffffffffffffda
+:1096a000ffffffffffffffffffffffffffffffffca
+:1096b000ffffffffffffffffffffffffffffffffba
+:1096c000ffffffffffffffffffffffffffffffffaa
+:1096d000ffffffffffffffffffffffffffffffff9a
+:1096e000ffffffffffffffffffffffffffffffff8a
+:1096f000ffffffffffffffffffffffffffffffff7a
+:10970000ffffffffffffffffffffffffffffffff69
+:10971000ffffffffffffffffffffffffffffffff59
+:10972000ffffffffffffffffffffffffffffffff49
+:10973000ffffffffffffffffffffffffffffffff39
+:10974000ffffffffffffffffffffffffffffffff29
+:10975000ffffffffffffffffffffffffffffffff19
+:10976000ffffffffffffffffffffffffffffffff09
+:10977000fffffffffffffffffffffffffffffffff9
+:10978000ffffffffffffffffffffffffffffffffe9
+:10979000ffffffffffffffffffffffffffffffffd9
+:1097a000ffffffffffffffffffffffffffffffffc9
+:1097b000ffffffffffffffffffffffffffffffffb9
+:1097c000ffffffffffffffffffffffffffffffffa9
+:1097d000ffffffffffffffffffffffffffffffff99
+:1097e000ffffffffffffffffffffffffffffffff89
+:1097f000ffffffffffffffffffffffffffffffff79
+:10980000ffffffffffffffffffffffffffffffff68
+:10981000ffffffffffffffffffffffffffffffff58
+:10982000ffffffffffffffffffffffffffffffff48
+:10983000ffffffffffffffffffffffffffffffff38
+:10984000ffffffffffffffffffffffffffffffff28
+:10985000ffffffffffffffffffffffffffffffff18
+:10986000ffffffffffffffffffffffffffffffff08
+:10987000fffffffffffffffffffffffffffffffff8
+:10988000ffffffffffffffffffffffffffffffffe8
+:10989000ffffffffffffffffffffffffffffffffd8
+:1098a000ffffffffffffffffffffffffffffffffc8
+:1098b000ffffffffffffffffffffffffffffffffb8
+:1098c000ffffffffffffffffffffffffffffffffa8
+:1098d000ffffffffffffffffffffffffffffffff98
+:1098e000ffffffffffffffffffffffffffffffff88
+:1098f000ffffffffffffffffffffffffffffffff78
+:10990000ffffffffffffffffffffffffffffffff67
+:10991000ffffffffffffffffffffffffffffffff57
+:10992000ffffffffffffffffffffffffffffffff47
+:10993000ffffffffffffffffffffffffffffffff37
+:10994000ffffffffffffffffffffffffffffffff27
+:10995000ffffffffffffffffffffffffffffffff17
+:10996000ffffffffffffffffffffffffffffffff07
+:10997000fffffffffffffffffffffffffffffffff7
+:10998000ffffffffffffffffffffffffffffffffe7
+:10999000ffffffffffffffffffffffffffffffffd7
+:1099a000ffffffffffffffffffffffffffffffffc7
+:1099b000ffffffffffffffffffffffffffffffffb7
+:1099c000ffffffffffffffffffffffffffffffffa7
+:1099d000ffffffffffffffffffffffffffffffff97
+:1099e000ffffffffffffffffffffffffffffffff87
+:1099f000ffffffffffffffffffffffffffffffff77
+:109a0000ffffffffffffffffffffffffffffffff66
+:109a1000ffffffffffffffffffffffffffffffff56
+:109a2000ffffffffffffffffffffffffffffffff46
+:109a3000ffffffffffffffffffffffffffffffff36
+:109a4000ffffffffffffffffffffffffffffffff26
+:109a5000ffffffffffffffffffffffffffffffff16
+:109a6000ffffffffffffffffffffffffffffffff06
+:109a7000fffffffffffffffffffffffffffffffff6
+:109a8000ffffffffffffffffffffffffffffffffe6
+:109a9000ffffffffffffffffffffffffffffffffd6
+:109aa000ffffffffffffffffffffffffffffffffc6
+:109ab000ffffffffffffffffffffffffffffffffb6
+:109ac000ffffffffffffffffffffffffffffffffa6
+:109ad000ffffffffffffffffffffffffffffffff96
+:109ae000ffffffffffffffffffffffffffffffff86
+:109af000ffffffffffffffffffffffffffffffff76
+:109b0000ffffffffffffffffffffffffffffffff65
+:109b1000ffffffffffffffffffffffffffffffff55
+:109b2000ffffffffffffffffffffffffffffffff45
+:109b3000ffffffffffffffffffffffffffffffff35
+:109b4000ffffffffffffffffffffffffffffffff25
+:109b5000ffffffffffffffffffffffffffffffff15
+:109b6000ffffffffffffffffffffffffffffffff05
+:109b7000fffffffffffffffffffffffffffffffff5
+:109b8000ffffffffffffffffffffffffffffffffe5
+:109b9000ffffffffffffffffffffffffffffffffd5
+:109ba000ffffffffffffffffffffffffffffffffc5
+:109bb000ffffffffffffffffffffffffffffffffb5
+:109bc000ffffffffffffffffffffffffffffffffa5
+:109bd000ffffffffffffffffffffffffffffffff95
+:109be000ffffffffffffffffffffffffffffffff85
+:109bf000ffffffffffffffffffffffffffffffff75
+:109c0000ffffffffffffffffffffffffffffffff64
+:109c1000ffffffffffffffffffffffffffffffff54
+:109c2000ffffffffffffffffffffffffffffffff44
+:109c3000ffffffffffffffffffffffffffffffff34
+:109c4000ffffffffffffffffffffffffffffffff24
+:109c5000ffffffffffffffffffffffffffffffff14
+:109c6000ffffffffffffffffffffffffffffffff04
+:109c7000fffffffffffffffffffffffffffffffff4
+:109c8000ffffffffffffffffffffffffffffffffe4
+:109c9000ffffffffffffffffffffffffffffffffd4
+:109ca000ffffffffffffffffffffffffffffffffc4
+:109cb000ffffffffffffffffffffffffffffffffb4
+:109cc000ffffffffffffffffffffffffffffffffa4
+:109cd000ffffffffffffffffffffffffffffffff94
+:109ce000ffffffffffffffffffffffffffffffff84
+:109cf000ffffffffffffffffffffffffffffffff74
+:109d0000ffffffffffffffffffffffffffffffff63
+:109d1000ffffffffffffffffffffffffffffffff53
+:109d2000ffffffffffffffffffffffffffffffff43
+:109d3000ffffffffffffffffffffffffffffffff33
+:109d4000ffffffffffffffffffffffffffffffff23
+:109d5000ffffffffffffffffffffffffffffffff13
+:109d6000ffffffffffffffffffffffffffffffff03
+:109d7000fffffffffffffffffffffffffffffffff3
+:109d8000ffffffffffffffffffffffffffffffffe3
+:109d9000ffffffffffffffffffffffffffffffffd3
+:109da000ffffffffffffffffffffffffffffffffc3
+:109db000ffffffffffffffffffffffffffffffffb3
+:109dc000ffffffffffffffffffffffffffffffffa3
+:109dd000ffffffffffffffffffffffffffffffff93
+:109de000ffffffffffffffffffffffffffffffff83
+:109df000ffffffffffffffffffffffffffffffff73
+:109e0000ffffffffffffffffffffffffffffffff62
+:109e1000ffffffffffffffffffffffffffffffff52
+:109e2000ffffffffffffffffffffffffffffffff42
+:109e3000ffffffffffffffffffffffffffffffff32
+:109e4000ffffffffffffffffffffffffffffffff22
+:109e5000ffffffffffffffffffffffffffffffff12
+:109e6000ffffffffffffffffffffffffffffffff02
+:109e7000fffffffffffffffffffffffffffffffff2
+:109e8000ffffffffffffffffffffffffffffffffe2
+:109e9000ffffffffffffffffffffffffffffffffd2
+:109ea000ffffffffffffffffffffffffffffffffc2
+:109eb000ffffffffffffffffffffffffffffffffb2
+:109ec000ffffffffffffffffffffffffffffffffa2
+:109ed000ffffffffffffffffffffffffffffffff92
+:109ee000ffffffffffffffffffffffffffffffff82
+:109ef000ffffffffffffffffffffffffffffffff72
+:109f0000ffffffffffffffffffffffffffffffff61
+:109f1000ffffffffffffffffffffffffffffffff51
+:109f2000ffffffffffffffffffffffffffffffff41
+:109f3000ffffffffffffffffffffffffffffffff31
+:109f4000ffffffffffffffffffffffffffffffff21
+:109f5000ffffffffffffffffffffffffffffffff11
+:109f6000ffffffffffffffffffffffffffffffff01
+:109f7000fffffffffffffffffffffffffffffffff1
+:109f8000ffffffffffffffffffffffffffffffffe1
+:109f9000ffffffffffffffffffffffffffffffffd1
+:109fa000ffffffffffffffffffffffffffffffffc1
+:109fb000ffffffffffffffffffffffffffffffffb1
+:109fc000ffffffffffffffffffffffffffffffffa1
+:109fd000ffffffffffffffffffffffffffffffff91
+:109fe000ffffffffffffffffffffffffffffffff81
+:109ff000ffffffffffffffffffffffffffffffff71
+:10a00000ffffffffffffffffffffffffffffffff60
+:10a01000ffffffffffffffffffffffffffffffff50
+:10a02000ffffffffffffffffffffffffffffffff40
+:10a03000ffffffffffffffffffffffffffffffff30
+:10a04000ffffffffffffffffffffffffffffffff20
+:10a05000ffffffffffffffffffffffffffffffff10
+:10a06000ffffffffffffffffffffffffffffffff00
+:10a07000fffffffffffffffffffffffffffffffff0
+:10a08000ffffffffffffffffffffffffffffffffe0
+:10a09000ffffffffffffffffffffffffffffffffd0
+:10a0a000ffffffffffffffffffffffffffffffffc0
+:10a0b000ffffffffffffffffffffffffffffffffb0
+:10a0c000ffffffffffffffffffffffffffffffffa0
+:10a0d000ffffffffffffffffffffffffffffffff90
+:10a0e000ffffffffffffffffffffffffffffffff80
+:10a0f000ffffffffffffffffffffffffffffffff70
+:10a10000ffffffffffffffffffffffffffffffff5f
+:10a11000ffffffffffffffffffffffffffffffff4f
+:10a12000ffffffffffffffffffffffffffffffff3f
+:10a13000ffffffffffffffffffffffffffffffff2f
+:10a14000ffffffffffffffffffffffffffffffff1f
+:10a15000ffffffffffffffffffffffffffffffff0f
+:10a16000ffffffffffffffffffffffffffffffffff
+:10a17000ffffffffffffffffffffffffffffffffef
+:10a18000ffffffffffffffffffffffffffffffffdf
+:10a19000ffffffffffffffffffffffffffffffffcf
+:10a1a000ffffffffffffffffffffffffffffffffbf
+:10a1b000ffffffffffffffffffffffffffffffffaf
+:10a1c000ffffffffffffffffffffffffffffffff9f
+:10a1d000ffffffffffffffffffffffffffffffff8f
+:10a1e000ffffffffffffffffffffffffffffffff7f
+:10a1f000ffffffffffffffffffffffffffffffff6f
+:10a20000ffffffffffffffffffffffffffffffff5e
+:10a21000ffffffffffffffffffffffffffffffff4e
+:10a22000ffffffffffffffffffffffffffffffff3e
+:10a23000ffffffffffffffffffffffffffffffff2e
+:10a24000ffffffffffffffffffffffffffffffff1e
+:10a25000ffffffffffffffffffffffffffffffff0e
+:10a26000fffffffffffffffffffffffffffffffffe
+:10a27000ffffffffffffffffffffffffffffffffee
+:10a28000ffffffffffffffffffffffffffffffffde
+:10a29000ffffffffffffffffffffffffffffffffce
+:10a2a000ffffffffffffffffffffffffffffffffbe
+:10a2b000ffffffffffffffffffffffffffffffffae
+:10a2c000ffffffffffffffffffffffffffffffff9e
+:10a2d000ffffffffffffffffffffffffffffffff8e
+:10a2e000ffffffffffffffffffffffffffffffff7e
+:10a2f000ffffffffffffffffffffffffffffffff6e
+:10a30000ffffffffffffffffffffffffffffffff5d
+:10a31000ffffffffffffffffffffffffffffffff4d
+:10a32000ffffffffffffffffffffffffffffffff3d
+:10a33000ffffffffffffffffffffffffffffffff2d
+:10a34000ffffffffffffffffffffffffffffffff1d
+:10a35000ffffffffffffffffffffffffffffffff0d
+:10a36000fffffffffffffffffffffffffffffffffd
+:10a37000ffffffffffffffffffffffffffffffffed
+:10a38000ffffffffffffffffffffffffffffffffdd
+:10a39000ffffffffffffffffffffffffffffffffcd
+:10a3a000ffffffffffffffffffffffffffffffffbd
+:10a3b000ffffffffffffffffffffffffffffffffad
+:10a3c000ffffffffffffffffffffffffffffffff9d
+:10a3d000ffffffffffffffffffffffffffffffff8d
+:10a3e000ffffffffffffffffffffffffffffffff7d
+:10a3f000ffffffffffffffffffffffffffffffff6d
+:10a40000ffffffffffffffffffffffffffffffff5c
+:10a41000ffffffffffffffffffffffffffffffff4c
+:10a42000ffffffffffffffffffffffffffffffff3c
+:10a43000ffffffffffffffffffffffffffffffff2c
+:10a44000ffffffffffffffffffffffffffffffff1c
+:10a45000ffffffffffffffffffffffffffffffff0c
+:10a46000fffffffffffffffffffffffffffffffffc
+:10a47000ffffffffffffffffffffffffffffffffec
+:10a48000ffffffffffffffffffffffffffffffffdc
+:10a49000ffffffffffffffffffffffffffffffffcc
+:10a4a000ffffffffffffffffffffffffffffffffbc
+:10a4b000ffffffffffffffffffffffffffffffffac
+:10a4c000ffffffffffffffffffffffffffffffff9c
+:10a4d000ffffffffffffffffffffffffffffffff8c
+:10a4e000ffffffffffffffffffffffffffffffff7c
+:10a4f000ffffffffffffffffffffffffffffffff6c
+:10a50000ffffffffffffffffffffffffffffffff5b
+:10a51000ffffffffffffffffffffffffffffffff4b
+:10a52000ffffffffffffffffffffffffffffffff3b
+:10a53000ffffffffffffffffffffffffffffffff2b
+:10a54000ffffffffffffffffffffffffffffffff1b
+:10a55000ffffffffffffffffffffffffffffffff0b
+:10a56000fffffffffffffffffffffffffffffffffb
+:10a57000ffffffffffffffffffffffffffffffffeb
+:10a58000ffffffffffffffffffffffffffffffffdb
+:10a59000ffffffffffffffffffffffffffffffffcb
+:10a5a000ffffffffffffffffffffffffffffffffbb
+:10a5b000ffffffffffffffffffffffffffffffffab
+:10a5c000ffffffffffffffffffffffffffffffff9b
+:10a5d000ffffffffffffffffffffffffffffffff8b
+:10a5e000ffffffffffffffffffffffffffffffff7b
+:10a5f000ffffffffffffffffffffffffffffffff6b
+:10a60000ffffffffffffffffffffffffffffffff5a
+:10a61000ffffffffffffffffffffffffffffffff4a
+:10a62000ffffffffffffffffffffffffffffffff3a
+:10a63000ffffffffffffffffffffffffffffffff2a
+:10a64000ffffffffffffffffffffffffffffffff1a
+:10a65000ffffffffffffffffffffffffffffffff0a
+:10a66000fffffffffffffffffffffffffffffffffa
+:10a67000ffffffffffffffffffffffffffffffffea
+:10a68000ffffffffffffffffffffffffffffffffda
+:10a69000ffffffffffffffffffffffffffffffffca
+:10a6a000ffffffffffffffffffffffffffffffffba
+:10a6b000ffffffffffffffffffffffffffffffffaa
+:10a6c000ffffffffffffffffffffffffffffffff9a
+:10a6d000ffffffffffffffffffffffffffffffff8a
+:10a6e000ffffffffffffffffffffffffffffffff7a
+:10a6f000ffffffffffffffffffffffffffffffff6a
+:10a70000ffffffffffffffffffffffffffffffff59
+:10a71000ffffffffffffffffffffffffffffffff49
+:10a72000ffffffffffffffffffffffffffffffff39
+:10a73000ffffffffffffffffffffffffffffffff29
+:10a74000ffffffffffffffffffffffffffffffff19
+:10a75000ffffffffffffffffffffffffffffffff09
+:10a76000fffffffffffffffffffffffffffffffff9
+:10a77000ffffffffffffffffffffffffffffffffe9
+:10a78000ffffffffffffffffffffffffffffffffd9
+:10a79000ffffffffffffffffffffffffffffffffc9
+:10a7a000ffffffffffffffffffffffffffffffffb9
+:10a7b000ffffffffffffffffffffffffffffffffa9
+:10a7c000ffffffffffffffffffffffffffffffff99
+:10a7d000ffffffffffffffffffffffffffffffff89
+:10a7e000ffffffffffffffffffffffffffffffff79
+:10a7f000ffffffffffffffffffffffffffffffff69
+:10a80000ffffffffffffffffffffffffffffffff58
+:10a81000ffffffffffffffffffffffffffffffff48
+:10a82000ffffffffffffffffffffffffffffffff38
+:10a83000ffffffffffffffffffffffffffffffff28
+:10a84000ffffffffffffffffffffffffffffffff18
+:10a85000ffffffffffffffffffffffffffffffff08
+:10a86000fffffffffffffffffffffffffffffffff8
+:10a87000ffffffffffffffffffffffffffffffffe8
+:10a88000ffffffffffffffffffffffffffffffffd8
+:10a89000ffffffffffffffffffffffffffffffffc8
+:10a8a000ffffffffffffffffffffffffffffffffb8
+:10a8b000ffffffffffffffffffffffffffffffffa8
+:10a8c000ffffffffffffffffffffffffffffffff98
+:10a8d000ffffffffffffffffffffffffffffffff88
+:10a8e000ffffffffffffffffffffffffffffffff78
+:10a8f000ffffffffffffffffffffffffffffffff68
+:10a90000ffffffffffffffffffffffffffffffff57
+:10a91000ffffffffffffffffffffffffffffffff47
+:10a92000ffffffffffffffffffffffffffffffff37
+:10a93000ffffffffffffffffffffffffffffffff27
+:10a94000ffffffffffffffffffffffffffffffff17
+:10a95000ffffffffffffffffffffffffffffffff07
+:10a96000fffffffffffffffffffffffffffffffff7
+:10a97000ffffffffffffffffffffffffffffffffe7
+:10a98000ffffffffffffffffffffffffffffffffd7
+:10a99000ffffffffffffffffffffffffffffffffc7
+:10a9a000ffffffffffffffffffffffffffffffffb7
+:10a9b000ffffffffffffffffffffffffffffffffa7
+:10a9c000ffffffffffffffffffffffffffffffff97
+:10a9d000ffffffffffffffffffffffffffffffff87
+:10a9e000ffffffffffffffffffffffffffffffff77
+:10a9f000ffffffffffffffffffffffffffffffff67
+:10aa0000ffffffffffffffffffffffffffffffff56
+:10aa1000ffffffffffffffffffffffffffffffff46
+:10aa2000ffffffffffffffffffffffffffffffff36
+:10aa3000ffffffffffffffffffffffffffffffff26
+:10aa4000ffffffffffffffffffffffffffffffff16
+:10aa5000ffffffffffffffffffffffffffffffff06
+:10aa6000fffffffffffffffffffffffffffffffff6
+:10aa7000ffffffffffffffffffffffffffffffffe6
+:10aa8000ffffffffffffffffffffffffffffffffd6
+:10aa9000ffffffffffffffffffffffffffffffffc6
+:10aaa000ffffffffffffffffffffffffffffffffb6
+:10aab000ffffffffffffffffffffffffffffffffa6
+:10aac000ffffffffffffffffffffffffffffffff96
+:10aad000ffffffffffffffffffffffffffffffff86
+:10aae000ffffffffffffffffffffffffffffffff76
+:10aaf000ffffffffffffffffffffffffffffffff66
+:10ab0000ffffffffffffffffffffffffffffffff55
+:10ab1000ffffffffffffffffffffffffffffffff45
+:10ab2000ffffffffffffffffffffffffffffffff35
+:10ab3000ffffffffffffffffffffffffffffffff25
+:10ab4000ffffffffffffffffffffffffffffffff15
+:10ab5000ffffffffffffffffffffffffffffffff05
+:10ab6000fffffffffffffffffffffffffffffffff5
+:10ab7000ffffffffffffffffffffffffffffffffe5
+:10ab8000ffffffffffffffffffffffffffffffffd5
+:10ab9000ffffffffffffffffffffffffffffffffc5
+:10aba000ffffffffffffffffffffffffffffffffb5
+:10abb000ffffffffffffffffffffffffffffffffa5
+:10abc000ffffffffffffffffffffffffffffffff95
+:10abd000ffffffffffffffffffffffffffffffff85
+:10abe000ffffffffffffffffffffffffffffffff75
+:10abf000ffffffffffffffffffffffffffffffff65
+:10ac0000ffffffffffffffffffffffffffffffff54
+:10ac1000ffffffffffffffffffffffffffffffff44
+:10ac2000ffffffffffffffffffffffffffffffff34
+:10ac3000ffffffffffffffffffffffffffffffff24
+:10ac4000ffffffffffffffffffffffffffffffff14
+:10ac5000ffffffffffffffffffffffffffffffff04
+:10ac6000fffffffffffffffffffffffffffffffff4
+:10ac7000ffffffffffffffffffffffffffffffffe4
+:10ac8000ffffffffffffffffffffffffffffffffd4
+:10ac9000ffffffffffffffffffffffffffffffffc4
+:10aca000ffffffffffffffffffffffffffffffffb4
+:10acb000ffffffffffffffffffffffffffffffffa4
+:10acc000ffffffffffffffffffffffffffffffff94
+:10acd000ffffffffffffffffffffffffffffffff84
+:10ace000ffffffffffffffffffffffffffffffff74
+:10acf000ffffffffffffffffffffffffffffffff64
+:10ad0000ffffffffffffffffffffffffffffffff53
+:10ad1000ffffffffffffffffffffffffffffffff43
+:10ad2000ffffffffffffffffffffffffffffffff33
+:10ad3000ffffffffffffffffffffffffffffffff23
+:10ad4000ffffffffffffffffffffffffffffffff13
+:10ad5000ffffffffffffffffffffffffffffffff03
+:10ad6000fffffffffffffffffffffffffffffffff3
+:10ad7000ffffffffffffffffffffffffffffffffe3
+:10ad8000ffffffffffffffffffffffffffffffffd3
+:10ad9000ffffffffffffffffffffffffffffffffc3
+:10ada000ffffffffffffffffffffffffffffffffb3
+:10adb000ffffffffffffffffffffffffffffffffa3
+:10adc000ffffffffffffffffffffffffffffffff93
+:10add000ffffffffffffffffffffffffffffffff83
+:10ade000ffffffffffffffffffffffffffffffff73
+:10adf000ffffffffffffffffffffffffffffffff63
+:10ae0000ffffffffffffffffffffffffffffffff52
+:10ae1000ffffffffffffffffffffffffffffffff42
+:10ae2000ffffffffffffffffffffffffffffffff32
+:10ae3000ffffffffffffffffffffffffffffffff22
+:10ae4000ffffffffffffffffffffffffffffffff12
+:10ae5000ffffffffffffffffffffffffffffffff02
+:10ae6000fffffffffffffffffffffffffffffffff2
+:10ae7000ffffffffffffffffffffffffffffffffe2
+:10ae8000ffffffffffffffffffffffffffffffffd2
+:10ae9000ffffffffffffffffffffffffffffffffc2
+:10aea000ffffffffffffffffffffffffffffffffb2
+:10aeb000ffffffffffffffffffffffffffffffffa2
+:10aec000ffffffffffffffffffffffffffffffff92
+:10aed000ffffffffffffffffffffffffffffffff82
+:10aee000ffffffffffffffffffffffffffffffff72
+:10aef000ffffffffffffffffffffffffffffffff62
+:10af0000ffffffffffffffffffffffffffffffff51
+:10af1000ffffffffffffffffffffffffffffffff41
+:10af2000ffffffffffffffffffffffffffffffff31
+:10af3000ffffffffffffffffffffffffffffffff21
+:10af4000ffffffffffffffffffffffffffffffff11
+:10af5000ffffffffffffffffffffffffffffffff01
+:10af6000fffffffffffffffffffffffffffffffff1
+:10af7000ffffffffffffffffffffffffffffffffe1
+:10af8000ffffffffffffffffffffffffffffffffd1
+:10af9000ffffffffffffffffffffffffffffffffc1
+:10afa000ffffffffffffffffffffffffffffffffb1
+:10afb000ffffffffffffffffffffffffffffffffa1
+:10afc000ffffffffffffffffffffffffffffffff91
+:10afd000ffffffffffffffffffffffffffffffff81
+:10afe000ffffffffffffffffffffffffffffffff71
+:10aff000ffffffffffffffffffffffffffffffff61
+:10b00000ffffffffffffffffffffffffffffffff50
+:10b01000ffffffffffffffffffffffffffffffff40
+:10b02000ffffffffffffffffffffffffffffffff30
+:10b03000ffffffffffffffffffffffffffffffff20
+:10b04000ffffffffffffffffffffffffffffffff10
+:10b05000ffffffffffffffffffffffffffffffff00
+:10b06000fffffffffffffffffffffffffffffffff0
+:10b07000ffffffffffffffffffffffffffffffffe0
+:10b08000ffffffffffffffffffffffffffffffffd0
+:10b09000ffffffffffffffffffffffffffffffffc0
+:10b0a000ffffffffffffffffffffffffffffffffb0
+:10b0b000ffffffffffffffffffffffffffffffffa0
+:10b0c000ffffffffffffffffffffffffffffffff90
+:10b0d000ffffffffffffffffffffffffffffffff80
+:10b0e000ffffffffffffffffffffffffffffffff70
+:10b0f000ffffffffffffffffffffffffffffffff60
+:10b10000ffffffffffffffffffffffffffffffff4f
+:10b11000ffffffffffffffffffffffffffffffff3f
+:10b12000ffffffffffffffffffffffffffffffff2f
+:10b13000ffffffffffffffffffffffffffffffff1f
+:10b14000ffffffffffffffffffffffffffffffff0f
+:10b15000ffffffffffffffffffffffffffffffffff
+:10b16000ffffffffffffffffffffffffffffffffef
+:10b17000ffffffffffffffffffffffffffffffffdf
+:10b18000ffffffffffffffffffffffffffffffffcf
+:10b19000ffffffffffffffffffffffffffffffffbf
+:10b1a000ffffffffffffffffffffffffffffffffaf
+:10b1b000ffffffffffffffffffffffffffffffff9f
+:10b1c000ffffffffffffffffffffffffffffffff8f
+:10b1d000ffffffffffffffffffffffffffffffff7f
+:10b1e000ffffffffffffffffffffffffffffffff6f
+:10b1f000ffffffffffffffffffffffffffffffff5f
+:10b20000ffffffffffffffffffffffffffffffff4e
+:10b21000ffffffffffffffffffffffffffffffff3e
+:10b22000ffffffffffffffffffffffffffffffff2e
+:10b23000ffffffffffffffffffffffffffffffff1e
+:10b24000ffffffffffffffffffffffffffffffff0e
+:10b25000fffffffffffffffffffffffffffffffffe
+:10b26000ffffffffffffffffffffffffffffffffee
+:10b27000ffffffffffffffffffffffffffffffffde
+:10b28000ffffffffffffffffffffffffffffffffce
+:10b29000ffffffffffffffffffffffffffffffffbe
+:10b2a000ffffffffffffffffffffffffffffffffae
+:10b2b000ffffffffffffffffffffffffffffffff9e
+:10b2c000ffffffffffffffffffffffffffffffff8e
+:10b2d000ffffffffffffffffffffffffffffffff7e
+:10b2e000ffffffffffffffffffffffffffffffff6e
+:10b2f000ffffffffffffffffffffffffffffffff5e
+:10b30000ffffffffffffffffffffffffffffffff4d
+:10b31000ffffffffffffffffffffffffffffffff3d
+:10b32000ffffffffffffffffffffffffffffffff2d
+:10b33000ffffffffffffffffffffffffffffffff1d
+:10b34000ffffffffffffffffffffffffffffffff0d
+:10b35000fffffffffffffffffffffffffffffffffd
+:10b36000ffffffffffffffffffffffffffffffffed
+:10b37000ffffffffffffffffffffffffffffffffdd
+:10b38000ffffffffffffffffffffffffffffffffcd
+:10b39000ffffffffffffffffffffffffffffffffbd
+:10b3a000ffffffffffffffffffffffffffffffffad
+:10b3b000ffffffffffffffffffffffffffffffff9d
+:10b3c000ffffffffffffffffffffffffffffffff8d
+:10b3d000ffffffffffffffffffffffffffffffff7d
+:10b3e000ffffffffffffffffffffffffffffffff6d
+:10b3f000ffffffffffffffffffffffffffffffff5d
+:10b40000ffffffffffffffffffffffffffffffff4c
+:10b41000ffffffffffffffffffffffffffffffff3c
+:10b42000ffffffffffffffffffffffffffffffff2c
+:10b43000ffffffffffffffffffffffffffffffff1c
+:10b44000ffffffffffffffffffffffffffffffff0c
+:10b45000fffffffffffffffffffffffffffffffffc
+:10b46000ffffffffffffffffffffffffffffffffec
+:10b47000ffffffffffffffffffffffffffffffffdc
+:10b48000ffffffffffffffffffffffffffffffffcc
+:10b49000ffffffffffffffffffffffffffffffffbc
+:10b4a000ffffffffffffffffffffffffffffffffac
+:10b4b000ffffffffffffffffffffffffffffffff9c
+:10b4c000ffffffffffffffffffffffffffffffff8c
+:10b4d000ffffffffffffffffffffffffffffffff7c
+:10b4e000ffffffffffffffffffffffffffffffff6c
+:10b4f000ffffffffffffffffffffffffffffffff5c
+:10b50000ffffffffffffffffffffffffffffffff4b
+:10b51000ffffffffffffffffffffffffffffffff3b
+:10b52000ffffffffffffffffffffffffffffffff2b
+:10b53000ffffffffffffffffffffffffffffffff1b
+:10b54000ffffffffffffffffffffffffffffffff0b
+:10b55000fffffffffffffffffffffffffffffffffb
+:10b56000ffffffffffffffffffffffffffffffffeb
+:10b57000ffffffffffffffffffffffffffffffffdb
+:10b58000ffffffffffffffffffffffffffffffffcb
+:10b59000ffffffffffffffffffffffffffffffffbb
+:10b5a000ffffffffffffffffffffffffffffffffab
+:10b5b000ffffffffffffffffffffffffffffffff9b
+:10b5c000ffffffffffffffffffffffffffffffff8b
+:10b5d000ffffffffffffffffffffffffffffffff7b
+:10b5e000ffffffffffffffffffffffffffffffff6b
+:10b5f000ffffffffffffffffffffffffffffffff5b
+:10b60000ffffffffffffffffffffffffffffffff4a
+:10b61000ffffffffffffffffffffffffffffffff3a
+:10b62000ffffffffffffffffffffffffffffffff2a
+:10b63000ffffffffffffffffffffffffffffffff1a
+:10b64000ffffffffffffffffffffffffffffffff0a
+:10b65000fffffffffffffffffffffffffffffffffa
+:10b66000ffffffffffffffffffffffffffffffffea
+:10b67000ffffffffffffffffffffffffffffffffda
+:10b68000ffffffffffffffffffffffffffffffffca
+:10b69000ffffffffffffffffffffffffffffffffba
+:10b6a000ffffffffffffffffffffffffffffffffaa
+:10b6b000ffffffffffffffffffffffffffffffff9a
+:10b6c000ffffffffffffffffffffffffffffffff8a
+:10b6d000ffffffffffffffffffffffffffffffff7a
+:10b6e000ffffffffffffffffffffffffffffffff6a
+:10b6f000ffffffffffffffffffffffffffffffff5a
+:10b70000ffffffffffffffffffffffffffffffff49
+:10b71000ffffffffffffffffffffffffffffffff39
+:10b72000ffffffffffffffffffffffffffffffff29
+:10b73000ffffffffffffffffffffffffffffffff19
+:10b74000ffffffffffffffffffffffffffffffff09
+:10b75000fffffffffffffffffffffffffffffffff9
+:10b76000ffffffffffffffffffffffffffffffffe9
+:10b77000ffffffffffffffffffffffffffffffffd9
+:10b78000ffffffffffffffffffffffffffffffffc9
+:10b79000ffffffffffffffffffffffffffffffffb9
+:10b7a000ffffffffffffffffffffffffffffffffa9
+:10b7b000ffffffffffffffffffffffffffffffff99
+:10b7c000ffffffffffffffffffffffffffffffff89
+:10b7d000ffffffffffffffffffffffffffffffff79
+:10b7e000ffffffffffffffffffffffffffffffff69
+:10b7f000ffffffffffffffffffffffffffffffff59
+:10b80000ffffffffffffffffffffffffffffffff48
+:10b81000ffffffffffffffffffffffffffffffff38
+:10b82000ffffffffffffffffffffffffffffffff28
+:10b83000ffffffffffffffffffffffffffffffff18
+:10b84000ffffffffffffffffffffffffffffffff08
+:10b85000fffffffffffffffffffffffffffffffff8
+:10b86000ffffffffffffffffffffffffffffffffe8
+:10b87000ffffffffffffffffffffffffffffffffd8
+:10b88000ffffffffffffffffffffffffffffffffc8
+:10b89000ffffffffffffffffffffffffffffffffb8
+:10b8a000ffffffffffffffffffffffffffffffffa8
+:10b8b000ffffffffffffffffffffffffffffffff98
+:10b8c000ffffffffffffffffffffffffffffffff88
+:10b8d000ffffffffffffffffffffffffffffffff78
+:10b8e000ffffffffffffffffffffffffffffffff68
+:10b8f000ffffffffffffffffffffffffffffffff58
+:10b90000ffffffffffffffffffffffffffffffff47
+:10b91000ffffffffffffffffffffffffffffffff37
+:10b92000ffffffffffffffffffffffffffffffff27
+:10b93000ffffffffffffffffffffffffffffffff17
+:10b94000ffffffffffffffffffffffffffffffff07
+:10b95000fffffffffffffffffffffffffffffffff7
+:10b96000ffffffffffffffffffffffffffffffffe7
+:10b97000ffffffffffffffffffffffffffffffffd7
+:10b98000ffffffffffffffffffffffffffffffffc7
+:10b99000ffffffffffffffffffffffffffffffffb7
+:10b9a000ffffffffffffffffffffffffffffffffa7
+:10b9b000ffffffffffffffffffffffffffffffff97
+:10b9c000ffffffffffffffffffffffffffffffff87
+:10b9d000ffffffffffffffffffffffffffffffff77
+:10b9e000ffffffffffffffffffffffffffffffff67
+:10b9f000ffffffffffffffffffffffffffffffff57
+:10ba0000ffffffffffffffffffffffffffffffff46
+:10ba1000ffffffffffffffffffffffffffffffff36
+:10ba2000ffffffffffffffffffffffffffffffff26
+:10ba3000ffffffffffffffffffffffffffffffff16
+:10ba4000ffffffffffffffffffffffffffffffff06
+:10ba5000fffffffffffffffffffffffffffffffff6
+:10ba6000ffffffffffffffffffffffffffffffffe6
+:10ba7000ffffffffffffffffffffffffffffffffd6
+:10ba8000ffffffffffffffffffffffffffffffffc6
+:10ba9000ffffffffffffffffffffffffffffffffb6
+:10baa000ffffffffffffffffffffffffffffffffa6
+:10bab000ffffffffffffffffffffffffffffffff96
+:10bac000ffffffffffffffffffffffffffffffff86
+:10bad000ffffffffffffffffffffffffffffffff76
+:10bae000ffffffffffffffffffffffffffffffff66
+:10baf000ffffffffffffffffffffffffffffffff56
+:10bb0000ffffffffffffffffffffffffffffffff45
+:10bb1000ffffffffffffffffffffffffffffffff35
+:10bb2000ffffffffffffffffffffffffffffffff25
+:10bb3000ffffffffffffffffffffffffffffffff15
+:10bb4000ffffffffffffffffffffffffffffffff05
+:10bb5000fffffffffffffffffffffffffffffffff5
+:10bb6000ffffffffffffffffffffffffffffffffe5
+:10bb7000ffffffffffffffffffffffffffffffffd5
+:10bb8000ffffffffffffffffffffffffffffffffc5
+:10bb9000ffffffffffffffffffffffffffffffffb5
+:10bba000ffffffffffffffffffffffffffffffffa5
+:10bbb000ffffffffffffffffffffffffffffffff95
+:10bbc000ffffffffffffffffffffffffffffffff85
+:10bbd000ffffffffffffffffffffffffffffffff75
+:10bbe000ffffffffffffffffffffffffffffffff65
+:10bbf000ffffffffffffffffffffffffffffffff55
+:10bc0000ffffffffffffffffffffffffffffffff44
+:10bc1000ffffffffffffffffffffffffffffffff34
+:10bc2000ffffffffffffffffffffffffffffffff24
+:10bc3000ffffffffffffffffffffffffffffffff14
+:10bc4000ffffffffffffffffffffffffffffffff04
+:10bc5000fffffffffffffffffffffffffffffffff4
+:10bc6000ffffffffffffffffffffffffffffffffe4
+:10bc7000ffffffffffffffffffffffffffffffffd4
+:10bc8000ffffffffffffffffffffffffffffffffc4
+:10bc9000ffffffffffffffffffffffffffffffffb4
+:10bca000ffffffffffffffffffffffffffffffffa4
+:10bcb000ffffffffffffffffffffffffffffffff94
+:10bcc000ffffffffffffffffffffffffffffffff84
+:10bcd000ffffffffffffffffffffffffffffffff74
+:10bce000ffffffffffffffffffffffffffffffff64
+:10bcf000ffffffffffffffffffffffffffffffff54
+:10bd0000ffffffffffffffffffffffffffffffff43
+:10bd1000ffffffffffffffffffffffffffffffff33
+:10bd2000ffffffffffffffffffffffffffffffff23
+:10bd3000ffffffffffffffffffffffffffffffff13
+:10bd4000ffffffffffffffffffffffffffffffff03
+:10bd5000fffffffffffffffffffffffffffffffff3
+:10bd6000ffffffffffffffffffffffffffffffffe3
+:10bd7000ffffffffffffffffffffffffffffffffd3
+:10bd8000ffffffffffffffffffffffffffffffffc3
+:10bd9000ffffffffffffffffffffffffffffffffb3
+:10bda000ffffffffffffffffffffffffffffffffa3
+:10bdb000ffffffffffffffffffffffffffffffff93
+:10bdc000ffffffffffffffffffffffffffffffff83
+:10bdd000ffffffffffffffffffffffffffffffff73
+:10bde000ffffffffffffffffffffffffffffffff63
+:10bdf000ffffffffffffffffffffffffffffffff53
+:10be0000ffffffffffffffffffffffffffffffff42
+:10be1000ffffffffffffffffffffffffffffffff32
+:10be2000ffffffffffffffffffffffffffffffff22
+:10be3000ffffffffffffffffffffffffffffffff12
+:10be4000ffffffffffffffffffffffffffffffff02
+:10be5000fffffffffffffffffffffffffffffffff2
+:10be6000ffffffffffffffffffffffffffffffffe2
+:10be7000ffffffffffffffffffffffffffffffffd2
+:10be8000ffffffffffffffffffffffffffffffffc2
+:10be9000ffffffffffffffffffffffffffffffffb2
+:10bea000ffffffffffffffffffffffffffffffffa2
+:10beb000ffffffffffffffffffffffffffffffff92
+:10bec000ffffffffffffffffffffffffffffffff82
+:10bed000ffffffffffffffffffffffffffffffff72
+:10bee000ffffffffffffffffffffffffffffffff62
+:10bef000ffffffffffffffffffffffffffffffff52
+:10bf0000ffffffffffffffffffffffffffffffff41
+:10bf1000ffffffffffffffffffffffffffffffff31
+:10bf2000ffffffffffffffffffffffffffffffff21
+:10bf3000ffffffffffffffffffffffffffffffff11
+:10bf4000ffffffffffffffffffffffffffffffff01
+:10bf5000fffffffffffffffffffffffffffffffff1
+:10bf6000ffffffffffffffffffffffffffffffffe1
+:10bf7000ffffffffffffffffffffffffffffffffd1
+:10bf8000ffffffffffffffffffffffffffffffffc1
+:10bf9000ffffffffffffffffffffffffffffffffb1
+:10bfa000ffffffffffffffffffffffffffffffffa1
+:10bfb000ffffffffffffffffffffffffffffffff91
+:10bfc000ffffffffffffffffffffffffffffffff81
+:10bfd000ffffffffffffffffffffffffffffffff71
+:10bfe000ffffffffffffffffffffffffffffffff61
+:10bff000ffffffffffffffffffffffffffffffff51
+:10c00000ffffffffffffffffffffffffffffffff40
+:10c01000ffffffffffffffffffffffffffffffff30
+:10c02000ffffffffffffffffffffffffffffffff20
+:10c03000ffffffffffffffffffffffffffffffff10
+:10c04000ffffffffffffffffffffffffffffffff00
+:10c05000fffffffffffffffffffffffffffffffff0
+:10c06000ffffffffffffffffffffffffffffffffe0
+:10c07000ffffffffffffffffffffffffffffffffd0
+:10c08000ffffffffffffffffffffffffffffffffc0
+:10c09000ffffffffffffffffffffffffffffffffb0
+:10c0a000ffffffffffffffffffffffffffffffffa0
+:10c0b000ffffffffffffffffffffffffffffffff90
+:10c0c000ffffffffffffffffffffffffffffffff80
+:10c0d000ffffffffffffffffffffffffffffffff70
+:10c0e000ffffffffffffffffffffffffffffffff60
+:10c0f000ffffffffffffffffffffffffffffffff50
+:10c10000ffffffffffffffffffffffffffffffff3f
+:10c11000ffffffffffffffffffffffffffffffff2f
+:10c12000ffffffffffffffffffffffffffffffff1f
+:10c13000ffffffffffffffffffffffffffffffff0f
+:10c14000ffffffffffffffffffffffffffffffffff
+:10c15000ffffffffffffffffffffffffffffffffef
+:10c16000ffffffffffffffffffffffffffffffffdf
+:10c17000ffffffffffffffffffffffffffffffffcf
+:10c18000ffffffffffffffffffffffffffffffffbf
+:10c19000ffffffffffffffffffffffffffffffffaf
+:10c1a000ffffffffffffffffffffffffffffffff9f
+:10c1b000ffffffffffffffffffffffffffffffff8f
+:10c1c000ffffffffffffffffffffffffffffffff7f
+:10c1d000ffffffffffffffffffffffffffffffff6f
+:10c1e000ffffffffffffffffffffffffffffffff5f
+:10c1f000ffffffffffffffffffffffffffffffff4f
+:10c20000ffffffffffffffffffffffffffffffff3e
+:10c21000ffffffffffffffffffffffffffffffff2e
+:10c22000ffffffffffffffffffffffffffffffff1e
+:10c23000ffffffffffffffffffffffffffffffff0e
+:10c24000fffffffffffffffffffffffffffffffffe
+:10c25000ffffffffffffffffffffffffffffffffee
+:10c26000ffffffffffffffffffffffffffffffffde
+:10c27000ffffffffffffffffffffffffffffffffce
+:10c28000ffffffffffffffffffffffffffffffffbe
+:10c29000ffffffffffffffffffffffffffffffffae
+:10c2a000ffffffffffffffffffffffffffffffff9e
+:10c2b000ffffffffffffffffffffffffffffffff8e
+:10c2c000ffffffffffffffffffffffffffffffff7e
+:10c2d000ffffffffffffffffffffffffffffffff6e
+:10c2e000ffffffffffffffffffffffffffffffff5e
+:10c2f000ffffffffffffffffffffffffffffffff4e
+:10c30000ffffffffffffffffffffffffffffffff3d
+:10c31000ffffffffffffffffffffffffffffffff2d
+:10c32000ffffffffffffffffffffffffffffffff1d
+:10c33000ffffffffffffffffffffffffffffffff0d
+:10c34000fffffffffffffffffffffffffffffffffd
+:10c35000ffffffffffffffffffffffffffffffffed
+:10c36000ffffffffffffffffffffffffffffffffdd
+:10c37000ffffffffffffffffffffffffffffffffcd
+:10c38000ffffffffffffffffffffffffffffffffbd
+:10c39000ffffffffffffffffffffffffffffffffad
+:10c3a000ffffffffffffffffffffffffffffffff9d
+:10c3b000ffffffffffffffffffffffffffffffff8d
+:10c3c000ffffffffffffffffffffffffffffffff7d
+:10c3d000ffffffffffffffffffffffffffffffff6d
+:10c3e000ffffffffffffffffffffffffffffffff5d
+:10c3f000ffffffffffffffffffffffffffffffff4d
+:10c40000ffffffffffffffffffffffffffffffff3c
+:10c41000ffffffffffffffffffffffffffffffff2c
+:10c42000ffffffffffffffffffffffffffffffff1c
+:10c43000ffffffffffffffffffffffffffffffff0c
+:10c44000fffffffffffffffffffffffffffffffffc
+:10c45000ffffffffffffffffffffffffffffffffec
+:10c46000ffffffffffffffffffffffffffffffffdc
+:10c47000ffffffffffffffffffffffffffffffffcc
+:10c48000ffffffffffffffffffffffffffffffffbc
+:10c49000ffffffffffffffffffffffffffffffffac
+:10c4a000ffffffffffffffffffffffffffffffff9c
+:10c4b000ffffffffffffffffffffffffffffffff8c
+:10c4c000ffffffffffffffffffffffffffffffff7c
+:10c4d000ffffffffffffffffffffffffffffffff6c
+:10c4e000ffffffffffffffffffffffffffffffff5c
+:10c4f000ffffffffffffffffffffffffffffffff4c
+:10c50000ffffffffffffffffffffffffffffffff3b
+:10c51000ffffffffffffffffffffffffffffffff2b
+:10c52000ffffffffffffffffffffffffffffffff1b
+:10c53000ffffffffffffffffffffffffffffffff0b
+:10c54000fffffffffffffffffffffffffffffffffb
+:10c55000ffffffffffffffffffffffffffffffffeb
+:10c56000ffffffffffffffffffffffffffffffffdb
+:10c57000ffffffffffffffffffffffffffffffffcb
+:10c58000ffffffffffffffffffffffffffffffffbb
+:10c59000ffffffffffffffffffffffffffffffffab
+:10c5a000ffffffffffffffffffffffffffffffff9b
+:10c5b000ffffffffffffffffffffffffffffffff8b
+:10c5c000ffffffffffffffffffffffffffffffff7b
+:10c5d000ffffffffffffffffffffffffffffffff6b
+:10c5e000ffffffffffffffffffffffffffffffff5b
+:10c5f000ffffffffffffffffffffffffffffffff4b
+:10c60000ffffffffffffffffffffffffffffffff3a
+:10c61000ffffffffffffffffffffffffffffffff2a
+:10c62000ffffffffffffffffffffffffffffffff1a
+:10c63000ffffffffffffffffffffffffffffffff0a
+:10c64000fffffffffffffffffffffffffffffffffa
+:10c65000ffffffffffffffffffffffffffffffffea
+:10c66000ffffffffffffffffffffffffffffffffda
+:10c67000ffffffffffffffffffffffffffffffffca
+:10c68000ffffffffffffffffffffffffffffffffba
+:10c69000ffffffffffffffffffffffffffffffffaa
+:10c6a000ffffffffffffffffffffffffffffffff9a
+:10c6b000ffffffffffffffffffffffffffffffff8a
+:10c6c000ffffffffffffffffffffffffffffffff7a
+:10c6d000ffffffffffffffffffffffffffffffff6a
+:10c6e000ffffffffffffffffffffffffffffffff5a
+:10c6f000ffffffffffffffffffffffffffffffff4a
+:10c70000ffffffffffffffffffffffffffffffff39
+:10c71000ffffffffffffffffffffffffffffffff29
+:10c72000ffffffffffffffffffffffffffffffff19
+:10c73000ffffffffffffffffffffffffffffffff09
+:10c74000fffffffffffffffffffffffffffffffff9
+:10c75000ffffffffffffffffffffffffffffffffe9
+:10c76000ffffffffffffffffffffffffffffffffd9
+:10c77000ffffffffffffffffffffffffffffffffc9
+:10c78000ffffffffffffffffffffffffffffffffb9
+:10c79000ffffffffffffffffffffffffffffffffa9
+:10c7a000ffffffffffffffffffffffffffffffff99
+:10c7b000ffffffffffffffffffffffffffffffff89
+:10c7c000ffffffffffffffffffffffffffffffff79
+:10c7d000ffffffffffffffffffffffffffffffff69
+:10c7e000ffffffffffffffffffffffffffffffff59
+:10c7f000ffffffffffffffffffffffffffffffff49
+:10c80000ffffffffffffffffffffffffffffffff38
+:10c81000ffffffffffffffffffffffffffffffff28
+:10c82000ffffffffffffffffffffffffffffffff18
+:10c83000ffffffffffffffffffffffffffffffff08
+:10c84000fffffffffffffffffffffffffffffffff8
+:10c85000ffffffffffffffffffffffffffffffffe8
+:10c86000ffffffffffffffffffffffffffffffffd8
+:10c87000ffffffffffffffffffffffffffffffffc8
+:10c88000ffffffffffffffffffffffffffffffffb8
+:10c89000ffffffffffffffffffffffffffffffffa8
+:10c8a000ffffffffffffffffffffffffffffffff98
+:10c8b000ffffffffffffffffffffffffffffffff88
+:10c8c000ffffffffffffffffffffffffffffffff78
+:10c8d000ffffffffffffffffffffffffffffffff68
+:10c8e000ffffffffffffffffffffffffffffffff58
+:10c8f000ffffffffffffffffffffffffffffffff48
+:10c90000ffffffffffffffffffffffffffffffff37
+:10c91000ffffffffffffffffffffffffffffffff27
+:10c92000ffffffffffffffffffffffffffffffff17
+:10c93000ffffffffffffffffffffffffffffffff07
+:10c94000fffffffffffffffffffffffffffffffff7
+:10c95000ffffffffffffffffffffffffffffffffe7
+:10c96000ffffffffffffffffffffffffffffffffd7
+:10c97000ffffffffffffffffffffffffffffffffc7
+:10c98000ffffffffffffffffffffffffffffffffb7
+:10c99000ffffffffffffffffffffffffffffffffa7
+:10c9a000ffffffffffffffffffffffffffffffff97
+:10c9b000ffffffffffffffffffffffffffffffff87
+:10c9c000ffffffffffffffffffffffffffffffff77
+:10c9d000ffffffffffffffffffffffffffffffff67
+:10c9e000ffffffffffffffffffffffffffffffff57
+:10c9f000ffffffffffffffffffffffffffffffff47
+:10ca0000ffffffffffffffffffffffffffffffff36
+:10ca1000ffffffffffffffffffffffffffffffff26
+:10ca2000ffffffffffffffffffffffffffffffff16
+:10ca3000ffffffffffffffffffffffffffffffff06
+:10ca4000fffffffffffffffffffffffffffffffff6
+:10ca5000ffffffffffffffffffffffffffffffffe6
+:10ca6000ffffffffffffffffffffffffffffffffd6
+:10ca7000ffffffffffffffffffffffffffffffffc6
+:10ca8000ffffffffffffffffffffffffffffffffb6
+:10ca9000ffffffffffffffffffffffffffffffffa6
+:10caa000ffffffffffffffffffffffffffffffff96
+:10cab000ffffffffffffffffffffffffffffffff86
+:10cac000ffffffffffffffffffffffffffffffff76
+:10cad000ffffffffffffffffffffffffffffffff66
+:10cae000ffffffffffffffffffffffffffffffff56
+:10caf000ffffffffffffffffffffffffffffffff46
+:10cb0000ffffffffffffffffffffffffffffffff35
+:10cb1000ffffffffffffffffffffffffffffffff25
+:10cb2000ffffffffffffffffffffffffffffffff15
+:10cb3000ffffffffffffffffffffffffffffffff05
+:10cb4000fffffffffffffffffffffffffffffffff5
+:10cb5000ffffffffffffffffffffffffffffffffe5
+:10cb6000ffffffffffffffffffffffffffffffffd5
+:10cb7000ffffffffffffffffffffffffffffffffc5
+:10cb8000ffffffffffffffffffffffffffffffffb5
+:10cb9000ffffffffffffffffffffffffffffffffa5
+:10cba000ffffffffffffffffffffffffffffffff95
+:10cbb000ffffffffffffffffffffffffffffffff85
+:10cbc000ffffffffffffffffffffffffffffffff75
+:10cbd000ffffffffffffffffffffffffffffffff65
+:10cbe000ffffffffffffffffffffffffffffffff55
+:10cbf000ffffffffffffffffffffffffffffffff45
+:10cc0000ffffffffffffffffffffffffffffffff34
+:10cc1000ffffffffffffffffffffffffffffffff24
+:10cc2000ffffffffffffffffffffffffffffffff14
+:10cc3000ffffffffffffffffffffffffffffffff04
+:10cc4000fffffffffffffffffffffffffffffffff4
+:10cc5000ffffffffffffffffffffffffffffffffe4
+:10cc6000ffffffffffffffffffffffffffffffffd4
+:10cc7000ffffffffffffffffffffffffffffffffc4
+:10cc8000ffffffffffffffffffffffffffffffffb4
+:10cc9000ffffffffffffffffffffffffffffffffa4
+:10cca000ffffffffffffffffffffffffffffffff94
+:10ccb000ffffffffffffffffffffffffffffffff84
+:10ccc000ffffffffffffffffffffffffffffffff74
+:10ccd000ffffffffffffffffffffffffffffffff64
+:10cce000ffffffffffffffffffffffffffffffff54
+:10ccf000ffffffffffffffffffffffffffffffff44
+:10cd0000ffffffffffffffffffffffffffffffff33
+:10cd1000ffffffffffffffffffffffffffffffff23
+:10cd2000ffffffffffffffffffffffffffffffff13
+:10cd3000ffffffffffffffffffffffffffffffff03
+:10cd4000fffffffffffffffffffffffffffffffff3
+:10cd5000ffffffffffffffffffffffffffffffffe3
+:10cd6000ffffffffffffffffffffffffffffffffd3
+:10cd7000ffffffffffffffffffffffffffffffffc3
+:10cd8000ffffffffffffffffffffffffffffffffb3
+:10cd9000ffffffffffffffffffffffffffffffffa3
+:10cda000ffffffffffffffffffffffffffffffff93
+:10cdb000ffffffffffffffffffffffffffffffff83
+:10cdc000ffffffffffffffffffffffffffffffff73
+:10cdd000ffffffffffffffffffffffffffffffff63
+:10cde000ffffffffffffffffffffffffffffffff53
+:10cdf000ffffffffffffffffffffffffffffffff43
+:10ce0000ffffffffffffffffffffffffffffffff32
+:10ce1000ffffffffffffffffffffffffffffffff22
+:10ce2000ffffffffffffffffffffffffffffffff12
+:10ce3000ffffffffffffffffffffffffffffffff02
+:10ce4000fffffffffffffffffffffffffffffffff2
+:10ce5000ffffffffffffffffffffffffffffffffe2
+:10ce6000ffffffffffffffffffffffffffffffffd2
+:10ce7000ffffffffffffffffffffffffffffffffc2
+:10ce8000ffffffffffffffffffffffffffffffffb2
+:10ce9000ffffffffffffffffffffffffffffffffa2
+:10cea000ffffffffffffffffffffffffffffffff92
+:10ceb000ffffffffffffffffffffffffffffffff82
+:10cec000ffffffffffffffffffffffffffffffff72
+:10ced000ffffffffffffffffffffffffffffffff62
+:10cee000ffffffffffffffffffffffffffffffff52
+:10cef000ffffffffffffffffffffffffffffffff42
+:10cf0000ffffffffffffffffffffffffffffffff31
+:10cf1000ffffffffffffffffffffffffffffffff21
+:10cf2000ffffffffffffffffffffffffffffffff11
+:10cf3000ffffffffffffffffffffffffffffffff01
+:10cf4000fffffffffffffffffffffffffffffffff1
+:10cf5000ffffffffffffffffffffffffffffffffe1
+:10cf6000ffffffffffffffffffffffffffffffffd1
+:10cf7000ffffffffffffffffffffffffffffffffc1
+:10cf8000ffffffffffffffffffffffffffffffffb1
+:10cf9000ffffffffffffffffffffffffffffffffa1
+:10cfa000ffffffffffffffffffffffffffffffff91
+:10cfb000ffffffffffffffffffffffffffffffff81
+:10cfc000ffffffffffffffffffffffffffffffff71
+:10cfd000ffffffffffffffffffffffffffffffff61
+:10cfe000ffffffffffffffffffffffffffffffff51
+:10cff000ffffffffffffffffffffffffffffffff41
+:10d00000ffffffffffffffffffffffffffffffff30
+:10d01000ffffffffffffffffffffffffffffffff20
+:10d02000ffffffffffffffffffffffffffffffff10
+:10d03000ffffffffffffffffffffffffffffffff00
+:10d04000fffffffffffffffffffffffffffffffff0
+:10d05000ffffffffffffffffffffffffffffffffe0
+:10d06000ffffffffffffffffffffffffffffffffd0
+:10d07000ffffffffffffffffffffffffffffffffc0
+:10d08000ffffffffffffffffffffffffffffffffb0
+:10d09000ffffffffffffffffffffffffffffffffa0
+:10d0a000ffffffffffffffffffffffffffffffff90
+:10d0b000ffffffffffffffffffffffffffffffff80
+:10d0c000ffffffffffffffffffffffffffffffff70
+:10d0d000ffffffffffffffffffffffffffffffff60
+:10d0e000ffffffffffffffffffffffffffffffff50
+:10d0f000ffffffffffffffffffffffffffffffff40
+:10d10000ffffffffffffffffffffffffffffffff2f
+:10d11000ffffffffffffffffffffffffffffffff1f
+:10d12000ffffffffffffffffffffffffffffffff0f
+:10d13000ffffffffffffffffffffffffffffffffff
+:10d14000ffffffffffffffffffffffffffffffffef
+:10d15000ffffffffffffffffffffffffffffffffdf
+:10d16000ffffffffffffffffffffffffffffffffcf
+:10d17000ffffffffffffffffffffffffffffffffbf
+:10d18000ffffffffffffffffffffffffffffffffaf
+:10d19000ffffffffffffffffffffffffffffffff9f
+:10d1a000ffffffffffffffffffffffffffffffff8f
+:10d1b000ffffffffffffffffffffffffffffffff7f
+:10d1c000ffffffffffffffffffffffffffffffff6f
+:10d1d000ffffffffffffffffffffffffffffffff5f
+:10d1e000ffffffffffffffffffffffffffffffff4f
+:10d1f000ffffffffffffffffffffffffffffffff3f
+:10d20000ffffffffffffffffffffffffffffffff2e
+:10d21000ffffffffffffffffffffffffffffffff1e
+:10d22000ffffffffffffffffffffffffffffffff0e
+:10d23000fffffffffffffffffffffffffffffffffe
+:10d24000ffffffffffffffffffffffffffffffffee
+:10d25000ffffffffffffffffffffffffffffffffde
+:10d26000ffffffffffffffffffffffffffffffffce
+:10d27000ffffffffffffffffffffffffffffffffbe
+:10d28000ffffffffffffffffffffffffffffffffae
+:10d29000ffffffffffffffffffffffffffffffff9e
+:10d2a000ffffffffffffffffffffffffffffffff8e
+:10d2b000ffffffffffffffffffffffffffffffff7e
+:10d2c000ffffffffffffffffffffffffffffffff6e
+:10d2d000ffffffffffffffffffffffffffffffff5e
+:10d2e000ffffffffffffffffffffffffffffffff4e
+:10d2f000ffffffffffffffffffffffffffffffff3e
+:10d30000ffffffffffffffffffffffffffffffff2d
+:10d31000ffffffffffffffffffffffffffffffff1d
+:10d32000ffffffffffffffffffffffffffffffff0d
+:10d33000fffffffffffffffffffffffffffffffffd
+:10d34000ffffffffffffffffffffffffffffffffed
+:10d35000ffffffffffffffffffffffffffffffffdd
+:10d36000ffffffffffffffffffffffffffffffffcd
+:10d37000ffffffffffffffffffffffffffffffffbd
+:10d38000ffffffffffffffffffffffffffffffffad
+:10d39000ffffffffffffffffffffffffffffffff9d
+:10d3a000ffffffffffffffffffffffffffffffff8d
+:10d3b000ffffffffffffffffffffffffffffffff7d
+:10d3c000ffffffffffffffffffffffffffffffff6d
+:10d3d000ffffffffffffffffffffffffffffffff5d
+:10d3e000ffffffffffffffffffffffffffffffff4d
+:10d3f000ffffffffffffffffffffffffffffffff3d
+:10d40000ffffffffffffffffffffffffffffffff2c
+:10d41000ffffffffffffffffffffffffffffffff1c
+:10d42000ffffffffffffffffffffffffffffffff0c
+:10d43000fffffffffffffffffffffffffffffffffc
+:10d44000ffffffffffffffffffffffffffffffffec
+:10d45000ffffffffffffffffffffffffffffffffdc
+:10d46000ffffffffffffffffffffffffffffffffcc
+:10d47000ffffffffffffffffffffffffffffffffbc
+:10d48000ffffffffffffffffffffffffffffffffac
+:10d49000ffffffffffffffffffffffffffffffff9c
+:10d4a000ffffffffffffffffffffffffffffffff8c
+:10d4b000ffffffffffffffffffffffffffffffff7c
+:10d4c000ffffffffffffffffffffffffffffffff6c
+:10d4d000ffffffffffffffffffffffffffffffff5c
+:10d4e000ffffffffffffffffffffffffffffffff4c
+:10d4f000ffffffffffffffffffffffffffffffff3c
+:10d50000ffffffffffffffffffffffffffffffff2b
+:10d51000ffffffffffffffffffffffffffffffff1b
+:10d52000ffffffffffffffffffffffffffffffff0b
+:10d53000fffffffffffffffffffffffffffffffffb
+:10d54000ffffffffffffffffffffffffffffffffeb
+:10d55000ffffffffffffffffffffffffffffffffdb
+:10d56000ffffffffffffffffffffffffffffffffcb
+:10d57000ffffffffffffffffffffffffffffffffbb
+:10d58000ffffffffffffffffffffffffffffffffab
+:10d59000ffffffffffffffffffffffffffffffff9b
+:10d5a000ffffffffffffffffffffffffffffffff8b
+:10d5b000ffffffffffffffffffffffffffffffff7b
+:10d5c000ffffffffffffffffffffffffffffffff6b
+:10d5d000ffffffffffffffffffffffffffffffff5b
+:10d5e000ffffffffffffffffffffffffffffffff4b
+:10d5f000ffffffffffffffffffffffffffffffff3b
+:10d60000ffffffffffffffffffffffffffffffff2a
+:10d61000ffffffffffffffffffffffffffffffff1a
+:10d62000ffffffffffffffffffffffffffffffff0a
+:10d63000fffffffffffffffffffffffffffffffffa
+:10d64000ffffffffffffffffffffffffffffffffea
+:10d65000ffffffffffffffffffffffffffffffffda
+:10d66000ffffffffffffffffffffffffffffffffca
+:10d67000ffffffffffffffffffffffffffffffffba
+:10d68000ffffffffffffffffffffffffffffffffaa
+:10d69000ffffffffffffffffffffffffffffffff9a
+:10d6a000ffffffffffffffffffffffffffffffff8a
+:10d6b000ffffffffffffffffffffffffffffffff7a
+:10d6c000ffffffffffffffffffffffffffffffff6a
+:10d6d000ffffffffffffffffffffffffffffffff5a
+:10d6e000ffffffffffffffffffffffffffffffff4a
+:10d6f000ffffffffffffffffffffffffffffffff3a
+:10d70000ffffffffffffffffffffffffffffffff29
+:10d71000ffffffffffffffffffffffffffffffff19
+:10d72000ffffffffffffffffffffffffffffffff09
+:10d73000fffffffffffffffffffffffffffffffff9
+:10d74000ffffffffffffffffffffffffffffffffe9
+:10d75000ffffffffffffffffffffffffffffffffd9
+:10d76000ffffffffffffffffffffffffffffffffc9
+:10d77000ffffffffffffffffffffffffffffffffb9
+:10d78000ffffffffffffffffffffffffffffffffa9
+:10d79000ffffffffffffffffffffffffffffffff99
+:10d7a000ffffffffffffffffffffffffffffffff89
+:10d7b000ffffffffffffffffffffffffffffffff79
+:10d7c000ffffffffffffffffffffffffffffffff69
+:10d7d000ffffffffffffffffffffffffffffffff59
+:10d7e000ffffffffffffffffffffffffffffffff49
+:10d7f000ffffffffffffffffffffffffffffffff39
+:10d80000ffffffffffffffffffffffffffffffff28
+:10d81000ffffffffffffffffffffffffffffffff18
+:10d82000ffffffffffffffffffffffffffffffff08
+:10d83000fffffffffffffffffffffffffffffffff8
+:10d84000ffffffffffffffffffffffffffffffffe8
+:10d85000ffffffffffffffffffffffffffffffffd8
+:10d86000ffffffffffffffffffffffffffffffffc8
+:10d87000ffffffffffffffffffffffffffffffffb8
+:10d88000ffffffffffffffffffffffffffffffffa8
+:10d89000ffffffffffffffffffffffffffffffff98
+:10d8a000ffffffffffffffffffffffffffffffff88
+:10d8b000ffffffffffffffffffffffffffffffff78
+:10d8c000ffffffffffffffffffffffffffffffff68
+:10d8d000ffffffffffffffffffffffffffffffff58
+:10d8e000ffffffffffffffffffffffffffffffff48
+:10d8f000ffffffffffffffffffffffffffffffff38
+:10d90000ffffffffffffffffffffffffffffffff27
+:10d91000ffffffffffffffffffffffffffffffff17
+:10d92000ffffffffffffffffffffffffffffffff07
+:10d93000fffffffffffffffffffffffffffffffff7
+:10d94000ffffffffffffffffffffffffffffffffe7
+:10d95000ffffffffffffffffffffffffffffffffd7
+:10d96000ffffffffffffffffffffffffffffffffc7
+:10d97000ffffffffffffffffffffffffffffffffb7
+:10d98000ffffffffffffffffffffffffffffffffa7
+:10d99000ffffffffffffffffffffffffffffffff97
+:10d9a000ffffffffffffffffffffffffffffffff87
+:10d9b000ffffffffffffffffffffffffffffffff77
+:10d9c000ffffffffffffffffffffffffffffffff67
+:10d9d000ffffffffffffffffffffffffffffffff57
+:10d9e000ffffffffffffffffffffffffffffffff47
+:10d9f000ffffffffffffffffffffffffffffffff37
+:10da0000ffffffffffffffffffffffffffffffff26
+:10da1000ffffffffffffffffffffffffffffffff16
+:10da2000ffffffffffffffffffffffffffffffff06
+:10da3000fffffffffffffffffffffffffffffffff6
+:10da4000ffffffffffffffffffffffffffffffffe6
+:10da5000ffffffffffffffffffffffffffffffffd6
+:10da6000ffffffffffffffffffffffffffffffffc6
+:10da7000ffffffffffffffffffffffffffffffffb6
+:10da8000ffffffffffffffffffffffffffffffffa6
+:10da9000ffffffffffffffffffffffffffffffff96
+:10daa000ffffffffffffffffffffffffffffffff86
+:10dab000ffffffffffffffffffffffffffffffff76
+:10dac000ffffffffffffffffffffffffffffffff66
+:10dad000ffffffffffffffffffffffffffffffff56
+:10dae000ffffffffffffffffffffffffffffffff46
+:10daf000ffffffffffffffffffffffffffffffff36
+:10db0000ffffffffffffffffffffffffffffffff25
+:10db1000ffffffffffffffffffffffffffffffff15
+:10db2000ffffffffffffffffffffffffffffffff05
+:10db3000fffffffffffffffffffffffffffffffff5
+:10db4000ffffffffffffffffffffffffffffffffe5
+:10db5000ffffffffffffffffffffffffffffffffd5
+:10db6000ffffffffffffffffffffffffffffffffc5
+:10db7000ffffffffffffffffffffffffffffffffb5
+:10db8000ffffffffffffffffffffffffffffffffa5
+:10db9000ffffffffffffffffffffffffffffffff95
+:10dba000ffffffffffffffffffffffffffffffff85
+:10dbb000ffffffffffffffffffffffffffffffff75
+:10dbc000ffffffffffffffffffffffffffffffff65
+:10dbd000ffffffffffffffffffffffffffffffff55
+:10dbe000ffffffffffffffffffffffffffffffff45
+:10dbf000ffffffffffffffffffffffffffffffff35
+:10dc0000ffffffffffffffffffffffffffffffff24
+:10dc1000ffffffffffffffffffffffffffffffff14
+:10dc2000ffffffffffffffffffffffffffffffff04
+:10dc3000fffffffffffffffffffffffffffffffff4
+:10dc4000ffffffffffffffffffffffffffffffffe4
+:10dc5000ffffffffffffffffffffffffffffffffd4
+:10dc6000ffffffffffffffffffffffffffffffffc4
+:10dc7000ffffffffffffffffffffffffffffffffb4
+:10dc8000ffffffffffffffffffffffffffffffffa4
+:10dc9000ffffffffffffffffffffffffffffffff94
+:10dca000ffffffffffffffffffffffffffffffff84
+:10dcb000ffffffffffffffffffffffffffffffff74
+:10dcc000ffffffffffffffffffffffffffffffff64
+:10dcd000ffffffffffffffffffffffffffffffff54
+:10dce000ffffffffffffffffffffffffffffffff44
+:10dcf000ffffffffffffffffffffffffffffffff34
+:10dd0000ffffffffffffffffffffffffffffffff23
+:10dd1000ffffffffffffffffffffffffffffffff13
+:10dd2000ffffffffffffffffffffffffffffffff03
+:10dd3000fffffffffffffffffffffffffffffffff3
+:10dd4000ffffffffffffffffffffffffffffffffe3
+:10dd5000ffffffffffffffffffffffffffffffffd3
+:10dd6000ffffffffffffffffffffffffffffffffc3
+:10dd7000ffffffffffffffffffffffffffffffffb3
+:10dd8000ffffffffffffffffffffffffffffffffa3
+:10dd9000ffffffffffffffffffffffffffffffff93
+:10dda000ffffffffffffffffffffffffffffffff83
+:10ddb000ffffffffffffffffffffffffffffffff73
+:10ddc000ffffffffffffffffffffffffffffffff63
+:10ddd000ffffffffffffffffffffffffffffffff53
+:10dde000ffffffffffffffffffffffffffffffff43
+:10ddf000ffffffffffffffffffffffffffffffff33
+:10de0000ffffffffffffffffffffffffffffffff22
+:10de1000ffffffffffffffffffffffffffffffff12
+:10de2000ffffffffffffffffffffffffffffffff02
+:10de3000fffffffffffffffffffffffffffffffff2
+:10de4000ffffffffffffffffffffffffffffffffe2
+:10de5000ffffffffffffffffffffffffffffffffd2
+:10de6000ffffffffffffffffffffffffffffffffc2
+:10de7000ffffffffffffffffffffffffffffffffb2
+:10de8000ffffffffffffffffffffffffffffffffa2
+:10de9000ffffffffffffffffffffffffffffffff92
+:10dea000ffffffffffffffffffffffffffffffff82
+:10deb000ffffffffffffffffffffffffffffffff72
+:10dec000ffffffffffffffffffffffffffffffff62
+:10ded000ffffffffffffffffffffffffffffffff52
+:10dee000ffffffffffffffffffffffffffffffff42
+:10def000ffffffffffffffffffffffffffffffff32
+:10df0000ffffffffffffffffffffffffffffffff21
+:10df1000ffffffffffffffffffffffffffffffff11
+:10df2000ffffffffffffffffffffffffffffffff01
+:10df3000fffffffffffffffffffffffffffffffff1
+:10df4000ffffffffffffffffffffffffffffffffe1
+:10df5000ffffffffffffffffffffffffffffffffd1
+:10df6000ffffffffffffffffffffffffffffffffc1
+:10df7000ffffffffffffffffffffffffffffffffb1
+:10df8000ffffffffffffffffffffffffffffffffa1
+:10df9000ffffffffffffffffffffffffffffffff91
+:10dfa000ffffffffffffffffffffffffffffffff81
+:10dfb000ffffffffffffffffffffffffffffffff71
+:10dfc000ffffffffffffffffffffffffffffffff61
+:10dfd000ffffffffffffffffffffffffffffffff51
+:10dfe000ffffffffffffffffffffffffffffffff41
+:10dff000ffffffffffffffffffffffffffffffff31
+:10e00000ffffffffffffffffffffffffffffffff20
+:10e01000ffffffffffffffffffffffffffffffff10
+:10e02000ffffffffffffffffffffffffffffffff00
+:10e03000fffffffffffffffffffffffffffffffff0
+:10e04000ffffffffffffffffffffffffffffffffe0
+:10e05000ffffffffffffffffffffffffffffffffd0
+:10e06000ffffffffffffffffffffffffffffffffc0
+:10e07000ffffffffffffffffffffffffffffffffb0
+:10e08000ffffffffffffffffffffffffffffffffa0
+:10e09000ffffffffffffffffffffffffffffffff90
+:10e0a000ffffffffffffffffffffffffffffffff80
+:10e0b000ffffffffffffffffffffffffffffffff70
+:10e0c000ffffffffffffffffffffffffffffffff60
+:10e0d000ffffffffffffffffffffffffffffffff50
+:10e0e000ffffffffffffffffffffffffffffffff40
+:10e0f000ffffffffffffffffffffffffffffffff30
+:10e10000ffffffffffffffffffffffffffffffff1f
+:10e11000ffffffffffffffffffffffffffffffff0f
+:10e12000ffffffffffffffffffffffffffffffffff
+:10e13000ffffffffffffffffffffffffffffffffef
+:10e14000ffffffffffffffffffffffffffffffffdf
+:10e15000ffffffffffffffffffffffffffffffffcf
+:10e16000ffffffffffffffffffffffffffffffffbf
+:10e17000ffffffffffffffffffffffffffffffffaf
+:10e18000ffffffffffffffffffffffffffffffff9f
+:10e19000ffffffffffffffffffffffffffffffff8f
+:10e1a000ffffffffffffffffffffffffffffffff7f
+:10e1b000ffffffffffffffffffffffffffffffff6f
+:10e1c000ffffffffffffffffffffffffffffffff5f
+:10e1d000ffffffffffffffffffffffffffffffff4f
+:10e1e000ffffffffffffffffffffffffffffffff3f
+:10e1f000ffffffffffffffffffffffffffffffff2f
+:10e20000ffffffffffffffffffffffffffffffff1e
+:10e21000ffffffffffffffffffffffffffffffff0e
+:10e22000fffffffffffffffffffffffffffffffffe
+:10e23000ffffffffffffffffffffffffffffffffee
+:10e24000ffffffffffffffffffffffffffffffffde
+:10e25000ffffffffffffffffffffffffffffffffce
+:10e26000ffffffffffffffffffffffffffffffffbe
+:10e27000ffffffffffffffffffffffffffffffffae
+:10e28000ffffffffffffffffffffffffffffffff9e
+:10e29000ffffffffffffffffffffffffffffffff8e
+:10e2a000ffffffffffffffffffffffffffffffff7e
+:10e2b000ffffffffffffffffffffffffffffffff6e
+:10e2c000ffffffffffffffffffffffffffffffff5e
+:10e2d000ffffffffffffffffffffffffffffffff4e
+:10e2e000ffffffffffffffffffffffffffffffff3e
+:10e2f000ffffffffffffffffffffffffffffffff2e
+:10e30000ffffffffffffffffffffffffffffffff1d
+:10e31000ffffffffffffffffffffffffffffffff0d
+:10e32000fffffffffffffffffffffffffffffffffd
+:10e33000ffffffffffffffffffffffffffffffffed
+:10e34000ffffffffffffffffffffffffffffffffdd
+:10e35000ffffffffffffffffffffffffffffffffcd
+:10e36000ffffffffffffffffffffffffffffffffbd
+:10e37000ffffffffffffffffffffffffffffffffad
+:10e38000ffffffffffffffffffffffffffffffff9d
+:10e39000ffffffffffffffffffffffffffffffff8d
+:10e3a000ffffffffffffffffffffffffffffffff7d
+:10e3b000ffffffffffffffffffffffffffffffff6d
+:10e3c000ffffffffffffffffffffffffffffffff5d
+:10e3d000ffffffffffffffffffffffffffffffff4d
+:10e3e000ffffffffffffffffffffffffffffffff3d
+:10e3f000ffffffffffffffffffffffffffffffff2d
+:10e40000ffffffffffffffffffffffffffffffff1c
+:10e41000ffffffffffffffffffffffffffffffff0c
+:10e42000fffffffffffffffffffffffffffffffffc
+:10e43000ffffffffffffffffffffffffffffffffec
+:10e44000ffffffffffffffffffffffffffffffffdc
+:10e45000ffffffffffffffffffffffffffffffffcc
+:10e46000ffffffffffffffffffffffffffffffffbc
+:10e47000ffffffffffffffffffffffffffffffffac
+:10e48000ffffffffffffffffffffffffffffffff9c
+:10e49000ffffffffffffffffffffffffffffffff8c
+:10e4a000ffffffffffffffffffffffffffffffff7c
+:10e4b000ffffffffffffffffffffffffffffffff6c
+:10e4c000ffffffffffffffffffffffffffffffff5c
+:10e4d000ffffffffffffffffffffffffffffffff4c
+:10e4e000ffffffffffffffffffffffffffffffff3c
+:10e4f000ffffffffffffffffffffffffffffffff2c
+:10e50000ffffffffffffffffffffffffffffffff1b
+:10e51000ffffffffffffffffffffffffffffffff0b
+:10e52000fffffffffffffffffffffffffffffffffb
+:10e53000ffffffffffffffffffffffffffffffffeb
+:10e54000ffffffffffffffffffffffffffffffffdb
+:10e55000ffffffffffffffffffffffffffffffffcb
+:10e56000ffffffffffffffffffffffffffffffffbb
+:10e57000ffffffffffffffffffffffffffffffffab
+:10e58000ffffffffffffffffffffffffffffffff9b
+:10e59000ffffffffffffffffffffffffffffffff8b
+:10e5a000ffffffffffffffffffffffffffffffff7b
+:10e5b000ffffffffffffffffffffffffffffffff6b
+:10e5c000ffffffffffffffffffffffffffffffff5b
+:10e5d000ffffffffffffffffffffffffffffffff4b
+:10e5e000ffffffffffffffffffffffffffffffff3b
+:10e5f000ffffffffffffffffffffffffffffffff2b
+:10e60000ffffffffffffffffffffffffffffffff1a
+:10e61000ffffffffffffffffffffffffffffffff0a
+:10e62000fffffffffffffffffffffffffffffffffa
+:10e63000ffffffffffffffffffffffffffffffffea
+:10e64000ffffffffffffffffffffffffffffffffda
+:10e65000ffffffffffffffffffffffffffffffffca
+:10e66000ffffffffffffffffffffffffffffffffba
+:10e67000ffffffffffffffffffffffffffffffffaa
+:10e68000ffffffffffffffffffffffffffffffff9a
+:10e69000ffffffffffffffffffffffffffffffff8a
+:10e6a000ffffffffffffffffffffffffffffffff7a
+:10e6b000ffffffffffffffffffffffffffffffff6a
+:10e6c000ffffffffffffffffffffffffffffffff5a
+:10e6d000ffffffffffffffffffffffffffffffff4a
+:10e6e000ffffffffffffffffffffffffffffffff3a
+:10e6f000ffffffffffffffffffffffffffffffff2a
+:10e70000ffffffffffffffffffffffffffffffff19
+:10e71000ffffffffffffffffffffffffffffffff09
+:10e72000fffffffffffffffffffffffffffffffff9
+:10e73000ffffffffffffffffffffffffffffffffe9
+:10e74000ffffffffffffffffffffffffffffffffd9
+:10e75000ffffffffffffffffffffffffffffffffc9
+:10e76000ffffffffffffffffffffffffffffffffb9
+:10e77000ffffffffffffffffffffffffffffffffa9
+:10e78000ffffffffffffffffffffffffffffffff99
+:10e79000ffffffffffffffffffffffffffffffff89
+:10e7a000ffffffffffffffffffffffffffffffff79
+:10e7b000ffffffffffffffffffffffffffffffff69
+:10e7c000ffffffffffffffffffffffffffffffff59
+:10e7d000ffffffffffffffffffffffffffffffff49
+:10e7e000ffffffffffffffffffffffffffffffff39
+:10e7f000ffffffffffffffffffffffffffffffff29
+:10e80000ffffffffffffffffffffffffffffffff18
+:10e81000ffffffffffffffffffffffffffffffff08
+:10e82000fffffffffffffffffffffffffffffffff8
+:10e83000ffffffffffffffffffffffffffffffffe8
+:10e84000ffffffffffffffffffffffffffffffffd8
+:10e85000ffffffffffffffffffffffffffffffffc8
+:10e86000ffffffffffffffffffffffffffffffffb8
+:10e87000ffffffffffffffffffffffffffffffffa8
+:10e88000ffffffffffffffffffffffffffffffff98
+:10e89000ffffffffffffffffffffffffffffffff88
+:10e8a000ffffffffffffffffffffffffffffffff78
+:10e8b000ffffffffffffffffffffffffffffffff68
+:10e8c000ffffffffffffffffffffffffffffffff58
+:10e8d000ffffffffffffffffffffffffffffffff48
+:10e8e000ffffffffffffffffffffffffffffffff38
+:10e8f000ffffffffffffffffffffffffffffffff28
+:10e90000ffffffffffffffffffffffffffffffff17
+:10e91000ffffffffffffffffffffffffffffffff07
+:10e92000fffffffffffffffffffffffffffffffff7
+:10e93000ffffffffffffffffffffffffffffffffe7
+:10e94000ffffffffffffffffffffffffffffffffd7
+:10e95000ffffffffffffffffffffffffffffffffc7
+:10e96000ffffffffffffffffffffffffffffffffb7
+:10e97000ffffffffffffffffffffffffffffffffa7
+:10e98000ffffffffffffffffffffffffffffffff97
+:10e99000ffffffffffffffffffffffffffffffff87
+:10e9a000ffffffffffffffffffffffffffffffff77
+:10e9b000ffffffffffffffffffffffffffffffff67
+:10e9c000ffffffffffffffffffffffffffffffff57
+:10e9d000ffffffffffffffffffffffffffffffff47
+:10e9e000ffffffffffffffffffffffffffffffff37
+:10e9f000ffffffffffffffffffffffffffffffff27
+:10ea0000ffffffffffffffffffffffffffffffff16
+:10ea1000ffffffffffffffffffffffffffffffff06
+:10ea2000fffffffffffffffffffffffffffffffff6
+:10ea3000ffffffffffffffffffffffffffffffffe6
+:10ea4000ffffffffffffffffffffffffffffffffd6
+:10ea5000ffffffffffffffffffffffffffffffffc6
+:10ea6000ffffffffffffffffffffffffffffffffb6
+:10ea7000ffffffffffffffffffffffffffffffffa6
+:10ea8000ffffffffffffffffffffffffffffffff96
+:10ea9000ffffffffffffffffffffffffffffffff86
+:10eaa000ffffffffffffffffffffffffffffffff76
+:10eab000ffffffffffffffffffffffffffffffff66
+:10eac000ffffffffffffffffffffffffffffffff56
+:10ead000ffffffffffffffffffffffffffffffff46
+:10eae000ffffffffffffffffffffffffffffffff36
+:10eaf000ffffffffffffffffffffffffffffffff26
+:10eb0000ffffffffffffffffffffffffffffffff15
+:10eb1000ffffffffffffffffffffffffffffffff05
+:10eb2000fffffffffffffffffffffffffffffffff5
+:10eb3000ffffffffffffffffffffffffffffffffe5
+:10eb4000ffffffffffffffffffffffffffffffffd5
+:10eb5000ffffffffffffffffffffffffffffffffc5
+:10eb6000ffffffffffffffffffffffffffffffffb5
+:10eb7000ffffffffffffffffffffffffffffffffa5
+:10eb8000ffffffffffffffffffffffffffffffff95
+:10eb9000ffffffffffffffffffffffffffffffff85
+:10eba000ffffffffffffffffffffffffffffffff75
+:10ebb000ffffffffffffffffffffffffffffffff65
+:10ebc000ffffffffffffffffffffffffffffffff55
+:10ebd000ffffffffffffffffffffffffffffffff45
+:10ebe000ffffffffffffffffffffffffffffffff35
+:10ebf000ffffffffffffffffffffffffffffffff25
+:10ec0000ffffffffffffffffffffffffffffffff14
+:10ec1000ffffffffffffffffffffffffffffffff04
+:10ec2000fffffffffffffffffffffffffffffffff4
+:10ec3000ffffffffffffffffffffffffffffffffe4
+:10ec4000ffffffffffffffffffffffffffffffffd4
+:10ec5000ffffffffffffffffffffffffffffffffc4
+:10ec6000ffffffffffffffffffffffffffffffffb4
+:10ec7000ffffffffffffffffffffffffffffffffa4
+:10ec8000ffffffffffffffffffffffffffffffff94
+:10ec9000ffffffffffffffffffffffffffffffff84
+:10eca000ffffffffffffffffffffffffffffffff74
+:10ecb000ffffffffffffffffffffffffffffffff64
+:10ecc000ffffffffffffffffffffffffffffffff54
+:10ecd000ffffffffffffffffffffffffffffffff44
+:10ece000ffffffffffffffffffffffffffffffff34
+:10ecf000ffffffffffffffffffffffffffffffff24
+:10ed0000ffffffffffffffffffffffffffffffff13
+:10ed1000ffffffffffffffffffffffffffffffff03
+:10ed2000fffffffffffffffffffffffffffffffff3
+:10ed3000ffffffffffffffffffffffffffffffffe3
+:10ed4000ffffffffffffffffffffffffffffffffd3
+:10ed5000ffffffffffffffffffffffffffffffffc3
+:10ed6000ffffffffffffffffffffffffffffffffb3
+:10ed7000ffffffffffffffffffffffffffffffffa3
+:10ed8000ffffffffffffffffffffffffffffffff93
+:10ed9000ffffffffffffffffffffffffffffffff83
+:10eda000ffffffffffffffffffffffffffffffff73
+:10edb000ffffffffffffffffffffffffffffffff63
+:10edc000ffffffffffffffffffffffffffffffff53
+:10edd000ffffffffffffffffffffffffffffffff43
+:10ede000ffffffffffffffffffffffffffffffff33
+:10edf000ffffffffffffffffffffffffffffffff23
+:10ee0000ffffffffffffffffffffffffffffffff12
+:10ee1000ffffffffffffffffffffffffffffffff02
+:10ee2000fffffffffffffffffffffffffffffffff2
+:10ee3000ffffffffffffffffffffffffffffffffe2
+:10ee4000ffffffffffffffffffffffffffffffffd2
+:10ee5000ffffffffffffffffffffffffffffffffc2
+:10ee6000ffffffffffffffffffffffffffffffffb2
+:10ee7000ffffffffffffffffffffffffffffffffa2
+:10ee8000ffffffffffffffffffffffffffffffff92
+:10ee9000ffffffffffffffffffffffffffffffff82
+:10eea000ffffffffffffffffffffffffffffffff72
+:10eeb000ffffffffffffffffffffffffffffffff62
+:10eec000ffffffffffffffffffffffffffffffff52
+:10eed000ffffffffffffffffffffffffffffffff42
+:10eee000ffffffffffffffffffffffffffffffff32
+:10eef000ffffffffffffffffffffffffffffffff22
+:10ef0000ffffffffffffffffffffffffffffffff11
+:10ef1000ffffffffffffffffffffffffffffffff01
+:10ef2000fffffffffffffffffffffffffffffffff1
+:10ef3000ffffffffffffffffffffffffffffffffe1
+:10ef4000ffffffffffffffffffffffffffffffffd1
+:10ef5000ffffffffffffffffffffffffffffffffc1
+:10ef6000ffffffffffffffffffffffffffffffffb1
+:10ef7000ffffffffffffffffffffffffffffffffa1
+:10ef8000ffffffffffffffffffffffffffffffff91
+:10ef9000ffffffffffffffffffffffffffffffff81
+:10efa000ffffffffffffffffffffffffffffffff71
+:10efb000ffffffffffffffffffffffffffffffff61
+:10efc000ffffffffffffffffffffffffffffffff51
+:10efd000ffffffffffffffffffffffffffffffff41
+:10efe000ffffffffffffffffffffffffffffffff31
+:10eff000ffffffffffffffffffffffffffffffff21
+:10f00000ffffffffffffffffffffffffffffffff10
+:10f01000ffffffffffffffffffffffffffffffff00
+:10f02000fffffffffffffffffffffffffffffffff0
+:10f03000ffffffffffffffffffffffffffffffffe0
+:10f04000ffffffffffffffffffffffffffffffffd0
+:10f05000ffffffffffffffffffffffffffffffffc0
+:10f06000ffffffffffffffffffffffffffffffffb0
+:10f07000ffffffffffffffffffffffffffffffffa0
+:10f08000ffffffffffffffffffffffffffffffff90
+:10f09000ffffffffffffffffffffffffffffffff80
+:10f0a000ffffffffffffffffffffffffffffffff70
+:10f0b000ffffffffffffffffffffffffffffffff60
+:10f0c000ffffffffffffffffffffffffffffffff50
+:10f0d000ffffffffffffffffffffffffffffffff40
+:10f0e000ffffffffffffffffffffffffffffffff30
+:10f0f000ffffffffffffffffffffffffffffffff20
+:10f10000ffffffffffffffffffffffffffffffff0f
+:10f11000ffffffffffffffffffffffffffffffffff
+:10f12000ffffffffffffffffffffffffffffffffef
+:10f13000ffffffffffffffffffffffffffffffffdf
+:10f14000ffffffffffffffffffffffffffffffffcf
+:10f15000ffffffffffffffffffffffffffffffffbf
+:10f16000ffffffffffffffffffffffffffffffffaf
+:10f17000ffffffffffffffffffffffffffffffff9f
+:10f18000ffffffffffffffffffffffffffffffff8f
+:10f19000ffffffffffffffffffffffffffffffff7f
+:10f1a000ffffffffffffffffffffffffffffffff6f
+:10f1b000ffffffffffffffffffffffffffffffff5f
+:10f1c000ffffffffffffffffffffffffffffffff4f
+:10f1d000ffffffffffffffffffffffffffffffff3f
+:10f1e000ffffffffffffffffffffffffffffffff2f
+:10f1f000ffffffffffffffffffffffffffffffff1f
+:10f20000ffffffffffffffffffffffffffffffff0e
+:10f21000fffffffffffffffffffffffffffffffffe
+:10f22000ffffffffffffffffffffffffffffffffee
+:10f23000ffffffffffffffffffffffffffffffffde
+:10f24000ffffffffffffffffffffffffffffffffce
+:10f25000ffffffffffffffffffffffffffffffffbe
+:10f26000ffffffffffffffffffffffffffffffffae
+:10f27000ffffffffffffffffffffffffffffffff9e
+:10f28000ffffffffffffffffffffffffffffffff8e
+:10f29000ffffffffffffffffffffffffffffffff7e
+:10f2a000ffffffffffffffffffffffffffffffff6e
+:10f2b000ffffffffffffffffffffffffffffffff5e
+:10f2c000ffffffffffffffffffffffffffffffff4e
+:10f2d000ffffffffffffffffffffffffffffffff3e
+:10f2e000ffffffffffffffffffffffffffffffff2e
+:10f2f000ffffffffffffffffffffffffffffffff1e
+:10f30000ffffffffffffffffffffffffffffffff0d
+:10f31000fffffffffffffffffffffffffffffffffd
+:10f32000ffffffffffffffffffffffffffffffffed
+:10f33000ffffffffffffffffffffffffffffffffdd
+:10f34000ffffffffffffffffffffffffffffffffcd
+:10f35000ffffffffffffffffffffffffffffffffbd
+:10f36000ffffffffffffffffffffffffffffffffad
+:10f37000ffffffffffffffffffffffffffffffff9d
+:10f38000ffffffffffffffffffffffffffffffff8d
+:10f39000ffffffffffffffffffffffffffffffff7d
+:10f3a000ffffffffffffffffffffffffffffffff6d
+:10f3b000ffffffffffffffffffffffffffffffff5d
+:10f3c000ffffffffffffffffffffffffffffffff4d
+:10f3d000ffffffffffffffffffffffffffffffff3d
+:10f3e000ffffffffffffffffffffffffffffffff2d
+:10f3f000ffffffffffffffffffffffffffffffff1d
+:10f40000ffffffffffffffffffffffffffffffff0c
+:10f41000fffffffffffffffffffffffffffffffffc
+:10f42000ffffffffffffffffffffffffffffffffec
+:10f43000ffffffffffffffffffffffffffffffffdc
+:10f44000ffffffffffffffffffffffffffffffffcc
+:10f45000ffffffffffffffffffffffffffffffffbc
+:10f46000ffffffffffffffffffffffffffffffffac
+:10f47000ffffffffffffffffffffffffffffffff9c
+:10f48000ffffffffffffffffffffffffffffffff8c
+:10f49000ffffffffffffffffffffffffffffffff7c
+:10f4a000ffffffffffffffffffffffffffffffff6c
+:10f4b000ffffffffffffffffffffffffffffffff5c
+:10f4c000ffffffffffffffffffffffffffffffff4c
+:10f4d000ffffffffffffffffffffffffffffffff3c
+:10f4e000ffffffffffffffffffffffffffffffff2c
+:10f4f000ffffffffffffffffffffffffffffffff1c
+:10f50000ffffffffffffffffffffffffffffffff0b
+:10f51000ffffffffffffffffffff1400200022009f
+:10f520002800320040004a004e00ffff5400560001
+:10f53000ffffffffffffffffffffffffffffffffdb
+:10f54000ffffffffffffffffffff4701ffffffff81
+:10f55000ffffffffffffffffffffffffffffffffbb
+:10f56000ffffffffffffffffffffffffffffffffab
+:10f57000151b14006400100716402f150102021617
+:10f58000392f3602360036010f3601360136010fab
+:10f590003606360236010f361a360336010f36ffad
+:10f5a000360436010f364c360536010f3600360666
+:10f5b00036010f3602360736010f3615360836018a
+:10f5c0000f36e2360936010f36c5360a36010f36d8
+:10f5d0006d360b36010f36b5360c36010f36df3679
+:10f5e0000d36010f36fb360e36010f3648360f3614
+:10f5f000010f36d2361036010f36b0361136010ff4
+:10f600003660361236010f36d0361336010f36f516
+:10f61000361436010f36a7361536010f361036165a
+:10f6200036010f3696361736010f36e0361836019a
+:10f630000f3600361936010f3603361a36010f36eb
+:10f6400000361b36010f3602361c36010f36bc362b
+:10f650001d36010f1501001e3600361e0d16412ff6
+:10f66000171501020216392f151b1400640010072c
+:10f6700016402f1717020300002a69426561636f65
+:10f680006e020500012a0200020800292a426c7558
+:10f6900065676967612f4a574a4d616e7566616398
+:10f6a0007475726572204e616d6520537472696e57
+:10f6b00067020b00242a312e304d6f64656c204e9a
+:10f6c000756d62657220537472696e67020e002652
+:10f6d0002a312e304669726d7761726520526576e7
+:10f6e0006973696f6e20537472696e670211002727
+:10f6f0002a302e31486172647761726520526576d6
+:10f700006973696f6e20537472696e670001047ebd
+:10f71000f70202010475f6050401047af6070201f6
+:10f720000481f60505010486f60200010484f7024f
+:10f7300002010488f6050701048df60c0b010499fb
+:10f74000f618020104b1f605080104b6f6030b0130
+:10f7500004b9f613020104ccf605090104d1f6033d
+:10f760000b0104d4f618020104ecf6050a0104f1b9
+:10f77000f6030b0104f4f6180028012803280018ea
+:10f78000002a012a0a18292a242a262a272a012996
+:10f790001af575f675f60cf778f778f71200001f72
+:10f7a0000000000000000000000000000000000059
+:10f7b0000000000000000000000000000000000049
+:10f7c0000000000000000000000000000000000039
+:10f7d0000000000000000000000000000000000029
+:10f7e00000000000000000000000000000e8030e20
+:10f7f0006d00c50c0000000000000001004700bec5
+:10f80000ffffffffffffffffffffffffffffffff08
+:10f81000fffffffffffffffffffffffffffffffff8
+:10f82000ffffffffffffffffffffffffffffffffe8
+:10f83000ffffffffffffffffffffffffffffffffd8
+:10f84000ffffffffffffffffffffffffffffffffc8
+:10f85000ffffffffffffffffffffffffffffffffb8
+:10f86000ffffffffffffffffffffffffffffffffa8
+:10f87000ffffffffffffffffffffffffffffffff98
+:10f88000ffffffffffffffffffffffffffffffff88
+:10f89000ffffffffffffffffffffffffffffffff78
+:10f8a000ffffffffffffffffffffffffffffffff68
+:10f8b000ffffffffffffffffffffffffffffffff58
+:10f8c000ffffffffffffffffffffffffffffffff48
+:10f8d000ffffffffffffffffffffffffffffffff38
+:10f8e000ffffffffffffffffffffffffffffffff28
+:10f8f000ffffffffffffffffffffffffffffffff18
+:10f90000ffffffffffffffffffffffffffffffff07
+:10f91000fffffffffffffffffffffffffffffffff7
+:10f92000ffffffffffffffffffffffffffffffffe7
+:10f93000ffffffffffffffffffffffffffffffffd7
+:10f94000ffffffffffffffffffffffffffffffffc7
+:10f95000ffffffffffffffffffffffffffffffffb7
+:10f96000ffffffffffffffffffffffffffffffffa7
+:10f97000ffffffffffffffffffffffffffffffff97
+:10f98000ffffffffffffffffffffffffffffffff87
+:10f99000ffffffffffffffffffffffffffffffff77
+:10f9a000ffffffffffffffffffffffffffffffff67
+:10f9b000ffffffffffffffffffffffffffffffff57
+:10f9c000ffffffffffffffffffffffffffffffff47
+:10f9d000ffffffffffffffffffffffffffffffff37
+:10f9e000ffffffffffffffffffffffffffffffff27
+:10f9f000ffffffffffffffffffffffffffffffff17
+:10fa0000ffffffffffffffffffffffffffffffff06
+:10fa1000fffffffffffffffffffffffffffffffff6
+:10fa2000ffffffffffffffffffffffffffffffffe6
+:10fa3000ffffffffffffffffffffffffffffffffd6
+:10fa4000ffffffffffffffffffffffffffffffffc6
+:10fa5000ffffffffffffffffffffffffffffffffb6
+:10fa6000ffffffffffffffffffffffffffffffffa6
+:10fa7000ffffffffffffffffffffffffffffffff96
+:10fa8000ffffffffffffffffffffffffffffffff86
+:10fa9000ffffffffffffffffffffffffffffffff76
+:10faa000ffffffffffffffffffffffffffffffff66
+:10fab000ffffffffffffffffffffffffffffffff56
+:10fac000ffffffffffffffffffffffffffffffff46
+:10fad000ffffffffffffffffffffffffffffffff36
+:10fae000ffffffffffffffffffffffffffffffff26
+:10faf000ffffffffffffffffffffffffffffffff16
+:10fb0000ffffffffffffffffffffffffffffffff05
+:10fb1000fffffffffffffffffffffffffffffffff5
+:10fb2000ffffffffffffffffffffffffffffffffe5
+:10fb3000ffffffffffffffffffffffffffffffffd5
+:10fb4000ffffffffffffffffffffffffffffffffc5
+:10fb5000ffffffffffffffffffffffffffffffffb5
+:10fb6000ffffffffffffffffffffffffffffffffa5
+:10fb7000ffffffffffffffffffffffffffffffff95
+:10fb8000ffffffffffffffffffffffffffffffff85
+:10fb9000ffffffffffffffffffffffffffffffff75
+:10fba000ffffffffffffffffffffffffffffffff65
+:10fbb000ffffffffffffffffffffffffffffffff55
+:10fbc000ffffffffffffffffffffffffffffffff45
+:10fbd000ffffffffffffffffffffffffffffffff35
+:10fbe000ffffffffffffffffffffffffffffffff25
+:10fbf000ffffffffffffffffffffffffffffffff15
+:10fc0000ffffffffffffffffffffffffffffffff04
+:10fc1000fffffffffffffffffffffffffffffffff4
+:10fc2000ffffffffffffffffffffffffffffffffe4
+:10fc3000ffffffffffffffffffffffffffffffffd4
+:10fc4000ffffffffffffffffffffffffffffffffc4
+:10fc5000ffffffffffffffffffffffffffffffffb4
+:10fc6000ffffffffffffffffffffffffffffffffa4
+:10fc7000ffffffffffffffffffffffffffffffff94
+:10fc8000ffffffffffffffffffffffffffffffff84
+:10fc9000ffffffffffffffffffffffffffffffff74
+:10fca000ffffffffffffffffffffffffffffffff64
+:10fcb000ffffffffffffffffffffffffffffffff54
+:10fcc000ffffffffffffffffffffffffffffffff44
+:10fcd000ffffffffffffffffffffffffffffffff34
+:10fce000ffffffffffffffffffffffffffffffff24
+:10fcf000ffffffffffffffffffffffffffffffff14
+:10fd0000ffffffffffffffffffffffffffffffff03
+:10fd1000fffffffffffffffffffffffffffffffff3
+:10fd2000ffffffffffffffffffffffffffffffffe3
+:10fd3000ffffffffffffffffffffffffffffffffd3
+:10fd4000ffffffffffffffffffffffffffffffffc3
+:10fd5000ffffffffffffffffffffffffffffffffb3
+:10fd6000ffffffffffffffffffffffffffffffffa3
+:10fd7000ffffffffffffffffffffffffffffffff93
+:10fd8000ffffffffffffffffffffffffffffffff83
+:10fd9000ffffffffffffffffffffffffffffffff73
+:10fda000ffffffffffffffffffffffffffffffff63
+:10fdb000ffffffffffffffffffffffffffffffff53
+:10fdc000ffffffffffffffffffffffffffffffff43
+:10fdd000ffffffffffffffffffffffffffffffff33
+:10fde000ffffffffffffffffffffffffffffffff23
+:10fdf000ffffffffffffffffffffffffffffffff13
+:10fe0000ffffffffffffffffffffffffffffffff02
+:10fe1000fffffffffffffffffffffffffffffffff2
+:10fe2000ffffffffffffffffffffffffffffffffe2
+:10fe3000ffffffffffffffffffffffffffffffffd2
+:10fe4000ffffffffffffffffffffffffffffffffc2
+:10fe5000ffffffffffffffffffffffffffffffffb2
+:10fe6000ffffffffffffffffffffffffffffffffa2
+:10fe7000ffffffffffffffffffffffffffffffff92
+:10fe8000ffffffffffffffffffffffffffffffff82
+:10fe9000ffffffffffffffffffffffffffffffff72
+:10fea000ffffffffffffffffffffffffffffffff62
+:10feb000ffffffffffffffffffffffffffffffff52
+:10fec000ffffffffffffffffffffffffffffffff42
+:10fed000ffffffffffffffffffffffffffffffff32
+:10fee000ffffffffffffffffffffffffffffffff22
+:10fef000ffffffffffffffffffffffffffffffff12
+:10ff00007cf000420000004200000000000002ff00
+:10ff100000ffffffffffffff03ffffffff000000e9
+:10ff200000ffffffffffffffffffffffffffffffe0
+:10ff3000ffffffffffffffffffffffffffffffffd1
+:10ff4000ffffffffffffffffffffffffffffffffc1
+:10ff5000ffffffffffffffffffffffffffffffffb1
+:10ff6000ffffffffffffffffffffffffffffffffa1
+:10ff7000ffffffffffffffffffffffffffffffff91
+:10ff8000ffffffffffffffffffffffffffffffff81
+:10ff9000ffffffffffffffffffffffffffffffff71
+:10ffa000ffffffffffffffffffffffffffffffff61
+:10ffb000ffffffffffffffffffffffffffffffff51
+:10ffc000ffffffffffffffffffffffffffffffff41
+:10ffd000ffffffffffffffffffffffffffffffff31
+:10ffe000ffffffffffffffffffffffffffffffff21
+:10fff000ffffffffffffffffffffffffffffffff11
+:00000001ff
diff --git a/iOS/iBeacon/Bluegiga/project.xml b/iOS/iBeacon/Bluegiga/project.xml
new file mode 100644
index 0000000..ed432b1
--- /dev/null
+++ b/iOS/iBeacon/Bluegiga/project.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/iOS/iBeacon/Bluegiga/readme.md b/iOS/iBeacon/Bluegiga/readme.md
new file mode 100644
index 0000000..974b8cb
--- /dev/null
+++ b/iOS/iBeacon/Bluegiga/readme.md
@@ -0,0 +1,12 @@
+# iBeacon firmware for BLE112#
+
+This is the BLE112 firmware source code for a iOS 7 iBeacon compatible device.
+You can find more information here:
+
+Jens Willy's very informative blog
+http://jenswilly.dk/tag/ibeacon/
+
+and also here on Bluegiga's site:
+
+Mikko Savolainen's Apple iBeacon example in the Bluegiga Knowledgebase (a login may be required)
+https://bluegiga.zendesk.com/entries/29990857-Apple-iBeacon-example
\ No newline at end of file
diff --git a/iOS/iBeacon/Bluegiga/script.bgs b/iOS/iBeacon/Bluegiga/script.bgs
new file mode 100644
index 0000000..a3788a4
--- /dev/null
+++ b/iOS/iBeacon/Bluegiga/script.bgs
@@ -0,0 +1,76 @@
+dim data( 30 )
+dim result
+dim port
+dim read_data
+
+event system_boot( major, minor, patch, build, ll_version, protocol_version, hw )
+
+ # Set advertisement interval to 100 to 500ms. Use all advertisement channels
+ call gap_set_adv_parameters( 20, 100, 7 )
+
+ #set to advertising mode
+ call gap_set_mode( gap_general_discoverable, gap_undirected_connectable )
+
+ # Initialize iBeacon advertisement data
+ # Flags = LE General Discovery, single mode device (02 01 06)
+ # UUID for Apple's AirLocate app = 83256b74-78d0-43a4-8269-05f9dc8a44ba
+ # Major = 00 03 in this case
+ # Minor = 00 02
+ # Measured power = -58 ($c6)
+
+ # Flags
+ data( 0:1) = $02
+ data( 1:1) = $01
+ data( 2:1) = $06
+
+ # Manufacturer data
+ data( 3:1) = $1a
+ data( 4:1) = $ff
+
+ # Preamble
+ data( 5:1) = $4c
+ data( 6:1) = $00
+ data( 7:1) = $02
+ data( 8:1) = $15
+
+ # UUID
+ # 1A CB AD 6E-E1 A5-48 38-A6 2A-22 D3 5D 00 C3 5B
+ data( 9:1) = $e2
+ data(10:1) = $c5
+ data(11:1) = $6d
+ data(12:1) = $b5
+ data(13:1) = $df
+ data(14:1) = $fb
+ data(15:1) = $48
+ data(16:1) = $d2
+ data(17:1) = $b0
+ data(18:1) = $60
+ data(19:1) = $d0
+ data(20:1) = $f5
+ data(21:1) = $a7
+ data(22:1) = $10
+ data(23:1) = $96
+ data(24:1) = $e0
+
+ # Major - e.g. Major = 3
+ data(25:1) = $00
+ data(26:1) = $03
+
+ # Minor - e.g. Minor = 2
+ data(27:1) = $00
+ data(28:1) = $02
+
+ # Measured power (specified in 2's complement, so 0xC6 is -58)
+ data(29:1) = $bc
+
+ # Set advertisement data
+ call gap_set_adv_data(0, 30, data(0:30))
+
+end
+
+# Disconnection event listener
+event connection_disconnected(handle, result)
+ # Reset connection parametesr
+ call gap_set_mode( gap_general_discoverable, gap_undirected_connectable )
+ call gap_set_adv_parameters( 20, 100, 7 )
+end
\ No newline at end of file
diff --git a/nRF51822/README.md b/nRF51822/README.md
index 04b4704..b4c741c 100644
--- a/nRF51822/README.md
+++ b/nRF51822/README.md
@@ -43,20 +43,16 @@ The SoftDevice must be unzipped and placed in the /lib/softdevice/* folder, and
Make sure that you also include the matching SoftDevice header files, which will normally go in the folder below:
```
- [projfolder]/lib/softdevice/s110_nrf51822_6.0.0/s110_nrf51822_6.0.0/s110_nrf51822_6.0.0_API/include
+ [projfolder]/lib/softdevice/s110_nrf51822_6.0.0/s110_nrf51822_6.0.0_API/include
```
Similarly, the SDK files must be placed in the following folder, which allows you to maintain several versions of the SDK across different projects if necessary:
```
- [projfolder]/lib/sdk/nRF51_SDK_v5.1.0.36092/s110_nrf51822_6.0.0_softdevice.hex
+ [projfolder]/lib/sdk/nRF51_SDK_v5.2.0.39364
```
+**NOTE:** To download the 5.2.0 SDK files you must click on the `nRF518-SDK - nRF51 SDK Installer` entry on your MyPages account, specifically the version number to the right-hand side. This will give you a list of all available SDK versions. Download the **5.2.0** version, install it in your development machine, and then move the files to the folder listed above.
-The makefiles are located in the following folder, and reference makefiles are included in the default codebase as a reference. You will probably want to replace the default files in this folder from Nordic with the updated versions provided in this codbase:
-
-```
- [projfolder]/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc
-```
GNU Build Tools
===============
@@ -82,10 +78,10 @@ Depending on your system and installation folder, the location that you need to
You can type 'make --version' to see if the build tools were properly installed and added to your path variable.
-Update Makefile.windows to point to your Toolchain
---------------------------------------------------
+Update Makefile.common to point to your Toolchain
+-------------------------------------------------
-The last thing you need to do is update Makefile.windows, which is a global config file located at lib/sdk/[SDKVersion]/Nordic/nrf51822/Source/templates/gcc.
+The last thing you need to do is update Makefile.common, which is located at projects/Makefile.common.
This file needs to be updated with the folder where you installed the GNU ARM toolchain, as well as the toolchain version number. This allows the makefile to point to the right toolchain if multiple versions are present on your system.
diff --git a/nRF51822/lib/sdk/README.md b/nRF51822/lib/sdk/README.md
index 98ce485..f607475 100644
--- a/nRF51822/lib/sdk/README.md
+++ b/nRF51822/lib/sdk/README.md
@@ -1,3 +1,7 @@
-Download the Nordic SDK and place it in this folder
+Download the Nordic SDK and place it in this folder, making sure there are no spaces in the folder name:
-Updated makefiles have been included in the following folder, and you should update your makefiles accordingly in any version of the SDK that you download: nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc
+```
+ [projfolder]/lib/sdk/nRF51_SDK_v5.2.0.39364
+```
+
+**NOTE:** To download the 5.2.0 SDK files you must click on the `nRF518-SDK - nRF51 SDK Installer` entry on your MyPages account, specifically the version number to the right-hand side. This will give you a list of all available SDK versions. Download the **5.2.0** version, install it in your development machine, and then move the files to the folder listed above.
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/Makefile.osx b/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/Makefile.osx
deleted file mode 100644
index 22a9944..0000000
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/Makefile.osx
+++ /dev/null
@@ -1,5 +0,0 @@
-GNU_INSTALL_ROOT := /Users/kevintownsend/Downloads/gcc-arm-none-eabi-4_8-2013q4
-GNU_VERSION := 4.8.3
-GNU_PREFIX := arm-none-eabi
-
-NRFJPROG = $(ROOT_PATH)tools/Windows/nordic/nrfjprog.exe
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/Makefile.windows b/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/Makefile.windows
deleted file mode 100644
index c5dd897..0000000
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/Makefile.windows
+++ /dev/null
@@ -1,5 +0,0 @@
-GNU_INSTALL_ROOT := C:/ARM/4.8_2013q4
-GNU_VERSION := 4.8.3
-GNU_PREFIX := arm-none-eabi
-
-NRFJPROG = $(ROOT_PATH)tools/Windows/nordic/nrfjprog.exe
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxaa.ld b/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxaa.ld
deleted file mode 100644
index 8c62c34..0000000
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxaa.ld
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Linker script to configure memory regions. */
-SEARCH_DIR(.)
-GROUP(-lgcc -lc -lnosys)
-
-MEMORY
-{
- FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 256K
- RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 16K
-}
-
-INCLUDE "gcc_nrf51_common.ld"
-
-
-
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxaa.ld b/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxaa.ld
deleted file mode 100644
index a7db4d1..0000000
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxaa.ld
+++ /dev/null
@@ -1,10 +0,0 @@
-/* Linker script to configure memory regions. */
-SEARCH_DIR(.)
-GROUP(-lgcc -lc -lnosys)
-
-MEMORY
-{
- FLASH (rx) : ORIGIN = 0x14000, LENGTH = 0x2C000 /* 80 kB is taken by S110, 176 kB available for application. */
- RAM (rwx) : ORIGIN = 0x20002000, LENGTH = 0x2000 /* 8 kB, 8 kB is taken by S110. */
-}
-INCLUDE "gcc_nrf51_common.ld"
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxab.ld b/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxab.ld
deleted file mode 100644
index e049463..0000000
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxab.ld
+++ /dev/null
@@ -1,10 +0,0 @@
-/* Linker script to configure memory regions. */
-SEARCH_DIR(.)
-GROUP(-lgcc -lc -lnosys)
-
-MEMORY
-{
- FLASH (rx) : ORIGIN = 0x14000, LENGTH = 0xC000 /* 80 kB is taken by S110, 48 kB available for application. */
- RAM (rwx) : ORIGIN = 0x20002000, LENGTH = 0x2000 /* 8 kB, 8 kB is taken by S110. */
-}
-INCLUDE "gcc_nrf51_common.ld"
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s210_xxaa.ld b/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s210_xxaa.ld
deleted file mode 100644
index 253b62c..0000000
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s210_xxaa.ld
+++ /dev/null
@@ -1,10 +0,0 @@
-/* Linker script to configure memory regions. */
-SEARCH_DIR(.)
-GROUP(-lgcc -lc -lnosys)
-
-MEMORY
-{
- FLASH (rx) : ORIGIN = 0x0000A000, LENGTH = 216K
- RAM (rwx) : ORIGIN = 0x20000800, LENGTH = 14K
-}
-INCLUDE "gcc_nrf51_common.ld"
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/Makefile.common b/nRF51822/projects/Makefile.common
similarity index 88%
rename from nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/Makefile.common
rename to nRF51822/projects/Makefile.common
index a3ccf12..1bae508 100644
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/Makefile.common
+++ b/nRF51822/projects/Makefile.common
@@ -1,178 +1,189 @@
-DEVICE := NRF51
-DEVICESERIES := nrf51
-
-SDK_INCLUDE_PATH = $(SDK_PATH)/Include/
-SDK_SOURCE_PATH = $(SDK_PATH)/Source/
-TEMPLATE_PATH += $(SDK_SOURCE_PATH)/templates/gcc/
-OUTPUT_BINARY_DIRECTORY := _build
-
-ifeq ($(OS),Windows_NT)
- include $(TEMPLATE_PATH)Makefile.windows
-else
- UNAME_S := $(shell uname -s)
- ifeq ($(UNAME_S),Darwin)
- include $(TEMPLATE_PATH)Makefile.osx
- else
- include $(TEMPLATE_PATH)Makefile.posix
- endif
-endif
-
-ifeq ($(LINKER_SCRIPT),)
- ifeq ($(USE_SOFTDEVICE), S110)
- LINKER_SCRIPT = gcc_$(DEVICESERIES)_s110_$(DEVICE_VARIANT).ld
- OUTPUT_FILENAME := $(OUTPUT_FILENAME)_s110_$(DEVICE_VARIANT)
- else
- ifeq ($(USE_SOFTDEVICE), S210)
- LINKER_SCRIPT = gcc_$(DEVICESERIES)_s210_$(DEVICE_VARIANT).ld
- OUTPUT_FILENAME := $(OUTPUT_FILENAME)_s210_$(DEVICE_VARIANT)
- else
- LINKER_SCRIPT = gcc_$(DEVICESERIES)_blank_$(DEVICE_VARIANT).ld
- OUTPUT_FILENAME := $(OUTPUT_FILENAME)_$(DEVICE_VARIANT)
- endif
- endif
-else
-# Use externally defined settings
-endif
-
-CPU := cortex-m0
-
-# Toolchain commands
-CC := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-gcc"
-AS := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-as"
-AR := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-ar" -r
-LD := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-ld"
-NM := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-nm"
-OBJDUMP := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-objdump"
-OBJCOPY := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-objcopy"
-SIZE := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-size"
-
-MK := mkdir
-RM := rm -rf
-
-OBJECT_DIRECTORY := _build
-LISTING_DIRECTORY := _build
-
-C_SOURCE_FILES += system_$(DEVICESERIES).c
-ASSEMBLER_SOURCE_FILES += gcc_startup_$(DEVICESERIES).s
-
-# Linker flags
-LDFLAGS += -L"$(GNU_INSTALL_ROOT)/arm-none-eabi/lib/armv6-m"
-LDFLAGS += -L"$(GNU_INSTALL_ROOT)/lib/gcc/arm-none-eabi/$(GNU_VERSION)/armv6-m"
-LDFLAGS += -Xlinker -Map=$(LISTING_DIRECTORY)/$(OUTPUT_FILENAME).map
-LDFLAGS += -mcpu=$(CPU) -mthumb -mabi=aapcs -L $(TEMPLATE_PATH) -T$(LINKER_SCRIPT)
-
-# Compiler flags
-CFLAGS += -mcpu=$(CPU) -mthumb -mabi=aapcs -D$(DEVICE) -D$(BOARD) -D$(TARGET_CHIP) --std=gnu99
-# CFLAGS += -Wall -Werror
-CFLAGS += -mfloat-abi=soft
-
-# Optimisation flags
-CFLAGS += --specs=nano.specs
-CFLAGS += -fno-builtin
-CFLAGS += -ffunction-sections
-CFLAGS += -fdata-sections
-
-# Assembler flags
-ASMFLAGS += -x assembler-with-cpp
-
-INCLUDEPATHS += -I"../"
-INCLUDEPATHS += -I"$(SDK_PATH)Include"
-INCLUDEPATHS += -I"$(SDK_PATH)Include/gcc"
-INCLUDEPATHS += -I"$(SDK_PATH)Include/ext_sensors"
-
-# Sorting removes duplicates
-BUILD_DIRECTORIES := $(sort $(OBJECT_DIRECTORY) $(OUTPUT_BINARY_DIRECTORY) $(LISTING_DIRECTORY) )
-
-####################################################################
-# Rules #
-####################################################################
-
-C_SOURCE_FILENAMES = $(notdir $(C_SOURCE_FILES) )
-ASSEMBLER_SOURCE_FILENAMES = $(notdir $(ASSEMBLER_SOURCE_FILES) )
-
-# Make a list of source paths
-C_SOURCE_PATHS += ../ $(SDK_SOURCE_PATH) $(TEMPLATE_PATH) $(wildcard $(SDK_SOURCE_PATH)*/) $(wildcard $(SDK_SOURCE_PATH)ext_sensors/*/) $(wildcard $(SDK_SOURCE_PATH)ble/*/)
-ASSEMBLER_SOURCE_PATHS = ../ $(SDK_SOURCE_PATH) $(TEMPLATE_PATH) $(wildcard $(SDK_SOURCE_PATH)*/)
-
-C_OBJECTS = $(addprefix $(OBJECT_DIRECTORY)/, $(C_SOURCE_FILENAMES:.c=.o) )
-ASSEMBLER_OBJECTS = $(addprefix $(OBJECT_DIRECTORY)/, $(ASSEMBLER_SOURCE_FILENAMES:.s=.o) )
-
-# Set source lookup paths
-vpath %.c $(C_SOURCE_PATHS)
-vpath %.s $(ASSEMBLER_SOURCE_PATHS)
-
-# Include automatically previously generated dependencies
--include $(addprefix $(OBJECT_DIRECTORY)/, $(COBJS:.o=.d))
-
-### Targets
-debug: CFLAGS += -DDEBUG -g3 -O0
-debug: ASMFLAGS += -DDEBUG -g3 -O0
-debug: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).bin $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
-
-.PHONY: release
-release: clean
-release: CFLAGS += -DNDEBUG -O3
-release: ASMFLAGS += -DNDEBUG -O3
-release: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).bin $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
-
-echostuff:
- @echo C_OBJECTS: [$(C_OBJECTS)]
- @echo C_SOURCE_FILES: [$(C_SOURCE_FILES)]
-
-## Create build directories
-$(BUILD_DIRECTORIES):
- $(MK) $@
-
-## Create objects from C source files
-$(OBJECT_DIRECTORY)/%.o: %.c
-# Build header dependencies
- @$(CC) $(CFLAGS) $(INCLUDEPATHS) -M $< -MF "$(@:.o=.d)" -MT $@
-# Do the actual compilation
- -@echo "COMPILING $(@F)"
- @$(CC) $(CFLAGS) $(INCLUDEPATHS) -c -o $@ $<
-
-## Assemble .s files
-$(OBJECT_DIRECTORY)/%.o: %.s
- -@echo "ASSEMBLING $(@F)"
- @$(CC) $(ASMFLAGS) $(INCLUDEPATHS) -c -o $@ $<
-
-## Link C and assembler objects to an .out file
-$(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out: $(BUILD_DIRECTORIES) $(C_OBJECTS) $(ASSEMBLER_OBJECTS) $(LIBRARIES)
- -@echo ""
- -@echo "LINKING $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out"
- @$(CC) $(LDFLAGS) $(C_OBJECTS) $(ASSEMBLER_OBJECTS) $(LIBRARIES) -o $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out
-
-## Size
- -@echo ""
- @$(SIZE) $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out
- -@echo ""
-
-## Create binary .bin file from the .out file
-$(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).bin: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out
- -@echo "Generating $(OUTPUT_FILENAME).bin"
- @$(OBJCOPY) -O binary $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).bin
-
-## Create binary .hex file from the .out file
-$(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out
- -@echo "Generating $(OUTPUT_FILENAME).hex"
- @$(OBJCOPY) -O ihex $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
-
-## Default build target
-.PHONY: all
-all: clean debug
-
-clean:
- $(RM) $(OUTPUT_BINARY_DIRECTORY)
-
-## Program device
-.PHONY: flash
-flash: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
- $(NRFJPROG) --reset --program $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
-
-.PHONY: reset
-reset:
- $(NRFJPROG) --reset
-
-.PHONY: erase
-erase:
- $(NRFJPROG) --erase
+DEVICE := NRF51
+DEVICESERIES := nrf51
+
+SDK_INCLUDE_PATH = $(SDK_PATH)/Include/
+SDK_SOURCE_PATH = $(SDK_PATH)/Source/
+TEMPLATE_PATH += $(SDK_SOURCE_PATH)/templates/gcc/
+OUTPUT_BINARY_DIRECTORY := _build
+
+ifeq ($(OS),Windows_NT)
+ GNU_INSTALL_ROOT := C:/Program Files (x86)/GNU Tools ARM Embedded/4.8 2013q4/
+ GNU_VERSION := 4.8.3
+ GNU_PREFIX := arm-none-eabi
+ NRFJPROG = $(ROOT_PATH)tools/Windows/nordic/nrfjprog.exe
+else
+ GNU_INSTALL_ROOT := /Users/ktown/Downloads/gcc-arm-none-eabi-4_8-2014q1
+ GNU_VERSION := 4.8.3
+ GNU_PREFIX := arm-none-eabi
+ NRFJPROG = $(ROOT_PATH)tools/OSX/rknrfgo/nrfjprog
+endif
+
+
+ifeq ($(LINKER_SCRIPT),)
+ ifeq ($(USE_SOFTDEVICE), S110)
+ LINKER_SCRIPT = gcc_$(DEVICESERIES)_s110_$(DEVICE_VARIANT).ld
+ OUTPUT_FILENAME := $(OUTPUT_FILENAME)_s110_$(DEVICE_VARIANT)
+ else
+ ifeq ($(USE_SOFTDEVICE), S210)
+ LINKER_SCRIPT = gcc_$(DEVICESERIES)_s210_$(DEVICE_VARIANT).ld
+ OUTPUT_FILENAME := $(OUTPUT_FILENAME)_s210_$(DEVICE_VARIANT)
+ else
+ LINKER_SCRIPT = gcc_$(DEVICESERIES)_blank_$(DEVICE_VARIANT).ld
+ OUTPUT_FILENAME := $(OUTPUT_FILENAME)_$(DEVICE_VARIANT)
+ endif
+ endif
+else
+# Use externally defined settings
+endif
+
+CPU := cortex-m0
+
+# Toolchain commands
+CC := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-gcc"
+AS := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-as"
+AR := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-ar" -r
+LD := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-ld"
+NM := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-nm"
+OBJDUMP := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-objdump"
+OBJCOPY := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-objcopy"
+SIZE := "$(GNU_INSTALL_ROOT)/bin/$(GNU_PREFIX)-size"
+
+MK := mkdir
+RM := rm -rf
+
+OBJECT_DIRECTORY := _build
+LISTING_DIRECTORY := _build
+
+C_SOURCE_FILES += system_$(DEVICESERIES).c
+ASSEMBLER_SOURCE_FILES += gcc_startup_$(DEVICESERIES).s
+
+# Linker flags
+LDFLAGS += -L"$(GNU_INSTALL_ROOT)/arm-none-eabi/lib/armv6-m"
+LDFLAGS += -L"$(GNU_INSTALL_ROOT)/lib/gcc/arm-none-eabi/$(GNU_VERSION)/armv6-m"
+LDFLAGS += -Xlinker -Map=$(LISTING_DIRECTORY)/$(OUTPUT_FILENAME).map
+LDFLAGS += -mcpu=$(CPU) -mthumb -mabi=aapcs -L"../" -T$(LINKER_SCRIPT)
+
+# Compiler flags
+CFLAGS += -mcpu=$(CPU) -mthumb -mabi=aapcs -D$(DEVICE) -D$(BOARD) -D$(TARGET_CHIP) --std=gnu99
+# CFLAGS += -Wall -Werror
+CFLAGS += -mfloat-abi=soft
+
+# Optimisation flags
+CFLAGS += --specs=nano.specs
+CFLAGS += -fno-builtin
+CFLAGS += -ffunction-sections
+CFLAGS += -fdata-sections
+
+# Assembler flags
+ASMFLAGS += -x assembler-with-cpp
+
+INCLUDEPATHS += -I"../"
+INCLUDEPATHS += -I"$(SDK_PATH)Include"
+INCLUDEPATHS += -I"$(SDK_PATH)Include/gcc"
+INCLUDEPATHS += -I"$(SDK_PATH)Include/ext_sensors"
+
+# Sorting removes duplicates
+BUILD_DIRECTORIES := $(sort $(OBJECT_DIRECTORY) $(OUTPUT_BINARY_DIRECTORY) $(LISTING_DIRECTORY) )
+
+####################################################################
+# Rules #
+####################################################################
+
+C_SOURCE_FILENAMES = $(notdir $(C_SOURCE_FILES) )
+ASSEMBLER_SOURCE_FILENAMES = $(notdir $(ASSEMBLER_SOURCE_FILES) )
+
+# Make a list of source paths
+C_SOURCE_PATHS += ../ $(SDK_SOURCE_PATH) $(TEMPLATE_PATH) $(wildcard $(SDK_SOURCE_PATH)*/) $(wildcard $(SDK_SOURCE_PATH)ext_sensors/*/) $(wildcard $(SDK_SOURCE_PATH)ble/*/)
+ASSEMBLER_SOURCE_PATHS = ../ $(SDK_SOURCE_PATH) $(TEMPLATE_PATH) $(wildcard $(SDK_SOURCE_PATH)*/)
+
+C_OBJECTS = $(addprefix $(OBJECT_DIRECTORY)/, $(C_SOURCE_FILENAMES:.c=.o) )
+ASSEMBLER_OBJECTS = $(addprefix $(OBJECT_DIRECTORY)/, $(ASSEMBLER_SOURCE_FILENAMES:.s=.o) )
+
+# Set source lookup paths
+vpath %.c $(C_SOURCE_PATHS)
+vpath %.s $(ASSEMBLER_SOURCE_PATHS)
+
+# Include automatically previously generated dependencies
+-include $(addprefix $(OBJECT_DIRECTORY)/, $(COBJS:.o=.d))
+
+### Targets
+debug: CFLAGS += -DDEBUG -g3 -O0
+debug: ASMFLAGS += -DDEBUG -g3 -O0
+debug: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).bin $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
+
+.PHONY: release
+release: clean
+release: CFLAGS += -DNDEBUG -O3
+release: ASMFLAGS += -DNDEBUG -O3
+release: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).bin $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
+
+echostuff:
+ @echo C_OBJECTS: [$(C_OBJECTS)]
+ @echo C_SOURCE_FILES: [$(C_SOURCE_FILES)]
+
+## Create build directories
+$(BUILD_DIRECTORIES):
+ $(MK) $@
+
+## Create objects from C source files
+$(OBJECT_DIRECTORY)/%.o: %.c
+# Build header dependencies
+ @$(CC) $(CFLAGS) $(INCLUDEPATHS) -M $< -MF "$(@:.o=.d)" -MT $@
+# Do the actual compilation
+ -@echo "COMPILING $(@F)"
+ @$(CC) $(CFLAGS) $(INCLUDEPATHS) -c -o $@ $<
+
+## Assemble .s files
+$(OBJECT_DIRECTORY)/%.o: %.s
+ -@echo "ASSEMBLING $(@F)"
+ @$(CC) $(ASMFLAGS) $(INCLUDEPATHS) -c -o $@ $<
+
+## Link C and assembler objects to an .out file
+$(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out: $(BUILD_DIRECTORIES) $(C_OBJECTS) $(ASSEMBLER_OBJECTS) $(LIBRARIES)
+ -@echo ""
+ -@echo "LINKING $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out"
+ @$(CC) $(LDFLAGS) $(C_OBJECTS) $(ASSEMBLER_OBJECTS) $(LIBRARIES) -o $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out
+
+## Size
+ -@echo ""
+ @$(SIZE) $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out
+ -@echo ""
+
+## Create binary .bin file from the .out file
+$(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).bin: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out
+ -@echo "Generating $(OUTPUT_FILENAME).bin"
+ @$(OBJCOPY) -O binary $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).bin
+
+## Create binary .hex file from the .out file
+$(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out
+ -@echo "Generating $(OUTPUT_FILENAME).hex"
+ @$(OBJCOPY) -O ihex $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).out $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
+
+## Default build target
+.PHONY: all
+all: clean debug
+
+clean:
+ $(RM) $(OUTPUT_BINARY_DIRECTORY)
+
+## Program device
+.PHONY: flash
+flash: $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
+ @echo ""
+ifeq ($(OS),Windows_NT)
+ $(NRFJPROG) -e --programs $(SOFTDEVICE)
+ $(NRFJPROG) --reset --program $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
+else
+ @echo "Writing SoftDevice and User Code to Flash Memory"
+ @chmod 755 $(NRFJPROG)
+ $(NRFJPROG) wipe
+ $(NRFJPROG) program -s $(SOFTDEVICE) -c $(OUTPUT_BINARY_DIRECTORY)/$(OUTPUT_FILENAME).hex
+endif
+
+.PHONY: reset
+reset:
+ $(NRFJPROG) --reset
+
+.PHONY: erase
+erase:
+ $(NRFJPROG) --erase
diff --git a/nRF51822/projects/common/assertion.h b/nRF51822/projects/common/assertion.h
index e36bcc5..c3da991 100644
--- a/nRF51822/projects/common/assertion.h
+++ b/nRF51822/projects/common/assertion.h
@@ -57,14 +57,6 @@ extern "C"
{
#endif
-static inline void debugger_breakpoint(void) ATTR_ALWAYS_INLINE;
-static inline void debugger_breakpoint(void)
-{
-#ifndef _TEST_
- __asm("BKPT #0\n");
-#endif
-}
-
//--------------------------------------------------------------------+
// Compile-time Assert
//--------------------------------------------------------------------+
@@ -79,13 +71,6 @@ static inline void debugger_breakpoint(void)
//--------------------------------------------------------------------+
// Assert Helper
//--------------------------------------------------------------------+
-//#ifndef _TEST_
-// #define ASSERT_MESSAGE(format, ...)\
-// _PRINTF("Assert at %s: %s: %d: " format "\n", __BASE_FILE__, __PRETTY_FUNCTION__, __LINE__, __VA_ARGS__)
-//#else
-// #define ASSERT_MESSAGE(format, ...)\
-// _PRINTF("%d:note: Assert " format "\n", __LINE__, __VA_ARGS__)
-//#endif
#if CFG_DEBUG == 3
#define ASSERT_MESSAGE(format, ...) debugger_breakpoint()
@@ -159,8 +144,8 @@ static inline void debugger_breakpoint(void)
// Integer Assert
//--------------------------------------------------------------------+
#define ASSERT_INT(...) ASSERT_INT_EQUAL(__VA_ARGS__)
-#define ASSERT_INT_EQUAL(...) ASSERT_XXX_EQUAL("%d", __VA_ARGS__)
-#define ASSERT_INT_WITHIN(...) ASSERT_XXX_WITHIN("%d", __VA_ARGS__)
+#define ASSERT_INT_EQUAL(...) ASSERT_XXX_EQUAL("%lu", __VA_ARGS__)
+#define ASSERT_INT_WITHIN(...) ASSERT_XXX_WITHIN("%lu", __VA_ARGS__)
//--------------------------------------------------------------------+
// Hex Assert
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_common.ld b/nRF51822/projects/gcc_nrf51_common.ld
similarity index 95%
rename from nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_common.ld
rename to nRF51822/projects/gcc_nrf51_common.ld
index 7865de7..471dcc8 100644
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_common.ld
+++ b/nRF51822/projects/gcc_nrf51_common.ld
@@ -1,161 +1,161 @@
-/* Linker script for Nordic Semiconductor nRF5 devices
- *
- * Version: Sourcery G++ 4.5-1
- * Support: https://support.codesourcery.com/GNUToolchain/
- *
- * Copyright (c) 2007, 2008, 2009, 2010 CodeSourcery, Inc.
- *
- * The authors hereby grant permission to use, copy, modify, distribute,
- * and license this software and its documentation for any purpose, provided
- * that existing copyright notices are retained in all copies and that this
- * notice is included verbatim in any distributions. No written agreement,
- * license, or royalty fee is required for any of the authorized uses.
- * Modifications to this software may be copyrighted by their authors
- * and need not follow the licensing terms described here, provided that
- * the new terms are clearly indicated on the first page of each file where
- * they apply.
- */
-OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
-
-/* Linker script to place sections and symbol values. Should be used together
- * with other linker script that defines memory regions FLASH and RAM.
- * It references following symbols, which must be defined in code:
- * Reset_Handler : Entry of reset handler
- *
- * It defines following symbols, which code can use without definition:
- * __exidx_start
- * __exidx_end
- * __etext
- * __data_start__
- * __preinit_array_start
- * __preinit_array_end
- * __init_array_start
- * __init_array_end
- * __fini_array_start
- * __fini_array_end
- * __data_end__
- * __bss_start__
- * __bss_end__
- * __end__
- * end
- * __HeapLimit
- * __StackLimit
- * __StackTop
- * __stack
- */
-ENTRY(Reset_Handler)
-
-SECTIONS
-{
- .text :
- {
- KEEP(*(.Vectors))
- *(.text*)
-
- *(.init)
- *(.fini)
-
- /* .ctors */
- *crtbegin.o(.ctors)
- *crtbegin?.o(.ctors)
- *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
- *(SORT(.ctors.*))
- *(.ctors)
-
- /* .dtors */
- *crtbegin.o(.dtors)
- *crtbegin?.o(.dtors)
- *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
- *(SORT(.dtors.*))
- *(.dtors)
-
- *(.rodata*)
-
- *(.eh_frame*)
- } > FLASH
-
-
- .ARM.extab :
- {
- *(.ARM.extab* .gnu.linkonce.armextab.*)
- } > FLASH
-
- __exidx_start = .;
- .ARM.exidx :
- {
- *(.ARM.exidx* .gnu.linkonce.armexidx.*)
- } > FLASH
- __exidx_end = .;
-
- __etext = .;
-
- .data : AT (__etext)
- {
- __data_start__ = .;
- *(vtable)
- *(.data*)
-
- . = ALIGN(4);
- /* preinit data */
- PROVIDE_HIDDEN (__preinit_array_start = .);
- *(.preinit_array)
- PROVIDE_HIDDEN (__preinit_array_end = .);
-
- . = ALIGN(4);
- /* init data */
- PROVIDE_HIDDEN (__init_array_start = .);
- *(SORT(.init_array.*))
- *(.init_array)
- PROVIDE_HIDDEN (__init_array_end = .);
-
-
- . = ALIGN(4);
- /* finit data */
- PROVIDE_HIDDEN (__fini_array_start = .);
- *(SORT(.fini_array.*))
- *(.fini_array)
- PROVIDE_HIDDEN (__fini_array_end = .);
-
- *(.jcr)
- . = ALIGN(4);
- /* All data end */
- __data_end__ = .;
-
- } > RAM
-
- .bss :
- {
- . = ALIGN(4);
- __bss_start__ = .;
- *(.bss*)
- *(COMMON)
- . = ALIGN(4);
- __bss_end__ = .;
- } > RAM
-
- .heap (COPY):
- {
- __end__ = .;
- end = __end__;
- *(.heap*)
- __HeapLimit = .;
- } > RAM
-
- /* .stack_dummy section doesn't contains any symbols. It is only
- * used for linker to calculate size of stack sections, and assign
- * values to stack symbols later */
- .stack_dummy (COPY):
- {
- *(.stack*)
- } > RAM
-
- /* Set stack top to end of RAM, and stack limit move down by
- * size of stack_dummy section */
- __StackTop = ORIGIN(RAM) + LENGTH(RAM);
- __StackLimit = __StackTop - SIZEOF(.stack_dummy);
- PROVIDE(__stack = __StackTop);
-
- /* Check if data + heap + stack exceeds RAM limit */
- ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
-}
-
+/* Linker script for Nordic Semiconductor nRF5 devices
+ *
+ * Version: Sourcery G++ 4.5-1
+ * Support: https://support.codesourcery.com/GNUToolchain/
+ *
+ * Copyright (c) 2007, 2008, 2009, 2010 CodeSourcery, Inc.
+ *
+ * The authors hereby grant permission to use, copy, modify, distribute,
+ * and license this software and its documentation for any purpose, provided
+ * that existing copyright notices are retained in all copies and that this
+ * notice is included verbatim in any distributions. No written agreement,
+ * license, or royalty fee is required for any of the authorized uses.
+ * Modifications to this software may be copyrighted by their authors
+ * and need not follow the licensing terms described here, provided that
+ * the new terms are clearly indicated on the first page of each file where
+ * they apply.
+ */
+OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
+
+/* Linker script to place sections and symbol values. Should be used together
+ * with other linker script that defines memory regions FLASH and RAM.
+ * It references following symbols, which must be defined in code:
+ * Reset_Handler : Entry of reset handler
+ *
+ * It defines following symbols, which code can use without definition:
+ * __exidx_start
+ * __exidx_end
+ * __etext
+ * __data_start__
+ * __preinit_array_start
+ * __preinit_array_end
+ * __init_array_start
+ * __init_array_end
+ * __fini_array_start
+ * __fini_array_end
+ * __data_end__
+ * __bss_start__
+ * __bss_end__
+ * __end__
+ * end
+ * __HeapLimit
+ * __StackLimit
+ * __StackTop
+ * __stack
+ */
+ENTRY(Reset_Handler)
+
+SECTIONS
+{
+ .text :
+ {
+ KEEP(*(.Vectors))
+ *(.text*)
+
+ *(.init)
+ *(.fini)
+
+ /* .ctors */
+ *crtbegin.o(.ctors)
+ *crtbegin?.o(.ctors)
+ *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
+ *(SORT(.ctors.*))
+ *(.ctors)
+
+ /* .dtors */
+ *crtbegin.o(.dtors)
+ *crtbegin?.o(.dtors)
+ *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
+ *(SORT(.dtors.*))
+ *(.dtors)
+
+ *(.rodata*)
+
+ *(.eh_frame*)
+ } > FLASH
+
+
+ .ARM.extab :
+ {
+ *(.ARM.extab* .gnu.linkonce.armextab.*)
+ } > FLASH
+
+ __exidx_start = .;
+ .ARM.exidx :
+ {
+ *(.ARM.exidx* .gnu.linkonce.armexidx.*)
+ } > FLASH
+ __exidx_end = .;
+
+ __etext = .;
+
+ .data : AT (__etext)
+ {
+ __data_start__ = .;
+ *(vtable)
+ *(.data*)
+
+ . = ALIGN(4);
+ /* preinit data */
+ PROVIDE_HIDDEN (__preinit_array_start = .);
+ *(.preinit_array)
+ PROVIDE_HIDDEN (__preinit_array_end = .);
+
+ . = ALIGN(4);
+ /* init data */
+ PROVIDE_HIDDEN (__init_array_start = .);
+ *(SORT(.init_array.*))
+ *(.init_array)
+ PROVIDE_HIDDEN (__init_array_end = .);
+
+
+ . = ALIGN(4);
+ /* finit data */
+ PROVIDE_HIDDEN (__fini_array_start = .);
+ *(SORT(.fini_array.*))
+ *(.fini_array)
+ PROVIDE_HIDDEN (__fini_array_end = .);
+
+ *(.jcr)
+ . = ALIGN(4);
+ /* All data end */
+ __data_end__ = .;
+
+ } > RAM
+
+ .bss :
+ {
+ . = ALIGN(4);
+ __bss_start__ = .;
+ *(.bss*)
+ *(COMMON)
+ . = ALIGN(4);
+ __bss_end__ = .;
+ } > RAM
+
+ .heap (COPY):
+ {
+ __end__ = .;
+ end = __end__;
+ *(.heap*)
+ __HeapLimit = .;
+ } > RAM
+
+ /* .stack_dummy section doesn't contains any symbols. It is only
+ * used for linker to calculate size of stack sections, and assign
+ * values to stack symbols later */
+ .stack_dummy (COPY):
+ {
+ *(.stack*)
+ } > RAM
+
+ /* Set stack top to end of RAM, and stack limit move down by
+ * size of stack_dummy section */
+ __StackTop = ORIGIN(RAM) + LENGTH(RAM);
+ __StackLimit = __StackTop - SIZEOF(.stack_dummy);
+ PROVIDE(__stack = __StackTop);
+
+ /* Check if data + heap + stack exceeds RAM limit */
+ ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
+}
+
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxab.ld b/nRF51822/projects/gcc_nrf51_s110_xxaa.ld
similarity index 54%
rename from nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxab.ld
rename to nRF51822/projects/gcc_nrf51_s110_xxaa.ld
index ac8c1d1..847de82 100644
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxab.ld
+++ b/nRF51822/projects/gcc_nrf51_s110_xxaa.ld
@@ -1,11 +1,13 @@
-/* Linker script to configure memory regions. */
-SEARCH_DIR(.)
-GROUP(-lgcc -lc -lnosys)
-
-MEMORY
-{
- FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 128K
- RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 16K
-}
-
-INCLUDE "gcc_nrf51_common.ld"
+/* Linker script to configure memory regions. */
+
+SEARCH_DIR(.)
+GROUP(-lgcc -lc -lnosys)
+
+MEMORY
+{
+ FLASH (rx) : ORIGIN = 0x00014000, LENGTH = 0x2C000
+ RAM (rwx) : ORIGIN = 0x20002000, LENGTH = 0x2000
+}
+
+
+INCLUDE "gcc_nrf51_common.ld"
diff --git a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_startup_nrf51.s b/nRF51822/projects/gcc_startup_nrf51.s
similarity index 76%
rename from nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_startup_nrf51.s
rename to nRF51822/projects/gcc_startup_nrf51.s
index 00f8be4..6774b2a 100644
--- a/nRF51822/lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/Source/templates/gcc/gcc_startup_nrf51.s
+++ b/nRF51822/projects/gcc_startup_nrf51.s
@@ -1,239 +1,262 @@
-/*
-Copyright (c) 2009 Nordic Semiconductor. All Rights Reserved.
-
-The information contained herein is property of Nordic Semiconductor ASA.
-Terms and conditions of usage are described in detail in NORDIC
-SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
-
-Licensees are granted free, non-transferable use of the information. NO
-WARRANTY of ANY KIND is provided. This heading must NOT be removed from
-the file.
-*/
-
- .syntax unified
- .arch armv6-m
-
- .section .stack
- .align 3
-#ifdef __STACK_SIZE
- .equ Stack_Size, __STACK_SIZE
-#else
- .equ Stack_Size, 1024
-#endif
- .globl __StackTop
- .globl __StackLimit
-__StackLimit:
- .space Stack_Size
- .size __StackLimit, . - __StackLimit
-__StackTop:
- .size __StackTop, . - __StackTop
-
- .section .heap
- .align 3
-#ifdef __HEAP_SIZE
- .equ Heap_Size, __HEAP_SIZE
-#else
- .equ Heap_Size, 0
-#endif
- .globl __HeapBase
- .globl __HeapLimit
-__HeapBase:
- .if Heap_Size
- .space Heap_Size
- .endif
- .size __HeapBase, . - __HeapBase
-__HeapLimit:
- .size __HeapLimit, . - __HeapLimit
-
- .section .Vectors
- .align 2
- .globl __Vectors
-__Vectors:
- .long __StackTop /* Top of Stack */
- .long Reset_Handler /* Reset Handler */
- .long NMI_Handler /* NMI Handler */
- .long HardFault_Handler /* Hard Fault Handler */
- .long 0 /* Reserved */
- .long 0 /* Reserved */
- .long 0 /* Reserved */
- .long 0 /* Reserved */
- .long 0 /* Reserved */
- .long 0 /* Reserved */
- .long 0 /* Reserved */
- .long SVC_Handler /* SVCall Handler */
- .long 0 /* Reserved */
- .long 0 /* Reserved */
- .long PendSV_Handler /* PendSV Handler */
- .long SysTick_Handler /* SysTick Handler */
-
- /* External Interrupts */
- .long POWER_CLOCK_IRQHandler /*POWER_CLOCK */
- .long RADIO_IRQHandler /*RADIO */
- .long UART0_IRQHandler /*UART0 */
- .long SPI0_TWI0_IRQHandler /*SPI0_TWI0 */
- .long SPI1_TWI1_IRQHandler /*SPI1_TWI1 */
- .long 0 /*Reserved */
- .long GPIOTE_IRQHandler /*GPIOTE */
- .long ADC_IRQHandler /*ADC */
- .long TIMER0_IRQHandler /*TIMER0 */
- .long TIMER1_IRQHandler /*TIMER1 */
- .long TIMER2_IRQHandler /*TIMER2 */
- .long RTC0_IRQHandler /*RTC0 */
- .long TEMP_IRQHandler /*TEMP */
- .long RNG_IRQHandler /*RNG */
- .long ECB_IRQHandler /*ECB */
- .long CCM_AAR_IRQHandler /*CCM_AAR */
- .long WDT_IRQHandler /*WDT */
- .long RTC1_IRQHandler /*RTC1 */
- .long QDEC_IRQHandler /*QDEC */
- .long LPCOMP_COMP_IRQHandler /*LPCOMP_COMP */
- .long SWI0_IRQHandler /*SWI0 */
- .long SWI1_IRQHandler /*SWI1 */
- .long SWI2_IRQHandler /*SWI2 */
- .long SWI3_IRQHandler /*SWI3 */
- .long SWI4_IRQHandler /*SWI4 */
- .long SWI5_IRQHandler /*SWI5 */
- .long 0 /*Reserved */
- .long 0 /*Reserved */
- .long 0 /*Reserved */
- .long 0 /*Reserved */
- .long 0 /*Reserved */
- .long 0 /*Reserved */
-
-
- .size __Vectors, . - __Vectors
-
-/* Reset Handler */
-
- .equ NRF_POWER_RAMON_ADDRESS, 0x40000524
- .equ NRF_POWER_RAMON_RAMxON_ONMODE_Msk, 0xF
-
- .text
- .thumb
- .thumb_func
- .align 1
- .globl Reset_Handler
- .type Reset_Handler, %function
-Reset_Handler:
- .fnstart
-
-/* Make sure ALL RAM banks are powered on */
- LDR R0, =NRF_POWER_RAMON_ADDRESS
- LDR R2, [R0]
- MOVS R1, #NRF_POWER_RAMON_RAMxON_ONMODE_Msk
- ORRS R2, R1
- STR R2, [R0]
-
-/* Loop to copy data from read only memory to RAM. The ranges
- * of copy from/to are specified by following symbols evaluated in
- * linker script.
- * __etext: End of code section, i.e., begin of data sections to copy from.
- * __data_start__/__data_end__: RAM address range that data should be
- * copied to. Both must be aligned to 4 bytes boundary. */
-
- ldr r1, =__etext
- ldr r2, =__data_start__
- ldr r3, =__data_end__
-
- subs r3, r2
- ble .LC0
-
-.LC1:
- subs r3, 4
- ldr r0, [r1,r3]
- str r0, [r2,r3]
- bgt .LC1
-.LC0:
-
- LDR R0, =SystemInit
- BLX R0
- LDR R0, =_start
- BX R0
-
- .pool
- .cantunwind
- .fnend
- .size Reset_Handler,.-Reset_Handler
-
- .section ".text"
-
-
-/* Dummy Exception Handlers (infinite loops which can be modified) */
-
- .weak NMI_Handler
- .type NMI_Handler, %function
-NMI_Handler:
- B .
- .size NMI_Handler, . - NMI_Handler
-
-
- .weak HardFault_Handler
- .type HardFault_Handler, %function
-HardFault_Handler:
- B .
- .size HardFault_Handler, . - HardFault_Handler
-
-
- .weak SVC_Handler
- .type SVC_Handler, %function
-SVC_Handler:
- B .
- .size SVC_Handler, . - SVC_Handler
-
-
- .weak PendSV_Handler
- .type PendSV_Handler, %function
-PendSV_Handler:
- B .
- .size PendSV_Handler, . - PendSV_Handler
-
-
- .weak SysTick_Handler
- .type SysTick_Handler, %function
-SysTick_Handler:
- B .
- .size SysTick_Handler, . - SysTick_Handler
-
-
-/* IRQ Handlers */
-
- .globl Default_Handler
- .type Default_Handler, %function
-Default_Handler:
- B .
- .size Default_Handler, . - Default_Handler
-
- .macro IRQ handler
- .weak \handler
- .set \handler, Default_Handler
- .endm
-
- IRQ POWER_CLOCK_IRQHandler
- IRQ RADIO_IRQHandler
- IRQ UART0_IRQHandler
- IRQ SPI0_TWI0_IRQHandler
- IRQ SPI1_TWI1_IRQHandler
- IRQ GPIOTE_IRQHandler
- IRQ ADC_IRQHandler
- IRQ TIMER0_IRQHandler
- IRQ TIMER1_IRQHandler
- IRQ TIMER2_IRQHandler
- IRQ RTC0_IRQHandler
- IRQ TEMP_IRQHandler
- IRQ RNG_IRQHandler
- IRQ ECB_IRQHandler
- IRQ CCM_AAR_IRQHandler
- IRQ WDT_IRQHandler
- IRQ RTC1_IRQHandler
- IRQ QDEC_IRQHandler
- IRQ LPCOMP_COMP_IRQHandler
- IRQ SWI0_IRQHandler
- IRQ SWI1_IRQHandler
- IRQ SWI2_IRQHandler
- IRQ SWI3_IRQHandler
- IRQ SWI4_IRQHandler
- IRQ SWI5_IRQHandler
-
-
- .end
-
+/*
+Copyright (c) 2013, Nordic Semiconductor ASA
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+* Neither the name of Nordic Semiconductor ASA nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+/*
+NOTE: Template files (including this one) are application specific and therefore
+expected to be copied into the application project folder prior to its use!
+*/
+
+ .syntax unified
+ .arch armv6-m
+
+ .section .stack
+ .align 3
+#ifdef __STACK_SIZE
+ .equ Stack_Size, __STACK_SIZE
+#else
+ .equ Stack_Size, 1024
+#endif
+ .globl __StackTop
+ .globl __StackLimit
+__StackLimit:
+ .space Stack_Size
+ .size __StackLimit, . - __StackLimit
+__StackTop:
+ .size __StackTop, . - __StackTop
+
+ .section .heap
+ .align 3
+#ifdef __HEAP_SIZE
+ .equ Heap_Size, __HEAP_SIZE
+#else
+ .equ Heap_Size, 0
+#endif
+ .globl __HeapBase
+ .globl __HeapLimit
+__HeapBase:
+ .if Heap_Size
+ .space Heap_Size
+ .endif
+ .size __HeapBase, . - __HeapBase
+__HeapLimit:
+ .size __HeapLimit, . - __HeapLimit
+
+ .section .Vectors
+ .align 2
+ .globl __Vectors
+__Vectors:
+ .long __StackTop /* Top of Stack */
+ .long Reset_Handler /* Reset Handler */
+ .long NMI_Handler /* NMI Handler */
+ .long HardFault_Handler /* Hard Fault Handler */
+ .long 0 /* Reserved */
+ .long 0 /* Reserved */
+ .long 0 /* Reserved */
+ .long 0 /* Reserved */
+ .long 0 /* Reserved */
+ .long 0 /* Reserved */
+ .long 0 /* Reserved */
+ .long SVC_Handler /* SVCall Handler */
+ .long 0 /* Reserved */
+ .long 0 /* Reserved */
+ .long PendSV_Handler /* PendSV Handler */
+ .long SysTick_Handler /* SysTick Handler */
+
+ /* External Interrupts */
+ .long POWER_CLOCK_IRQHandler /*POWER_CLOCK */
+ .long RADIO_IRQHandler /*RADIO */
+ .long UART0_IRQHandler /*UART0 */
+ .long SPI0_TWI0_IRQHandler /*SPI0_TWI0 */
+ .long SPI1_TWI1_IRQHandler /*SPI1_TWI1 */
+ .long 0 /*Reserved */
+ .long GPIOTE_IRQHandler /*GPIOTE */
+ .long ADC_IRQHandler /*ADC */
+ .long TIMER0_IRQHandler /*TIMER0 */
+ .long TIMER1_IRQHandler /*TIMER1 */
+ .long TIMER2_IRQHandler /*TIMER2 */
+ .long RTC0_IRQHandler /*RTC0 */
+ .long TEMP_IRQHandler /*TEMP */
+ .long RNG_IRQHandler /*RNG */
+ .long ECB_IRQHandler /*ECB */
+ .long CCM_AAR_IRQHandler /*CCM_AAR */
+ .long WDT_IRQHandler /*WDT */
+ .long RTC1_IRQHandler /*RTC1 */
+ .long QDEC_IRQHandler /*QDEC */
+ .long LPCOMP_IRQHandler /*LPCOMP */
+ .long SWI0_IRQHandler /*SWI0 */
+ .long SWI1_IRQHandler /*SWI1 */
+ .long SWI2_IRQHandler /*SWI2 */
+ .long SWI3_IRQHandler /*SWI3 */
+ .long SWI4_IRQHandler /*SWI4 */
+ .long SWI5_IRQHandler /*SWI5 */
+ .long 0 /*Reserved */
+ .long 0 /*Reserved */
+ .long 0 /*Reserved */
+ .long 0 /*Reserved */
+ .long 0 /*Reserved */
+ .long 0 /*Reserved */
+
+
+ .size __Vectors, . - __Vectors
+
+/* Reset Handler */
+
+ .equ NRF_POWER_RAMON_ADDRESS, 0x40000524
+ .equ NRF_POWER_RAMON_RAMxON_ONMODE_Msk, 0x3
+
+ .text
+ .thumb
+ .thumb_func
+ .align 1
+ .globl Reset_Handler
+ .type Reset_Handler, %function
+Reset_Handler:
+ .fnstart
+
+/* Make sure ALL RAM banks are powered on */
+ LDR R0, =NRF_POWER_RAMON_ADDRESS
+ LDR R2, [R0]
+ MOVS R1, #NRF_POWER_RAMON_RAMxON_ONMODE_Msk
+ ORRS R2, R1
+ STR R2, [R0]
+
+/* Loop to copy data from read only memory to RAM. The ranges
+ * of copy from/to are specified by following symbols evaluated in
+ * linker script.
+ * __etext: End of code section, i.e., begin of data sections to copy from.
+ * __data_start__/__data_end__: RAM address range that data should be
+ * copied to. Both must be aligned to 4 bytes boundary. */
+
+ ldr r1, =__etext
+ ldr r2, =__data_start__
+ ldr r3, =__data_end__
+
+ subs r3, r2
+ ble .LC0
+
+.LC1:
+ subs r3, 4
+ ldr r0, [r1,r3]
+ str r0, [r2,r3]
+ bgt .LC1
+.LC0:
+
+ LDR R0, =SystemInit
+ BLX R0
+ LDR R0, =_start
+ BX R0
+
+ .pool
+ .cantunwind
+ .fnend
+ .size Reset_Handler,.-Reset_Handler
+
+ .section ".text"
+
+
+/* Dummy Exception Handlers (infinite loops which can be modified) */
+
+ .weak NMI_Handler
+ .type NMI_Handler, %function
+NMI_Handler:
+ B .
+ .size NMI_Handler, . - NMI_Handler
+
+
+ .weak HardFault_Handler
+ .type HardFault_Handler, %function
+HardFault_Handler:
+ B .
+ .size HardFault_Handler, . - HardFault_Handler
+
+
+ .weak SVC_Handler
+ .type SVC_Handler, %function
+SVC_Handler:
+ B .
+ .size SVC_Handler, . - SVC_Handler
+
+
+ .weak PendSV_Handler
+ .type PendSV_Handler, %function
+PendSV_Handler:
+ B .
+ .size PendSV_Handler, . - PendSV_Handler
+
+
+ .weak SysTick_Handler
+ .type SysTick_Handler, %function
+SysTick_Handler:
+ B .
+ .size SysTick_Handler, . - SysTick_Handler
+
+
+/* IRQ Handlers */
+
+ .globl Default_Handler
+ .type Default_Handler, %function
+Default_Handler:
+ B .
+ .size Default_Handler, . - Default_Handler
+
+ .macro IRQ handler
+ .weak \handler
+ .set \handler, Default_Handler
+ .endm
+
+ IRQ POWER_CLOCK_IRQHandler
+ IRQ RADIO_IRQHandler
+ IRQ UART0_IRQHandler
+ IRQ SPI0_TWI0_IRQHandler
+ IRQ SPI1_TWI1_IRQHandler
+ IRQ GPIOTE_IRQHandler
+ IRQ ADC_IRQHandler
+ IRQ TIMER0_IRQHandler
+ IRQ TIMER1_IRQHandler
+ IRQ TIMER2_IRQHandler
+ IRQ RTC0_IRQHandler
+ IRQ TEMP_IRQHandler
+ IRQ RNG_IRQHandler
+ IRQ ECB_IRQHandler
+ IRQ CCM_AAR_IRQHandler
+ IRQ WDT_IRQHandler
+ IRQ RTC1_IRQHandler
+ IRQ QDEC_IRQHandler
+ IRQ LPCOMP_IRQHandler
+ IRQ SWI0_IRQHandler
+ IRQ SWI1_IRQHandler
+ IRQ SWI2_IRQHandler
+ IRQ SWI3_IRQHandler
+ IRQ SWI4_IRQHandler
+ IRQ SWI5_IRQHandler
+
+
+ .end
+
diff --git a/nRF51822/projects/hrm/Makefile b/nRF51822/projects/hrm/Makefile
index 4f2cf1b..a60ac7a 100644
--- a/nRF51822/projects/hrm/Makefile
+++ b/nRF51822/projects/hrm/Makefile
@@ -43,7 +43,8 @@ C_SOURCE_FILES += nrf_delay.c
# Make sure we're pointing to the right SDK version
ROOT_PATH = ../../
-SDK_PATH = $(ROOT_PATH)lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/
+SDK_PATH = $(ROOT_PATH)lib/sdk/nRF51_SDK_v5.2.0.39364/Nordic/nrf51822/
+SOFTDEVICE = $(ROOT_PATH)lib/softdevice/s110_nrf51822_6.0.0/s110_nrf51822_6.0.0_softdevice.hex
# Include the correct SoftDevice header files
INCLUDEPATHS += -I"$(ROOT_PATH)lib/softdevice/s110_nrf51822_6.0.0/s110_nrf51822_6.0.0_API/include"
@@ -60,6 +61,7 @@ INCLUDEPATHS += -I"$(SDK_PATH)Include/sd_common"
# Additional Flags
CFLAGS += -DBLE_STACK_SUPPORT_REQD
+CFLAGS += -Wno-unused-local-typedefs
# Add in the global Makefile
-include $(SDK_PATH)Source/templates/gcc/Makefile.common
+include ../Makefile.common
diff --git a/nRF51822/projects/hrm/README.md b/nRF51822/projects/hrm/README.md
index c0b9bcf..cf846d8 100644
--- a/nRF51822/projects/hrm/README.md
+++ b/nRF51822/projects/hrm/README.md
@@ -1,21 +1,27 @@
-Project Name
-============
+Heart Rate Monitor
+==================
-About this project
+This project instantiates a standard [Heart Rate Monitor service](https://developer.bluetooth.org/gatt/services/Pages/ServiceViewer.aspx?u=org.bluetooth.service.heart_rate.xml), which can be viewed using tools like nRF Toolbox from Nordic Semiconductors (available on iOS and Android in the respective app stores).
+
+Target SDK/SD
+=============
+
+- **SDK**: v5.2.0
+- **SoftDevice**: v6.0.0
Building this Project
=====================
To build a clean copy of your project in release mode, enter the same folder as your Makefile on the command-line and enter the following command:
-- make clean release
+```
+ make clean release
+```
Other relevant make targets are:
-- make
-- make debug
-- make flash-softdevice (flashes Softdevice via JLink)
-- make flash (flashes output hex file via JLink)
-- make erase-all (erases flash)
-- make startdebug - (starts GDBServer & GDB via JLink)
-- make stopdebug - (stops GDBServer)
+- `make` is an alias for `make debug` below
+- `make debug` builds a .hex file that includes debug data (larger, unoptimized binaries useful to debug via GDB Server)
+- `make release` builds an optimized release version of the firmware
+- `make clean` removes and previous build artifacts
+- `make flash` flashes the nRF51 via JLink and nrfjprog.exe (currently Windows only)
diff --git a/nRF51822/projects/hrm/boards/board_pca10001.c b/nRF51822/projects/hrm/boards/board_pca10001.c
index 84765c9..8351717 100644
--- a/nRF51822/projects/hrm/boards/board_pca10001.c
+++ b/nRF51822/projects/hrm/boards/board_pca10001.c
@@ -72,9 +72,9 @@ static inline uint8_t button_gpio_to_number(uint8_t pin_no)
be handled in application code.
*/
/**************************************************************************/
-static void button_event_handler(uint8_t pin_no);
-static void button_event_handler(uint8_t pin_no)
+static void button_event_handler(uint8_t pin_no, uint8_t button_action)
{
+ (void) button_action;
boardButtonCallback ( button_gpio_to_number(pin_no) );
}
@@ -163,7 +163,7 @@ void boardInit(void)
button_cfg[i] = (app_button_cfg_t)
{
.pin_no = button_gpio[i],
- .active_high = BOARD_BUTTON_ACTIVE_STATE ? true : false,
+ .active_state = BOARD_BUTTON_ACTIVE_STATE ? true : false,
.pull_cfg = NRF_GPIO_PIN_PULLUP,
.button_handler = button_event_handler
};
diff --git a/nRF51822/projects/hrm/btle.c b/nRF51822/projects/hrm/btle.c
index 26aac2c..4e9b765 100644
--- a/nRF51822/projects/hrm/btle.c
+++ b/nRF51822/projects/hrm/btle.c
@@ -22,7 +22,7 @@
#include "btle_gap.h"
#include "btle_advertising.h"
-//#include "custom/custom_helper.h"
+#include "custom_helper.h"
//--------------------------------------------------------------------+
// MACRO CONSTANT TYPEDEF
diff --git a/nRF51822/projects/hrm/custom_helper.c b/nRF51822/projects/hrm/custom_helper.c
new file mode 100644
index 0000000..9d4a7f4
--- /dev/null
+++ b/nRF51822/projects/hrm/custom_helper.c
@@ -0,0 +1,152 @@
+/**************************************************************************/
+/*!
+ @file custom_helper.c
+*/
+/**************************************************************************/
+
+#include "custom_helper.h"
+
+/**************************************************************************/
+/*!
+ @brief Adds the base UUID to the custom service. All UUIDs used
+ by this service are based on this 128-bit UUID.
+
+ @note This UUID needs to be added to the SoftDevice stack before
+ adding the service's primary service via
+ 'sd_ble_gatts_service_add'
+
+ @param[in] p_uuid_base A pointer to the 128-bit UUID array (8*16)
+
+ @returns The UUID type.
+ A return value of 0 should be considered an error.
+
+ @retval 0x00 BLE_UUID_TYPE_UNKNOWN
+ @retval 0x01 BLE_UUID_TYPE_BLE
+ @retval 0x02 BLE_UUID_TYPE_VENDOR_BEGIN
+
+ @section EXAMPLE
+ @code
+
+ // Take note that bytes 2/3 are blank since these are used to identify
+ // the primary service and individual characteristics
+ #define CFG_CUSTOM_UUID_BASE "\x6E\x40\x00\x00\xB5\xA3\xF3\x93\xE0\xA9\xE5\x0E\x24\xDC\xCA\x9E"
+
+ uint8_t uuid_type = custom_add_uuid_base(CFG_CUSTOM_UUID_BASE);
+ ASSERT(uuid_type > 0, ERROR_NOT_FOUND);
+
+ // We can now safely add the primary service and any characteristics
+ // for our custom service ...
+
+ @endcode
+*/
+/**************************************************************************/
+uint8_t custom_add_uuid_base(uint8_t const * const p_uuid_base)
+{
+ ble_uuid128_t base_uuid;
+ uint8_t uuid_type = 0;
+
+ /* Reverse the bytes since ble_uuid128_t is LSB */
+ for(uint8_t i=0; i<16; i++)
+ {
+ base_uuid.uuid128[i] = p_uuid_base[15-i];
+ }
+
+ ASSERT_INT( ERROR_NONE, sd_ble_uuid_vs_add( &base_uuid, &uuid_type ), 0);
+
+ return uuid_type;
+}
+
+/**************************************************************************/
+/*!
+
+*/
+/**************************************************************************/
+error_t custom_decode_uuid_base(uint8_t const * const p_uuid_base, ble_uuid_t * p_uuid)
+{
+ uint8_t uuid_base_le[16];
+
+ /* Reverse the bytes since ble_uuid128_t is LSB */
+ for(uint8_t i=0; i<16; i++)
+ {
+ uuid_base_le[i] = p_uuid_base[15-i];
+ }
+
+ ASSERT_STATUS( sd_ble_uuid_decode(16, uuid_base_le, p_uuid) );
+
+ return ERROR_NONE;
+}
+
+/**************************************************************************/
+/*!
+ @brief Adds a new characteristic to the custom service, assigning
+ properties, a UUID add-on value, etc.
+
+ @param[in] service_handle
+ @param[in] p_uuid The 16-bit value to add to the base UUID
+ for this characteristic (normally >1
+ since 1 is typically used by the primary
+ service).
+ @param[in] char_props The characteristic properties, as
+ defined by ble_gatt_char_props_t
+ @param[in] max_length The maximum length of this characeristic
+ @param[in] p_char_handle
+
+ @returns
+ @retval ERROR_NONE Everything executed normally
+*/
+/**************************************************************************/
+error_t custom_add_in_characteristic(uint16_t service_handle, ble_uuid_t* p_uuid, ble_gatt_char_props_t char_props,
+ uint8_t *p_data, uint16_t min_length, uint16_t max_length,
+ ble_gatts_char_handles_t* p_char_handle)
+{
+ /* Characteristic metadata */
+ ble_gatts_attr_md_t cccd_md;
+
+ if ( char_props.notify || char_props.indicate )
+ {
+ /* Notification requires cccd */
+ memclr_( &cccd_md, sizeof(ble_gatts_attr_md_t) );
+ cccd_md.vloc = BLE_GATTS_VLOC_STACK;
+ BLE_GAP_CONN_SEC_MODE_SET_OPEN(&cccd_md.read_perm);
+ BLE_GAP_CONN_SEC_MODE_SET_OPEN(&cccd_md.write_perm);
+ }
+
+ ble_gatts_char_md_t char_md =
+ {
+ .char_props = char_props,
+ .p_cccd_md = (char_props.notify || char_props.indicate ) ? &cccd_md : NULL
+ };
+
+ /* Attribute declaration */
+ ble_gatts_attr_md_t attr_md =
+ {
+ .vloc = BLE_GATTS_VLOC_STACK,
+ .vlen = (min_length == max_length) ? 0 : 1
+ };
+
+ if ( char_props.read || char_props.notify || char_props.indicate )
+ {
+ BLE_GAP_CONN_SEC_MODE_SET_OPEN(&attr_md.read_perm);
+ }
+
+ if ( char_props.write )
+ {
+ BLE_GAP_CONN_SEC_MODE_SET_OPEN(&attr_md.write_perm);
+ }
+
+ ble_gatts_attr_t attr_char_value =
+ {
+ .p_uuid = p_uuid,
+ .p_attr_md = &attr_md,
+ .init_len = min_length,
+ .max_len = max_length,
+ .p_value = p_data
+ };
+
+ ASSERT_STATUS ( sd_ble_gatts_characteristic_add(service_handle,
+ &char_md,
+ &attr_char_value,
+ p_char_handle) );
+
+ return ERROR_NONE;
+}
diff --git a/nRF51822/projects/hrm/custom_helper.h b/nRF51822/projects/hrm/custom_helper.h
new file mode 100644
index 0000000..a9ffb7c
--- /dev/null
+++ b/nRF51822/projects/hrm/custom_helper.h
@@ -0,0 +1,27 @@
+/**************************************************************************/
+/*!
+ @file custom_helper.h
+*/
+/**************************************************************************/
+#ifndef _CUSTOM_HELPER_H_
+#define _CUSTOM_HELPER_H_
+
+#ifdef __cplusplus
+ extern "C" {
+#endif
+
+#include "common/common.h"
+#include "ble.h"
+
+uint8_t custom_add_uuid_base(uint8_t const * const p_uuid_base);
+error_t custom_decode_uuid(uint8_t const * const p_uuid_base, ble_uuid_t * p_uuid);
+
+error_t custom_add_in_characteristic(uint16_t service_handle, ble_uuid_t* p_uuid, ble_gatt_char_props_t properties,
+ uint8_t *p_data, uint16_t min_length, uint16_t max_length,
+ ble_gatts_char_handles_t* p_char_handle);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/nRF51822/projects/hrm/projectconfig.h b/nRF51822/projects/hrm/projectconfig.h
index 1ba52f6..2afe0f3 100644
--- a/nRF51822/projects/hrm/projectconfig.h
+++ b/nRF51822/projects/hrm/projectconfig.h
@@ -136,8 +136,8 @@
#define CFG_GAP_APPEARANCE BLE_APPEARANCE_GENERIC_TAG
#define CFG_GAP_LOCAL_NAME "HRM"
- #define CFG_GAP_CONNECTION_MIN_INTERVAL_MS 500 /**< Minimum acceptable connection interval */
- #define CFG_GAP_CONNECTION_MAX_INTERVAL_MS 1000 /**< Maximum acceptable connection interval */
+ #define CFG_GAP_CONNECTION_MIN_INTERVAL_MS 10 /**< Minimum acceptable connection interval */
+ #define CFG_GAP_CONNECTION_MAX_INTERVAL_MS 100 /**< Maximum acceptable connection interval */
#define CFG_GAP_CONNECTION_SUPERVISION_TIMEOUT_MS 4000 /**< Connection supervisory timeout */
#define CFG_GAP_CONNECTION_SLAVE_LATENCY 0 /**< Slave Latency in number of connection events. */
diff --git a/nRF51822/projects/hrm/pstorage_platform.h b/nRF51822/projects/hrm/pstorage_platform.h
index 94aac3d..e65e4df 100644
--- a/nRF51822/projects/hrm/pstorage_platform.h
+++ b/nRF51822/projects/hrm/pstorage_platform.h
@@ -33,9 +33,10 @@
#define PSTORAGE_MAX_APPLICATIONS 2 /**< Maximum number of applications that can be registered with the module, configurable based on system requirements. */
#define PSTORAGE_MIN_BLOCK_SIZE 0x0010 /**< Minimum size of block that can be registered with the module. Should be configured based on system requirements, recommendation is not have this value to be at least size of word. */
-#define PSTORAGE_DATA_START_ADDR ((PSTORAGE_FLASH_PAGE_END - PSTORAGE_MAX_APPLICATIONS) \
+#define PSTORAGE_DATA_START_ADDR ((PSTORAGE_FLASH_PAGE_END - PSTORAGE_MAX_APPLICATIONS - 1) \
* PSTORAGE_FLASH_PAGE_SIZE) /**< Start address for persistent data, configurable according to system requirements. */
-#define PSTORAGE_DATA_END_ADDR (PSTORAGE_FLASH_PAGE_END * PSTORAGE_FLASH_PAGE_SIZE) /**< End address for persistent data, configurable according to system requirements. */
+#define PSTORAGE_DATA_END_ADDR ((PSTORAGE_FLASH_PAGE_END - 1) * PSTORAGE_FLASH_PAGE_SIZE) /**< End address for persistent data, configurable according to system requirements. */
+#define PSTORAGE_SWAP_ADDR PSTORAGE_DATA_END_ADDR /**< Top-most page is used as swap area for clear and update. */
#define PSTORAGE_MAX_BLOCK_SIZE PSTORAGE_FLASH_PAGE_SIZE /**< Maximum size of block that can be registered with the module. Should be configured based on system requirements. And should be greater than or equal to the minimum size. */
#define PSTORAGE_CMD_QUEUE_SIZE 30 /**< Maximum number of flash access commands that can be maintained by the module for all applications. Configurable. */
diff --git a/nRF51822/projects/uartservice/Makefile b/nRF51822/projects/uartservice/Makefile
index 370906c..95c4aee 100644
--- a/nRF51822/projects/uartservice/Makefile
+++ b/nRF51822/projects/uartservice/Makefile
@@ -50,7 +50,8 @@ C_SOURCE_FILES += nrf_delay.c
# Make sure we're pointing to the right SDK version
ROOT_PATH = ../../
-SDK_PATH = $(ROOT_PATH)lib/sdk/nRF51_SDK_v5.1.0.36092/Nordic/nrf51822/
+SDK_PATH = $(ROOT_PATH)lib/sdk/nRF51_SDK_v5.2.0.39364/Nordic/nrf51822/
+SOFTDEVICE = $(ROOT_PATH)lib/softdevice/s110_nrf51822_6.0.0/s110_nrf51822_6.0.0_softdevice.hex
# Include the correct SoftDevice header files
INCLUDEPATHS += -I"$(ROOT_PATH)lib/softdevice/s110_nrf51822_6.0.0/s110_nrf51822_6.0.0_API/include"
@@ -69,4 +70,4 @@ INCLUDEPATHS += -I"$(SDK_PATH)Include/sd_common"
CFLAGS += -DBLE_STACK_SUPPORT_REQD
# Add in the global Makefile
-include $(SDK_PATH)Source/templates/gcc/Makefile.common
+include ../Makefile.common
diff --git a/nRF51822/projects/uartservice/README.md b/nRF51822/projects/uartservice/README.md
index 56a6986..030b63b 100644
--- a/nRF51822/projects/uartservice/README.md
+++ b/nRF51822/projects/uartservice/README.md
@@ -12,7 +12,7 @@ A sample 'UART' type service with two characteristics is defined as follows:
Target SDK/SD
=============
-- **SDK**: v5.1.0
+- **SDK**: v5.2.0
- **SoftDevice**: v6.0.0
Building this Project
diff --git a/nRF51822/projects/uartservice/boards/board_pca10001.c b/nRF51822/projects/uartservice/boards/board_pca10001.c
index f10c9fe..17ec314 100644
--- a/nRF51822/projects/uartservice/boards/board_pca10001.c
+++ b/nRF51822/projects/uartservice/boards/board_pca10001.c
@@ -41,12 +41,13 @@ void boardLED(uint8_t mask_on, uint8_t mask_off)
be handled in application code.
*/
/**************************************************************************/
-static void button_event_handler(uint8_t pin_no);
-static void button_event_handler(uint8_t pin_no)
+static void button_event_handler(uint8_t pin_no, uint8_t button_action)
{
+ (void) button_action;
boardButtonCallback ( button_gpio_to_number(pin_no) );
}
+
/**************************************************************************/
/*!
@brief Get current state of the specific button
@@ -102,7 +103,7 @@ void boardInit(void)
button_cfg[i] = (app_button_cfg_t)
{
.pin_no = button_gpio[i],
- .active_high = BOARD_BUTTON_ACTIVE_STATE ? true : false,
+ .active_state = BOARD_BUTTON_ACTIVE_STATE ? true : false,
.pull_cfg = NRF_GPIO_PIN_PULLUP,
.button_handler = button_event_handler
};
diff --git a/nRF51822/projects/uartservice/btle.c b/nRF51822/projects/uartservice/btle.c
index 6640aa0..98ac76b 100644
--- a/nRF51822/projects/uartservice/btle.c
+++ b/nRF51822/projects/uartservice/btle.c
@@ -47,13 +47,36 @@
#include "btle_gap.h"
#include "btle_advertising.h"
#include "custom_helper.h"
+#include "btle_uart.h"
-static void service_error_callback ( uint32_t nrf_error );
-void assert_nrf_callback ( uint16_t line_num, const uint8_t * p_file_name );
-void app_error_handler ( uint32_t error_code, uint32_t line_num, const uint8_t * p_file_name );
-static error_t bond_manager_init ( void );
-static void btle_handler ( ble_evt_t * p_ble_evt );
-static void btle_soc_event_handler ( uint32_t sys_evt );
+//--------------------------------------------------------------------+
+// MACRO CONSTANT TYPEDEF
+//--------------------------------------------------------------------+
+btle_service_driver_t btle_service_list[] =
+{
+ {
+ .uuid_base = BLE_UART_UUID_BASE,
+ .uuid16 = BLE_UART_UUID_PRIMARY_SERVICE,
+ .init = uart_service_init,
+ .event_handler = uart_service_handler
+ },
+};
+
+enum {
+ BTLE_SERVICE_COUNT = sizeof(btle_service_list) / sizeof(btle_service_driver_t)
+};
+
+//--------------------------------------------------------------------+
+// INTERNAL OBJECT & FUNCTION DECLARATION
+//--------------------------------------------------------------------+
+static void service_error_callback(uint32_t nrf_error);
+void assert_nrf_callback(uint16_t line_num, const uint8_t * p_file_name);
+void app_error_handler(uint32_t error_code, uint32_t line_num, const uint8_t * p_file_name);
+
+static error_t bond_manager_init(void);
+
+static void btle_handler(ble_evt_t * p_ble_evt);
+static void btle_soc_event_handler(uint32_t sys_evt);
/**************************************************************************/
/*!
@@ -66,7 +89,7 @@ static void btle_soc_event_handler ( uint32_t sys_evt );
static inline bool is_all_zeros(uint8_t arr[], uint32_t count) ATTR_ALWAYS_INLINE ATTR_PURE;
static inline bool is_all_zeros(uint8_t arr[], uint32_t count)
{
- for ( uint32_t i = 0; i < count; i++)
+ for ( uint32_t i = 0; i < count; i++)
{
if (arr[i] != 0 ) return false;
}
@@ -79,7 +102,7 @@ static inline bool is_all_zeros(uint8_t arr[], uint32_t count)
Initialises BTLE and the underlying HW/SoftDevice
*/
/**************************************************************************/
-error_t btle_init(btle_service_t service_list[], uint8_t const service_count)
+error_t btle_init(void)
{
/* Initialise the SoftDevice using an external 32kHz XTAL for LFCLK */
SOFTDEVICE_HANDLER_INIT(NRF_CLOCK_LFCLKSRC_XTAL_20_PPM, false);
@@ -94,11 +117,10 @@ error_t btle_init(btle_service_t service_list[], uint8_t const service_count)
/* Initialise GAP */
btle_gap_init();
- /* Initialise any services present on the GATT Server */
- /* This sequences will be repeated for every service */
- for ( uint8_t sid = 0; sid < service_count; sid++ )
+ /* Initialise Services */
+ for(uint16_t i=0; iuuid_base, 16) )
@@ -113,86 +135,15 @@ error_t btle_init(btle_service_t service_list[], uint8_t const service_count)
ASSERT( p_service->uuid_type >= BLE_UUID_TYPE_VENDOR_BEGIN, ERROR_INVALIDPARAMETER );
}
- /* Add the primary GATT service first ... */
- ble_uuid_t service_uuid = { .type = p_service->uuid_type, .uuid = p_service->uuid };
- ASSERT_STATUS( sd_ble_gatts_service_add(BLE_GATTS_SRVC_TYPE_PRIMARY, &service_uuid, &p_service->handle) );
-
- /* ... then add all of the GATT characteristics */
- for(uint8_t cid=0; cidchar_count; cid++)
- {
- btle_characteristic_t * p_char = p_service->char_pool[cid];
- ble_uuid_t char_uuid = { .type = p_service->uuid_type, .uuid = p_char->uuid };
-
- ASSERT_STATUS(custom_add_in_characteristic(p_service->handle, &char_uuid, p_char->properties,
- p_char->init_value, p_char->len_min, p_char->len_max,
- &p_char->handle) );
- }
+ if ( p_service->init != NULL) ASSERT_STATUS( p_service->init(p_service->uuid_type) );
}
- /* Now we can start the advertising process */
- btle_advertising_init(service_list, service_count);
+ btle_advertising_init(btle_service_list, BTLE_SERVICE_COUNT);
btle_advertising_start();
return ERROR_NONE;
}
-/**************************************************************************/
-/*!
- This function will attempt to update the value of a GATT characteristic
-
- @param[in] p_char A pointer to the characteristic to update
- @param[in] p_data A pointer to the data to use when updating
- @param[in] len The size (in bytes) of p_data
-
- @returns ERROR_NONE if the update was successful, otherwise an
- appropriate error_t value
-*/
-/**************************************************************************/
-error_t btle_characteristic_update(btle_characteristic_t const * p_char, void const * p_data, uint16_t len)
-{
- uint16_t const conn_handle = btle_gap_get_connection();
-
- /* Special treatment is required if notify or indicate flags are set */
- if ( (p_char->properties.notify || p_char->properties.indicate) && (conn_handle != BLE_CONN_HANDLE_INVALID) )
- {
- /* HVX params for the characteristic value */
- ble_gatts_hvx_params_t const hvx_params =
- {
- .handle = p_char->handle.value_handle,
- .type = p_char->properties.notify ? BLE_GATT_HVX_NOTIFICATION : BLE_GATT_HVX_INDICATION,
- .offset = 0,
- .p_data = (uint8_t*) p_data,
- .p_len = &len
- };
-
- /* Now pass the params down to the SD ... */
- error_t error = sd_ble_gatts_hvx(conn_handle, &hvx_params);
-
- /* ... and make sure nothing unfortunate happened */
- switch(error)
- {
- /* Ignore the following three error types */
- case ERROR_NONE :
- case ERROR_INVALID_STATE : // Notification/indication bit not enabled in CCCD
- case ERROR_BLEGATTS_SYS_ATTR_MISSING :
- break;
-
- /* Make sure that the local value is updated and handle any other */
- /* error types errors here */
- default:
- ASSERT_STATUS ( sd_ble_gatts_value_set(p_char->handle.value_handle, 0, &len, p_data) );
- ASSERT_STATUS ( error );
- break;
- }
- }
- else
- {
- /* If notify or indicate aren't set we can update the value like this */
- ASSERT_STATUS ( sd_ble_gatts_value_set(p_char->handle.value_handle, 0, &len, p_data) );
- }
-
- return ERROR_NONE;
-}
/**************************************************************************/
/*!
@@ -216,7 +167,15 @@ static void btle_handler(ble_evt_t * p_ble_evt)
ble_bondmngr_on_ble_evt(p_ble_evt);
ble_conn_params_on_ble_evt(p_ble_evt);
- /* Next call the application specific event handlers */
+ /* Service Handler */
+ for(uint16_t i=0; iheader.evt_id)
{
case BLE_GAP_EVT_CONNECTED:
@@ -225,7 +184,7 @@ static void btle_handler(ble_evt_t * p_ble_evt)
case BLE_GAP_EVT_DISCONNECTED:
/* Since we are not in a connection and have not started advertising, store bonds */
- ASSERT_STATUS_RET_VOID ( ble_bondmngr_bonded_centrals_store() );
+ (void) ble_bondmngr_bonded_centrals_store();
/* Start advertising again (change this if necessary!) */
btle_advertising_start();
break;
diff --git a/nRF51822/projects/uartservice/btle.h b/nRF51822/projects/uartservice/btle.h
index 054ae95..25bc34f 100644
--- a/nRF51822/projects/uartservice/btle.h
+++ b/nRF51822/projects/uartservice/btle.h
@@ -45,32 +45,14 @@
#include "ble.h"
#include "btle_uart.h"
-enum
-{
- BTLE_MAX_CHARACTERISTIC_PER_SERVICE = 10
-};
-
-/* Abstraction for custom GATT characteristics */
-typedef struct
-{
- uint16_t uuid;
- ble_gatt_char_props_t properties; // Characteristic properties/access-rights
- uint16_t len_min; // Min length (in bytes) for the char value
- uint16_t len_max; // Max length (in bytes) for the char value
- uint8_t const * init_value; // Initial value for the char
- ble_gatts_char_handles_t handle; // Characteristic handle
-} btle_characteristic_t;
+typedef struct {
+ error_t (* const init) (uint8_t);
+ void (* const event_handler) (ble_evt_t * );
-/* Abstraction for custom GATT services */
-typedef struct
-{
- uint8_t uuid_base[16]; // All zeroes = standard BLE service
- uint16_t uuid; // The primary service UUID
- uint8_t uuid_type; // Standard = 1, Custom = 2, Invalid = 0
- uint16_t handle; // Service handle
- uint8_t char_count; // Number of characteristics
- btle_characteristic_t* char_pool[BTLE_MAX_CHARACTERISTIC_PER_SERVICE];
-} btle_service_t;
+ uint8_t uuid_base[16]; /* Full base UUID, All zeroes = standard BLE service */
+ uint16_t uuid16; /* The primary service UUID */
+ uint8_t uuid_type; /* Standard = 1, Custom = 2+, Invalid = 0 */
+}btle_service_driver_t;
/* Characteristic Presentation Format unit values aren't defined by Nordic */
/* See https://developer.bluetooth.org/gatt/units/Pages/default.aspx */
@@ -187,8 +169,7 @@ typedef enum ble_gatt_unit_e
BLE_GATT_CPF_UNIT_IRRADIANCE_WATT_PER_SQUARE_METRE = 0x27B6
} ble_gatt_unit_t;
-error_t btle_init ( btle_service_t service_list[], uint8_t const service_count );
-error_t btle_characteristic_update ( btle_characteristic_t const * p_char, void const * p_data, uint16_t len );
+error_t btle_init(void);
#ifdef __cplusplus
}
diff --git a/nRF51822/projects/uartservice/btle_advertising.c b/nRF51822/projects/uartservice/btle_advertising.c
index 4d79764..d3af1ab 100644
--- a/nRF51822/projects/uartservice/btle_advertising.c
+++ b/nRF51822/projects/uartservice/btle_advertising.c
@@ -65,7 +65,7 @@
@returns
*/
/**************************************************************************/
-error_t btle_advertising_init(btle_service_t const service_list[], uint16_t const service_count)
+error_t btle_advertising_init( btle_service_driver_t const service_list[], uint16_t const service_count)
{
enum {
ADV_UUID_MAX = 20,
@@ -91,11 +91,11 @@ error_t btle_advertising_init(btle_service_t const service_list[], uint16_t cons
bool encounter_16_uuid_already = false;
bool encounter_128_uuid_already = false;
- /* Standard Services are added first (higher priority), modify to your own need if required */
+ /* Create Advertising UUID following the order of service list */
for(uuid_count=0; uuid_count < service_count && byte_left > 0; uuid_count++)
{
adv_uuids[uuid_count].type = service_list[uuid_count].uuid_type;
- adv_uuids[uuid_count].uuid = service_list[uuid_count].uuid;
+ adv_uuids[uuid_count].uuid = service_list[uuid_count].uuid16;
/*------------- Standard 16-bit UUID -------------*/
if ( BLE_UUID_TYPE_BLE == adv_uuids[uuid_count].type )
diff --git a/nRF51822/projects/uartservice/btle_advertising.h b/nRF51822/projects/uartservice/btle_advertising.h
index c170037..cd80a84 100644
--- a/nRF51822/projects/uartservice/btle_advertising.h
+++ b/nRF51822/projects/uartservice/btle_advertising.h
@@ -50,7 +50,7 @@
#include "common/common.h"
-error_t btle_advertising_init(btle_service_t const service_list[], uint16_t const service_count);
+error_t btle_advertising_init( btle_service_driver_t const service_list[], uint16_t const service_count);
error_t btle_advertising_start(void);
#ifdef __cplusplus
diff --git a/nRF51822/projects/uartservice/btle_uart.c b/nRF51822/projects/uartservice/btle_uart.c
index ad10ec9..2a6be25 100644
--- a/nRF51822/projects/uartservice/btle_uart.c
+++ b/nRF51822/projects/uartservice/btle_uart.c
@@ -40,11 +40,11 @@
#include "btle_uart.h"
#include "custom_helper.h"
#include "ble_srv_common.h"
+#include "btle_gap.h"
typedef struct
{
uint16_t service_handle;
- uint16_t conn_handle;
uint8_t uuid_type;
ble_gatts_char_handles_t in_handle;
ble_gatts_char_handles_t out_handle;
@@ -66,7 +66,6 @@ static uart_srvc_t m_uart_srvc;
error_t uart_service_init(uint8_t uuid_base_type)
{
memclr_(&m_uart_srvc, sizeof(uart_srvc_t));
- m_uart_srvc.conn_handle = BLE_CONN_HANDLE_INVALID;
m_uart_srvc.uuid_type = uuid_base_type;
/* Add the primary service first ... */
@@ -79,8 +78,15 @@ error_t uart_service_init(uint8_t uuid_base_type)
/* ... then add the individual characteristics */
ble_uuid.uuid = BLE_UART_UUID_IN;
+
+ ble_gatt_char_props_t send_properties =
+ {
+ .indicate = BLE_UART_SEND_INDICATION,
+ .notify = 1-BLE_UART_SEND_INDICATION
+ };
+
ASSERT_STATUS(custom_add_in_characteristic(m_uart_srvc.service_handle,
- &ble_uuid, (ble_gatt_char_props_t) {.indicate = 1},
+ &ble_uuid, send_properties,
NULL, 1, BLE_UART_MAX_LENGTH,
&m_uart_srvc.in_handle) );
@@ -107,14 +113,8 @@ void uart_service_handler(ble_evt_t * p_ble_evt)
{
switch (p_ble_evt->header.evt_id)
{
- case BLE_GAP_EVT_CONNECTED:
- m_uart_srvc.conn_handle = p_ble_evt->evt.gap_evt.conn_handle;
- break;
-
- case BLE_GAP_EVT_DISCONNECTED:
- m_uart_srvc.conn_handle = BLE_CONN_HANDLE_INVALID;
- break;
+#if BLE_UART_SEND_INDICATION
/* Capture the 'indicate' confirmation from the central here */
case BLE_GATTS_EVT_HVC:
if( m_uart_srvc.in_handle.value_handle == p_ble_evt->evt.gatts_evt.params.hvc.handle )
@@ -135,6 +135,7 @@ void uart_service_handler(ble_evt_t * p_ble_evt)
uart_service_indicate_callback(false);
}
break;
+#endif
/* Handle incoming data on the RXD characteristic */
case BLE_GATTS_EVT_WRITE:
@@ -171,19 +172,21 @@ void uart_service_handler(ble_evt_t * p_ble_evt)
/**************************************************************************/
error_t uart_service_send(uint8_t p_data[], uint16_t length)
{
- ASSERT( m_uart_srvc.conn_handle != BLE_CONN_HANDLE_INVALID, ERROR_INVALID_STATE);
+ uint16_t const conn_handle = btle_gap_get_connection();
+
+ ASSERT( conn_handle != BLE_CONN_HANDLE_INVALID, ERROR_INVALID_STATE);
ASSERT( length <= BLE_UART_MAX_LENGTH, ERROR_INVALID_PARAM);
ble_gatts_hvx_params_t hvx_params =
{
.handle = m_uart_srvc.in_handle.value_handle,
- .type = BLE_GATT_HVX_INDICATION,
+ .type = BLE_UART_SEND_INDICATION ? BLE_GATT_HVX_INDICATION : BLE_GATT_HVX_NOTIFICATION,
.p_data = p_data,
.p_len = &length,
};
m_uart_srvc.is_indication_waiting = true;
- ASSERT_STATUS( sd_ble_gatts_hvx(m_uart_srvc.conn_handle, &hvx_params) );
+ ASSERT_STATUS( sd_ble_gatts_hvx(conn_handle, &hvx_params) );
return ERROR_NONE;
}
diff --git a/nRF51822/projects/uartservice/btle_uart.h b/nRF51822/projects/uartservice/btle_uart.h
index 76941cd..043e8d0 100644
--- a/nRF51822/projects/uartservice/btle_uart.h
+++ b/nRF51822/projects/uartservice/btle_uart.h
@@ -66,6 +66,7 @@
#define BLE_UART_UUID_PRIMARY_SERVICE (1)
#define BLE_UART_UUID_IN (3)
#define BLE_UART_UUID_OUT (2)
+ #define BLE_UART_SEND_INDICATION (0)
/*=========================================================================*/
error_t uart_service_init ( uint8_t uuid_base_type );
diff --git a/nRF51822/projects/uartservice/main.c b/nRF51822/projects/uartservice/main.c
index c5379a9..baef4ae 100644
--- a/nRF51822/projects/uartservice/main.c
+++ b/nRF51822/projects/uartservice/main.c
@@ -10,42 +10,6 @@
#include "nrf_gpiote.h"
#include "nrf_gpio.h"
-/* ---------------------------------------------------------------------- */
-/* HEART RATE SERVICE */
-/* ---------------------------------------------------------------------- */
-/*------------- Measurement Characteristic -------------*/
-btle_characteristic_t hrm_char_measure =
-{
- .uuid = BLE_UUID_HEART_RATE_MEASUREMENT_CHAR,
- .properties = { .notify = 1 },
- .len_min = 2,
- .len_max = 2,
- .init_value = NULL
-};
-
-/*------------- Body Location Characteristic -------------*/
-btle_characteristic_t hrm_char_body_location =
-{
- .uuid = BLE_UUID_BODY_SENSOR_LOCATION_CHAR,
- .properties = { .read = 1 },
- .len_min = 1,
- .len_max = 1,
- .init_value = (uint8_t []) { 3 }
-};
-
-btle_service_t btle_service[] =
-{
- {
- .uuid = BLE_UUID_HEART_RATE_SERVICE,
- .char_count = 2, // TODO remove
- .char_pool = { &hrm_char_measure, &hrm_char_body_location }
- }
-};
-
-enum {
- SERVICE_COUNT = sizeof(btle_service) / sizeof(btle_service_t)
-};
-
#define CFG_LED_CONNECTION 0
#define CFG_LED_ALERT 1
#define CFG_LED_LINK_LOSS 1
@@ -79,24 +43,6 @@ void boardButtonCallback(uint8_t button_num)
}
}
-// periodically invoked by timer
-void heart_rate_measurement_task(void * p_context)
-{
- // https://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicViewer.aspx?u=org.bluetooth.characteristic.heart_rate_measurement.xml
- static struct {
- uint8_t flag;
- uint8_t value;
- }measurement = { 0, 70 };
-
- // get timer tick for random changes from -1 0 +1
- uint32_t tick;
- app_timer_cnt_get(&tick);
-
- measurement.value += (tick%3) - 1;
-
- btle_characteristic_update(&hrm_char_measure, &measurement, 2);
-}
-
/**************************************************************************/
/*!
@brief Main application entry point
@@ -104,20 +50,21 @@ void heart_rate_measurement_task(void * p_context)
/**************************************************************************/
int main(void)
{
- app_timer_id_t blinky_timer_id, hrm_timer_id;
+ app_timer_id_t blinky_timer_id, uart_timer_id;
/* Initialize the target HW */
boardInit();
- /* Initialise BLE and start advertising as an iBeacon */
- btle_init(btle_service, SERVICE_COUNT);
+ /* Initialise BLE and start advertising */
+ btle_init();
/* Initialise a 1 second blinky timer to show that we're alive */
ASSERT_STATUS ( app_timer_create(&blinky_timer_id, APP_TIMER_MODE_REPEATED, blinky_handler) );
ASSERT_STATUS ( app_timer_start (blinky_timer_id, APP_TIMER_TICKS(1000, CFG_TIMER_PRESCALER), NULL) );
- ASSERT_STATUS ( app_timer_create(&hrm_timer_id, APP_TIMER_MODE_REPEATED, heart_rate_measurement_task) );
- ASSERT_STATUS ( app_timer_start (hrm_timer_id, APP_TIMER_TICKS(1000, CFG_TIMER_PRESCALER), NULL) );
+ /* Initialise a 1 second UART timer */
+ ASSERT_STATUS ( app_timer_create(&uart_timer_id, APP_TIMER_MODE_REPEATED, uart_service_bridge_task) );
+ ASSERT_STATUS ( app_timer_start (uart_timer_id, APP_TIMER_TICKS(1000, CFG_TIMER_PRESCALER), NULL) );
ASSERT_STATUS( app_button_enable() );
diff --git a/nRF51822/projects/uartservice/projectconfig.h b/nRF51822/projects/uartservice/projectconfig.h
index 2cb0836..6806a83 100644
--- a/nRF51822/projects/uartservice/projectconfig.h
+++ b/nRF51822/projects/uartservice/projectconfig.h
@@ -125,7 +125,7 @@
BTLE SETTINGS
-----------------------------------------------------------------------*/
- #define CFG_BLE_TX_POWER_LEVEL 4 /**< in dBm (Valid values are -40, -20, -16, -12, -8, -4, 0, 4) */
+ #define CFG_BLE_TX_POWER_LEVEL 0 /**< in dBm (Valid values are -40, -20, -16, -12, -8, -4, 0, 4) */
/*---------------------------- BOND MANAGER ---------------------------*/
#define CFG_BLE_BOND_FLASH_PAGE_BOND (BLE_FLASH_PAGE_END-1) /**< Flash page used for bond manager bonding information.*/
@@ -134,14 +134,14 @@
/*--------------------------------- GAP -------------------------------*/
#define CFG_GAP_APPEARANCE BLE_APPEARANCE_GENERIC_TAG
- #define CFG_GAP_LOCAL_NAME "HRM"
+ #define CFG_GAP_LOCAL_NAME "UART"
- #define CFG_GAP_CONNECTION_MIN_INTERVAL_MS 500 /**< Minimum acceptable connection interval */
- #define CFG_GAP_CONNECTION_MAX_INTERVAL_MS 1000 /**< Maximum acceptable connection interval */
+ #define CFG_GAP_CONNECTION_MIN_INTERVAL_MS 10 /**< Minimum acceptable connection interval */
+ #define CFG_GAP_CONNECTION_MAX_INTERVAL_MS 100 /**< Maximum acceptable connection interval */
#define CFG_GAP_CONNECTION_SUPERVISION_TIMEOUT_MS 4000 /**< Connection supervisory timeout */
#define CFG_GAP_CONNECTION_SLAVE_LATENCY 0 /**< Slave Latency in number of connection events. */
- #define CFG_GAP_ADV_INTERVAL_MS 25 /**< The advertising interval in miliseconds, should be multiply of 0.625 */
+ #define CFG_GAP_ADV_INTERVAL_MS 25 /**< The advertising interval in milliseconds, should be multiply of 0.625 */
#define CFG_GAP_ADV_TIMEOUT_S 180 /**< The advertising timeout in units of seconds. */
/*=========================================================================*/
diff --git a/nRF51822/projects/uartservice/pstorage_platform.h b/nRF51822/projects/uartservice/pstorage_platform.h
index 4557c48..40a9624 100644
--- a/nRF51822/projects/uartservice/pstorage_platform.h
+++ b/nRF51822/projects/uartservice/pstorage_platform.h
@@ -33,9 +33,10 @@
#define PSTORAGE_MAX_APPLICATIONS 2 /**< Maximum number of applications that can be registered with the module, configurable based on system requirements. */
#define PSTORAGE_MIN_BLOCK_SIZE 0x0010 /**< Minimum size of block that can be registered with the module. Should be configured based on system requirements, recommendation is not have this value to be at least size of word. */
-#define PSTORAGE_DATA_START_ADDR ((PSTORAGE_FLASH_PAGE_END - PSTORAGE_MAX_APPLICATIONS) \
+#define PSTORAGE_DATA_START_ADDR ((PSTORAGE_FLASH_PAGE_END - PSTORAGE_MAX_APPLICATIONS - 1) \
* PSTORAGE_FLASH_PAGE_SIZE) /**< Start address for persistent data, configurable according to system requirements. */
-#define PSTORAGE_DATA_END_ADDR (PSTORAGE_FLASH_PAGE_END * PSTORAGE_FLASH_PAGE_SIZE) /**< End address for persistent data, configurable according to system requirements. */
+#define PSTORAGE_DATA_END_ADDR ((PSTORAGE_FLASH_PAGE_END - 1) * PSTORAGE_FLASH_PAGE_SIZE) /**< End address for persistent data, configurable according to system requirements. */
+#define PSTORAGE_SWAP_ADDR PSTORAGE_DATA_END_ADDR /**< Top-most page is used as swap area for clear and update. */
#define PSTORAGE_MAX_BLOCK_SIZE PSTORAGE_FLASH_PAGE_SIZE /**< Maximum size of block that can be registered with the module. Should be configured based on system requirements. And should be greater than or equal to the minimum size. */
#define PSTORAGE_CMD_QUEUE_SIZE 30 /**< Maximum number of flash access commands that can be maintained by the module for all applications. Configurable. */
diff --git a/nRF51822/tools/OSX/rknrfgo/RKNRFGO_V1.0.6.pkg b/nRF51822/tools/OSX/rknrfgo/RKNRFGO_V1.0.6.pkg
new file mode 100644
index 0000000..5eadcd0
Binary files /dev/null and b/nRF51822/tools/OSX/rknrfgo/RKNRFGO_V1.0.6.pkg differ
diff --git a/nRF51822/tools/OSX/rknrfgo/nrfjprog b/nRF51822/tools/OSX/rknrfgo/nrfjprog
new file mode 100644
index 0000000..15369e1
Binary files /dev/null and b/nRF51822/tools/OSX/rknrfgo/nrfjprog differ
diff --git a/nRF51822/tools/Windows/nordic/mergehex.exe b/nRF51822/tools/Windows/nordic/mergehex.exe
index d077180..d810e29 100644
Binary files a/nRF51822/tools/Windows/nordic/mergehex.exe and b/nRF51822/tools/Windows/nordic/mergehex.exe differ
diff --git a/nRF51822/tools/Windows/nordic/nrfjprog.dll b/nRF51822/tools/Windows/nordic/nrfjprog.dll
index c27217e..5f00bf3 100644
Binary files a/nRF51822/tools/Windows/nordic/nrfjprog.dll and b/nRF51822/tools/Windows/nordic/nrfjprog.dll differ
diff --git a/nRF51822/tools/Windows/nordic/nrfjprog.exe b/nRF51822/tools/Windows/nordic/nrfjprog.exe
index 3dd33f9..9021055 100644
Binary files a/nRF51822/tools/Windows/nordic/nrfjprog.exe and b/nRF51822/tools/Windows/nordic/nrfjprog.exe differ