Contract con_testfarm17


Contract Code


  
1 import currency # For buy function
2
3 #NFTs are always part of a collection.
4
5 collection_name = Variable() # The name of the collection for display
6 collection_owner = Variable() # Only the owner can mint new NFTs for this collection
7 collection_nfts = Hash(default_value=0) # All NFTs of the collection
8 collection_balances = Hash(default_value=0) # All user balances of the NFTs
9 collection_balances_approvals = Hash(default_value=0) # Approval amounts of certain NFTs
10 plants = Hash(default_value=0) #store various data related to plants and growing seasons
11 metadata = Hash()
12 nicknames = Hash()
13
14 random.seed()
15
16 @construct
17 def seed():
18 collection_name.set("Test_plants") # Sets the name
19 collection_owner.set(ctx.caller) # Sets the owner
20 metadata['operator'] = ctx.caller
21
22 metadata['growing_season_length'] = 2
23 metadata['plant price'] = 5
24 #metadata['event_handler'] = 'con_bbf_events_01'
25 metadata['ipfs_contract'] = 'con_testipfs1'
26
27 plants['growing_season'] = False
28 plants['growing_season_start_time'] = now
29 plants['count'] = 0
30 plants['active_generation'] = -1
31
32 nicknames = {}
33
34
35 @export
36 def change_metadata(key: str, new_value: str, convert_to_decimal: bool=False):
37 assert ctx.caller == metadata['operator'], "only operator can set metadata"
38 if convert_to_decimal:
39 new_value = decimal(new_value)
40 metadata[key] = new_value
41
42 # function to mint a new NFT
43 def mint_nft(name: str, description: str, ipfs_image_url: str, nft_metadata: dict, amount: int):
44 assert name != "", "Name cannot be empty"
45 assert collection_nfts[name] == 0, "Name already exists"
46 assert amount > 0, "You cannot transfer negative amounts"
47
48 collection_nfts[name] = {"description": description, "ipfs_image_url": ipfs_image_url, "nft_metadata": f"See collection_nfts[{name},'nft_metadata']", "amount": amount} # Adds NFT to collection with all details
49 collection_nfts[name,"nft_metadata"] = nft_metadata
50 collection_balances[ctx.caller, name] = amount # Mints the NFT
51
52 # standard transfer function
53 @export
54 def transfer(name: str, amount:int, to: str):
55 assert amount > 0, "You cannot transfer negative amounts"
56 assert name != "", "Please specify the name of the NFT you want to transfer"
57 assert collection_balances[ctx.caller, name] >= amount, "You don't have enough NFTs to send"
58
59 collection_balances[ctx.caller, name] -= amount # Removes amount from sender
60 collection_balances[to, name] += amount # Adds amount to receiver
61
62 # allows other account to spend on your behalf
63 @export
64 def approve(amount: int, name: str, to: str):
65 assert amount > 0, "Cannot approve negative amounts"
66
67 collection_balances_approvals[ctx.caller, to, name] += amount # Approves certain amount for spending by another account
68
69 # transfers on your behalf
70 @export
71 def transfer_from(name:str, amount:int, to: str, main_account: str):
72 assert amount > 0, 'Cannot send negative balances!'
73
74 assert collection_balances_approvals[main_account, to, name] >= amount, "Not enough NFTs approved to send! You have {} and are trying to spend {}"\
75 .format(collection_balances_approvals[main_account, to, name], amount)
76 assert collection_balances[main_account, name] >= amount, "Not enough NFTs to send!"
77
78 collection_balances_approvals[main_account, to, name] -= amount # Removes Approval Amount
79 collection_balances[main_account, name] -= amount # Removes amount from sender
80
81 collection_balances[to, name] += amount # Adds amount to receiver
82
83 @export
84 def start_growing_season():
85 assert collection_owner.get() == ctx.caller, "Only the owner can start a growing season."
86 grow_season = plants['growing_season']
87 assert grow_season == False, "It is already growing season."
88 growing_season_length = metadata['growing_season_length']
89 active_gen = plants['active_generation']
90 active_gen += 1
91 plants['growing_season'] = True
92 plants['growing_season_start_time'] = now
93 plants['growing_season_end_time'] = now + datetime.timedelta(minutes = growing_season_length)
94 plants[active_gen, 'finalize_time'] = now + datetime.timedelta(minutes = growing_season_length + 3)
95 plants['active_generation'] = active_gen
96 plants[active_gen, 'total_berries'] = 0
97 plants[active_gen, 'sellable_berries'] = 0
98 plants[active_gen, 'total_tau'] = 0
99 plants[active_gen, 'claimable_tau'] = 0
100 plants[active_gen,'stale_claim_time'] = now + datetime.timedelta(minutes = growing_season_length + 30)
101
102
103 @export
104 def buy_plant(nick : str):
105 assert plants['growing_season'] == True, 'The growing season has not started, so you cannot buy a plant.'
106 #assert plants['growing_season_end_time'] >= now + datetime.timedelta(days = 25), "It's too far into the growing season and you cannot buy a plant now."
107 assert not nick.isdigit(), "The plant nickname can't be an integer."
108 assert bool(collection_nfts[nick]) == False, "This nickname already exists."
109 assert nick.isalnum() == True, "Only alphanumeric characters allowed."
110 assert nick != "", "Name cannot be empty"
111 assert len(nick) >= 3, "The minimum length is 3 characters."
112 plant_generation = plants['active_generation']
113
114 plant_data = {
115 "current_water": (random.randint(70, 90)),
116 "current_bugs" : (random.randint(5, 25)),
117 "current_photosynthesis" : 0,
118 "current_nutrients" : (random.randint(70, 90)),
119 "current_weeds" : (random.randint(5, 25)),
120 "current_toxicity" : 0,
121 "current_weather" : 1,
122 "last_interaction" : now,
123 "last_daily" : now,
124 "last_calc" : now,
125 "alive" : True,
126 "last_squash_weed" : (now + datetime.timedelta(days = -1)),
127 "last_grow_light" : (now + datetime.timedelta(days = -1)),
128 "burn_amount" : 0
129 }
130
131 plant_calc_data = {
132 "previous_water": plant_data["current_water"],
133 "previous_bugs" : plant_data["current_bugs"],
134 "previous_nutrients" : plant_data["current_nutrients"],
135 "previous_weeds" : plant_data["current_weeds"],
136 "total_water": 0,
137 "total_bugs" : 0,
138 "total_nutrients" : 0,
139 "total_weeds": 0
140 }
141
142 p_count = plants['count'] + 1
143 name = f"Gen_{plant_generation}_{p_count}"
144 collection_nfts[nick] = [plant_generation , p_count]
145 payment(plant_generation, metadata['plant price'])
146
147 #assigns random, one time use IPFS image
148 ipfs_c = importlib.import_module(metadata['ipfs_contract'])
149 ipfs_image_url = ipfs_c.pick_random()
150
151 mint_nft(name,'This is a blueberry plant. Keep it alive and healthy by tending to it during growing season.' , ipfs_image_url , plant_data,1)
152 collection_nfts[name,'plant_calc_data'] = plant_calc_data
153 plants['count'] = p_count
154 return [plant_data["current_water"],plant_data["current_photosynthesis"],plant_data["current_bugs"],plant_data["current_nutrients"],plant_data["current_weeds"],plant_data['current_toxicity'],plant_data["burn_amount"],plant_data["current_weather"],ipfs_image_url]
155
156 def action_setup(plant_generation : int, plant_number : int):
157 active_generation = plants['active_generation']
158 assert plant_generation == active_generation, f'The plant you are trying to interact with is not part of the current generation. The current generation is {active_generation}.'
159 name = f'Gen_{plant_generation}_{plant_number}'
160 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
161 assert now <= plants['growing_season_end_time'], 'The growing season is not active, so you cannot interact with your plant.'
162 if ctx.caller.startswith('con_'): return
163 plant_data = collection_nfts[name,"nft_metadata"]
164 assert plant_data["alive"] == True, 'Your plant is dead due to neglect and you must buy a new plant to try again. Try not to kill it too.'
165
166 #interaction idle check. If idle too long, plant gets penalized.
167 if now > plant_data['last_interaction'] + datetime.timedelta(hours = 12):
168 plant_data["current_water"] -= (random.randint(5, 15))
169 plant_data["current_bugs"] += (random.randint(5, 15))
170 plant_data["current_nutrients"] -= (random.randint(5, 15))
171 plant_data["current_weeds"] += (random.randint(5, 15))
172
173 plant_data = daily_conditions(plant_data) #checks if weather and other daily conditions need updating
174 plant_data = totalizer_calc(plant_data,name) #checks if enough time has passed to add info to the plant totalizer calculations
175
176 #if (random.randint(1, 10)) == 10 : #10% chance of an event happening #RANDOM EVENTS NOT WORKING. COMMENTING OUT UNTIL FIXED
177 # event_contract = importlib.import_module(metadata['event_handler'])
178 # plant_data = event_contract.event(plant_data)
179
180 plant_data = dead_check(plant_data)
181 plant_data['last_interaction'] = now #resets the interaction time
182
183 plant_all = {
184 'plant_data' : plant_data,
185 'name' : name
186 }
187
188 return plant_all
189
190 def daily_conditions(plant_data):
191 while now - plant_data["last_daily"] > datetime.timedelta(days = 1): #Loops through to calculate changes to plant if it's been more than a day since the last day's changes. Does multiple days worth too if needed
192 current_weather = random.randint(1, 3) # 1=sunny 2=cloudy 3=rainy
193 if current_weather == 1:
194 plant_data["current_water"] -= (random.randint(10, 20)) #how much water is lost each sunny day
195 plant_data["current_photosynthesis"] += (random.randint(4, 6)) #How much photosynthesis increases each sunny day
196 if current_weather == 2:
197 plant_data["current_water"] -= (random.randint(5, 15)) #how much water is lost each cloudy day
198 plant_data["current_photosynthesis"] += (random.randint(2, 4)) #How much photosynthesis increases each cloudy day
199 if current_weather == 3:
200 plant_data["current_water"] += (random.randint(5, 25)) #how much water is gained each rainy day
201 plant_data["current_photosynthesis"] += (random.randint(1, 2)) #How much photosynthesis increases each rainy day
202
203 plant_data["current_bugs"] += (random.randint(5, 20)) #how many bugs are added each day
204 plant_data["current_nutrients"] -= (random.randint(5, 10)) #how many nutrients are consumed each day
205 plant_data["current_weeds"] += (random.randint(5, 20)) #how many weeds grow each day
206 plant_data["last_daily"] += datetime.timedelta(days = 1)
207 plant_data["current_weather"] = current_weather
208 plant_data['current_toxicity'] -= (random.randint(0, 2))
209
210 if plant_data['current_toxicity'] < 0:
211 plant_data['current_toxicity'] = 0
212
213 if plant_data['current_water'] > 100 : #water can't be above 100%
214 plant_data['current_water'] = 100
215
216 if plant_data['current_water'] < 0 : #water can't be below 0
217 plant_data['current_water'] = 0
218
219 if plant_data["current_photosynthesis"] > 100 :
220 plant_data["burn_amount"] += (plant_data["current_photosynthesis"]-100)
221 plant_data["current_photosynthesis"] = 100
222
223 return plant_data
224
225 def totalizer_calc(plant_data,name):
226 if now > plant_data['last_calc'] + datetime.timedelta(hours = 3):
227 delta = now - plant_data['last_calc']
228 delta_d = (delta.seconds / 86400)
229 plant_calc_data = collection_nfts[name,'plant_calc_data']
230 #This sections performs an integral on the various properties for use in determining total berries produced.
231 plant_calc_data["total_water"] += (delta_d**2*((plant_data["current_water"]/100-plant_calc_data["previous_water"]/100)/(delta_d))/2)+plant_calc_data["previous_water"]/100*delta_d
232 plant_calc_data["total_bugs"] += (delta_d**2*(((1-plant_data["current_bugs"]/100)-(1-plant_calc_data["previous_bugs"]/100))/(delta_d))/2)+(1-plant_calc_data["previous_bugs"]/100)*delta_d
233 plant_calc_data["total_nutrients"] += (delta_d**2*((plant_data["current_nutrients"]/100-plant_calc_data["previous_nutrients"]/100)/(delta_d))/2)+plant_calc_data["previous_nutrients"]/100*delta_d
234 plant_calc_data["total_weeds"] += (delta_d**2*(((1-plant_data["current_weeds"]/100)-(1-plant_calc_data["previous_weeds"]/100))/(delta_d))/2)+(1-plant_calc_data["previous_weeds"]/100)*delta_d
235 plant_data['last_calc'] = now
236 #Updates previous values for next calculation period.
237 plant_calc_data["previous_water"] = plant_data["current_water"]
238 plant_calc_data["previous_bugs"] = plant_data["current_bugs"]
239 plant_calc_data["previous_nutrients"] = plant_data["current_nutrients"]
240 plant_calc_data["previous_weeds"] = plant_data["current_weeds"]
241
242 collection_nfts[name,'plant_calc_data'] = plant_calc_data
243
244 return plant_data
245
246 def dead_check(plant_data): #checks to see if your plant has died.
247 if plant_data["current_toxicity"] >= 100 or plant_data["current_bugs"] >= 100 or plant_data["current_weeds"] >= 100 or plant_data["burn_amount"] >= 100:
248 plant_data["alive"] = False
249 if plant_data["current_water"] <= 0 or plant_data["current_nutrients"] <= 0:
250 plant_data["alive"] = False
251 return plant_data
252
253 @export
254 def water(plant_generation : int, plant_number : int, num_times : int = 1): #Water your plant to increase its current_water.
255 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
256 plant_data = plant_all['plant_data']
257 name = plant_all['name']
258
259 for x in range(0, num_times):
260 plant_data['current_water'] += (random.randint(5, 15))
261 if plant_data['current_water'] > 100 : #water can't be above 1
262 plant_data['current_water'] = 100
263
264 collection_nfts[name,"nft_metadata"] = plant_data
265 return [plant_data["current_water"],plant_data["current_photosynthesis"],plant_data["current_bugs"],plant_data["current_nutrients"],plant_data["current_weeds"],plant_data['current_toxicity'],plant_data["burn_amount"],plant_data["current_weather"]]
266
267 @export
268 def fertilize(plant_generation : int, plant_number : int, num_times : int = 1): #increases current nutrients of the plant but if nutrients go over 100%, it burns your plant.
269 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
270 plant_data = plant_all['plant_data']
271 name = plant_all['name']
272
273 for x in range(0, num_times):
274 plant_data['current_nutrients'] += (random.randint(4, 6))
275
276 if plant_data['current_nutrients'] > 100 :
277 plant_data["burn_amount"] += (plant_data['current_nutrients']-100)
278 plant_data['current_nutrients'] = 100
279
280 collection_nfts[name,"nft_metadata"] = plant_data
281 return [plant_data["current_water"],plant_data["current_photosynthesis"],plant_data["current_bugs"],plant_data["current_nutrients"],plant_data["current_weeds"],plant_data['current_toxicity'],plant_data["burn_amount"],plant_data["current_weather"]]
282
283 @export
284 def pullweeds(plant_generation : int, plant_number : int): #reduces current weeds in plant and takes 5 minutes to do. Share's a timer with squash bugs.
285
286 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
287 plant_data = plant_all['plant_data']
288 name = plant_all['name']
289
290 t_delta = plant_data["last_squash_weed"] + datetime.timedelta(minutes = 5)
291 assert now > t_delta, f"You are still squashing bugs or pulling weeds. Try again at {t_delta}."
292
293 plant_data['current_weeds'] -= (random.randint(2, 5))
294 if plant_data['current_weeds'] < 0 :
295 plant_data['current_weeds'] = 0
296
297 plant_data["last_squash_weed"] = now
298 collection_nfts[name,"nft_metadata"] = plant_data
299 return [plant_data["current_water"],plant_data["current_photosynthesis"],plant_data["current_bugs"],plant_data["current_nutrients"],plant_data["current_weeds"],plant_data['current_toxicity'],plant_data["burn_amount"],plant_data["current_weather"]]
300
301 @export
302 def sprayweeds(plant_generation : int, plant_number : int): #Spray weeds to instantly reduce current_weeds but costs tau and adds small amount of toxicity
303 plant_all = action_setup(plant_generation,plant_number) #Runs the main method that performs all of the various checks required for the plant.
304 plant_data = plant_all['plant_data']
305 name = plant_all['name']
306
307 plant_data['current_toxicity'] += (random.randint(1, 3))
308
309 plant_data['current_weeds'] -= (random.randint(10, 20))
310 if plant_data['current_weeds'] < 0 :
311 plant_data['current_weeds'] = 0
312
313 collection_nfts[name,"nft_metadata"] = plant_data
314 return [plant_data["current_water"],plant_data["current_photosynthesis"],plant_data["current_bugs"],plant_data["current_nutrients"],plant_data["current_weeds"],plant_data['current_toxicity'],plant_data["burn_amount"],plant_data["current_weather"]]
315
316 @export
317 def finalize(plant_generation : int, plant_number : int): #Finalizes your plant at the end of growing season to deterimine your berry yield.
318 active_generation = plants['active_generation']
319 assert plant_generation == active_generation, f'The plant you are trying to interact with is not part of the current generation. The current generation is {active_generation}.'
320 name = f'Gen_{plant_generation}_{plant_number}'
321 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
322 assert collection_nfts[name,'finalized'] == False, 'This plant has already been finalized.'
323 end_time = plants['growing_season_end_time']
324 finalize_time = plants[plant_generation, 'finalize_time']
325 assert now <= finalize_time and now >= end_time, f'It is not time to finalize your plant. Try between {end_time} and {finalize_time}'
326 if ctx.caller.startswith('con_'): return
327 plant_data = collection_nfts[name,"nft_metadata"]
328 assert plant_data["alive"] == True, 'Your plant is dead due to neglect and you must buy a new plant to try again. Try not to kill it too.'
329
330 if plants['growing_season'] == True : #first person to run this also turns growing_season to false and resets plant counter for next growing season
331 plants['growing_season'] = False
332 plants['count'] = 0
333
334 delta = end_time - plant_data['last_calc']
335 delta_d = (delta.seconds / 86400)
336
337 plant_calc_data = collection_nfts[name,'plant_calc_data']
338 #This sections performs an integral on the various properties for use in determining total berries produced.
339 plant_calc_data["total_water"] += (delta_d**2*((plant_data["current_water"]/100-plant_calc_data["previous_water"]/100)/(delta_d))/2)+plant_calc_data["previous_water"]/100*delta_d
340 plant_calc_data["total_bugs"] += (delta_d**2*(((1-plant_data["current_bugs"]/100)-(1-plant_calc_data["previous_bugs"]/100))/(delta_d))/2)+(1-plant_calc_data["previous_bugs"]/100)*delta_d
341 plant_calc_data["total_nutrients"] += (delta_d**2*((plant_data["current_nutrients"]/100-plant_calc_data["previous_nutrients"]/100)/(delta_d))/2)+plant_calc_data["previous_nutrients"]/100*delta_d
342 plant_calc_data["total_weeds"] += (delta_d**2*(((1-plant_data["current_weeds"]/100)-(1-plant_calc_data["previous_weeds"]/100))/(delta_d))/2)+(1-plant_calc_data["previous_weeds"]/100)*delta_d
343 collection_nfts[name,'plant_calc_data'] = plant_calc_data
344
345 plant_data['last_calc'] = now
346 collection_nfts[name,"nft_metadata"] = plant_data
347
348 length = metadata['growing_season_length']
349 berries = 1.5 + int(1000 * ((plant_calc_data["total_water"]*plant_calc_data["total_bugs"]*plant_calc_data["total_nutrients"]*plant_calc_data["total_weeds"])/(length**4))*(1-plant_data['current_toxicity']/100)*(plant_data["current_photosynthesis"]/100)*(1-plant_data["burn_amount"]/100))
350 collection_nfts[name,'berries'] = berries
351 collection_nfts[name,'final_score'] = berries
352 plants[plant_generation,'total_berries'] += berries
353
354 if plants[plant_generation, 'claimable_tau'] == 0: #sets the total amount of tau that can be claimed by players.
355 plants[plant_generation, 'claimable_tau'] = plants[plant_generation, 'total_tau']
356
357 collection_nfts[name,'finalized'] == True
358 return berries
359
360 @export
361 def sellberries(plant_generation : int, plant_number : int): #redeem berries for TAU. Must be done after plant finalize time is over.
362 name = f'Gen_{plant_generation}_{plant_number}'
363 assert collection_balances[ctx.caller, name] == 1, "You do not own this plant."
364 berries = collection_nfts[name,'berries']
365 assert berries > 0, "You don't have any berries to sell."
366 assert now >= plants[plant_generation, 'finalize_time'], f"You can't sell yet. Try again after {plants[plant_generation, 'finalize_time']} but do not wait too long."
367 sell_price = plants[plant_generation, 'total_tau'] / plants[plant_generation,'total_berries']
368 proceeds = sell_price * berries
369 currency.transfer(amount=proceeds, to=ctx.caller)
370 collection_nfts[name,'berries'] = 0
371 plants[plant_generation, 'claimable_tau'] -= proceeds
372 proceeds = str(proceeds)
373
374 return proceeds
375
376 def payment(plant_generation, amount): #used to process payments
377 dev_reward = 0.05
378 currency.transfer_from(amount=amount*(1-dev_reward), to=ctx.this, main_account=ctx.caller)
379 currency.transfer_from(amount=amount*dev_reward, to=metadata['operator'], main_account=ctx.caller)
380 plants[plant_generation, 'total_tau'] += amount*(1-dev_reward)
381
382 @export
383 def manual_reward_add(plant_generation : int, amount : int): #used to manually add more tau to the prize pool
384 currency.transfer_from(amount=amount, to=ctx.this, main_account=ctx.caller)
385 plants[plant_generation, 'total_tau'] += amount
386
387 @export
388 def stale_claims(plant_generation : int): #used by the operator to claim tau from a plant generation that ended at least 30 days prior. This allows players ample time to sell their berries
389 assert metadata['operator'] == ctx.caller, "Only the operator can claim stale tau."
390 stale_claim_time = plants[plant_generation,'stale_claim_time']
391 assert now >= stale_claim_time, f"The tau is not stale yet and cannot be claimed. Try again after {stale_claim_time}"
392 stale_tau = plants[plant_generation, 'claimable_tau']
393 assert stale_tau > 0, "There is no stale tau to claim."
394 currency.transfer(amount=stale_tau, to=ctx.caller)
395
396 @export
397 def manual_season_end(): #only needed if for some reason there were no finalized plants in the current grow season
398 assert metadata['operator'] == ctx.caller, "Only the operator can do this."
399 assert now > plants['growing_season_end_time'], "You can't end the season before the end_time."
400 plants['growing_season'] = False
401 plants['count'] = 0
402
403 @export
404 def nickname_interaction(nickname : str, function_name :str): #allows players to interact with a plant based on its nickname
405 nick = collection_nfts[nickname]
406
407 function_names = {
408 'water' : water,
409 'squash' : squash,
410 'spraybugs' : spraybugs,
411 'growlights' : growlights,
412 'shade' : shade,
413 'fertilize' : fertilize,
414 'pullweeds' : pullweeds,
415 'sprayweeds' : sprayweeds,
416 'finalize' : finalize,
417 'sellberries' : sellberries
418 }
419
420 return function_names[function_name](nick[0],nick[1])
421
422 @export
423 def emergency_withdraw(amount:float): #temporary function used in testing. will be removed from final contract.
424 assert metadata['operator'] == ctx.caller, "Only the operator can claim tau."
425 currency.transfer(amount=amount, to=ctx.caller)

Byte Code

e300000000000000000000000006000000400000007360020000640064016c005a0065016402640364048d025a0265016402640564048d025a03650464006402640664078d035a05650464006402640864078d035a06650464006402640964078d035a07650464006402640a64078d035a0865046402640b64048d025a0965046402640c64048d025a0a650b6a0c83000100640d640e84005a0d650e64028301644b650f650f651064109c0364116412840583015a11650f650f650f6512651364139c056414641584045a14650e64028301650f6513650f64169c0364176418840483015a15650e640283016513650f650f64199c03641a641b840483015a16650e64028301650f6513650f650f641c9c04641d641e840483015a17650e64028301641f6420840083015a18650e64028301650f64219c0164226423840483015a196513651364249c026425642684045a1a6427642884005a1b6429642a84005a1c642b642c84005a1d650e64028301644c651365136513642e9c03642f6430840583015a1e650e64028301644d651365136513642e9c0364316432840583015a1f650e640283016513651364249c0264336434840483015a20650e640283016513651364249c0264356436840483015a21650e640283016513651364249c0264376438840483015a22650e640283016513651364249c026439643a840483015a23643b643c84005a24650e6402830165136513643d9c02643e643f840483015a25650e64028301651364409c0164416442840483015a26650e6402830164436444840083015a27650e64028301650f650f64459c0264466447840483015a28650e64028301652964489c016449644a840483015a2a64015300294ee9000000004eda0e636f6e5f746573746661726d3137da0f636f6c6c656374696f6e5f6e616d652902da08636f6e7472616374da046e616d65da10636f6c6c656374696f6e5f6f776e6572da0f636f6c6c656374696f6e5f6e6674732903da0d64656661756c745f76616c756572040000007205000000da13636f6c6c656374696f6e5f62616c616e636573da1d636f6c6c656374696f6e5f62616c616e6365735f617070726f76616c73da06706c616e7473da086d65746164617461da096e69636b6e616d6573630000000000000000010000000300000043000000736000000074006a0164018301010074026a0174036a048301010074036a04740564023c006403740564043c006405740564063c006407740564083c0064097406640a3c0074077406640b3c00640c7406640d3c0064107406640f3c0069007d006400530029114eda0b546573745f706c616e7473da086f70657261746f72e902000000da1567726f77696e675f736561736f6e5f6c656e677468e9050000007a0b706c616e74207072696365da0d636f6e5f746573746970667331da0d697066735f636f6e747261637446da0e67726f77696e675f736561736f6eda1967726f77696e675f736561736f6e5f73746172745f74696d657201000000da05636f756e74e901000000da116163746976655f67656e65726174696f6ee9ffffffff2908da115f5f636f6c6c656374696f6e5f6e616d65da03736574da125f5f636f6c6c656374696f6e5f6f776e6572da03637478da0663616c6c6572da0a5f5f6d65746164617461da085f5f706c616e7473da036e6f772901da0b5f5f6e69636b6e616d6573a9007224000000da00da045f5f5f5f11000000731600000000010a010c010a0108010801080108010801080108017226000000462903da036b6579da096e65775f76616c7565da12636f6e766572745f746f5f646563696d616c630300000000000000030000000300000043000000732e00000074006a017402640119006b02731674036402830182017c02722274047c0183017d017c0174027c003c006400530029034e720f0000007a1e6f6e6c79206f70657261746f722063616e20736574206d657461646174612905721e000000721f0000007220000000da0e417373657274696f6e4572726f72da07646563696d616c2903722700000072280000007229000000722400000072240000007225000000da0f6368616e67655f6d657461646174611f000000730a00000000021001060104010801722c00000029057205000000da0b6465736372697074696f6eda0e697066735f696d6167655f75726cda0c6e66745f6d65746164617461da06616d6f756e74630500000000000000050000000500000043000000736c0000007c0064016b037310740064028301820174017c00190064036b02732474006404830182017c0464036b04733474006405830182017c017c0264067c009b0064079d037c0464089c0474017c003c007c0374017c00640966023c007c04740274036a047c0066023c0064005300290a4e72250000007a144e616d652063616e6e6f7420626520656d70747972010000007a134e616d6520616c7265616479206578697374737a24596f752063616e6e6f74207472616e73666572206e6567617469766520616d6f756e74737a1453656520636f6c6c656374696f6e5f6e6674735b7a102c276e66745f6d65746164617461275d2904722d000000722e000000722f0000007230000000722f0000002905722a000000da115f5f636f6c6c656374696f6e5f6e667473da155f5f636f6c6c656374696f6e5f62616c616e636573721e000000721f00000029057205000000722d000000722e000000722f0000007230000000722400000072240000007225000000da0a5f5f6d696e745f6e667428000000731000000000021001140110010201020116010c017233000000290372050000007230000000da02746f63030000000000000003000000040000004300000073680000007c0164016b04731074006402830182017c0064036b0373207400640483018201740174026a037c00660219007c016b05733a7400640583018201740174026a037c006602050019007c01380003003c0074017c027c006602050019007c01370003003c006400530029064e72010000007a24596f752063616e6e6f74207472616e73666572206e6567617469766520616d6f756e747372250000007a37506c65617365207370656369667920746865206e616d65206f6620746865204e465420796f752077616e7420746f207472616e736665727a22596f7520646f6e2774206861766520656e6f756768204e46547320746f2073656e642904722a0000007232000000721e000000721f0000002903720500000072300000007234000000722400000072240000007225000000da087472616e7366657234000000730c0000000002100110010c010e01160172350000002903723000000072050000007234000000630300000000000000030000000400000043000000732c0000007c0064016b0473107400640283018201740174026a037c027c016603050019007c00370003003c006400530029034e72010000007a1f43616e6e6f7420617070726f7665206e6567617469766520616d6f756e74732904722a000000da1f5f5f636f6c6c656374696f6e5f62616c616e6365735f617070726f76616c73721e000000721f0000002903723000000072050000007234000000722400000072240000007225000000da07617070726f76653e00000073040000000002100172370000002904720500000072300000007234000000da0c6d61696e5f6163636f756e7463040000000000000004000000060000004300000073960000007c0164016b047310740064028301820174017c037c027c00660319007c016b05733c740064036a0274017c037c027c00660319007c0183028301820174037c037c00660219007c016b057354740064048301820174017c037c027c006603050019007c01380003003c0074037c037c006602050019007c01380003003c0074037c027c006602050019007c01370003003c006400530029054e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e636573217a484e6f7420656e6f756768204e46547320617070726f76656420746f2073656e642120596f752068617665207b7d20616e642061726520747279696e6720746f207370656e64207b7d7a184e6f7420656e6f756768204e46547320746f2073656e64212904722a0000007236000000da06666f726d6174723200000029047205000000723000000072340000007238000000722400000072240000007225000000da0d7472616e736665725f66726f6d440000007312000000000210010c010c0114010a010e0116011401723a00000063000000000000000003000000040000004300000073de00000074006a01830074026a036b02731674046401830182017405640219007d007c0064036b02732e74046404830182017406640519007d017405640619007d027c02640737007d026408740564023c007407740564093c00740774086a097c01640a8d0117007405640b3c00740774086a097c01640c1700640a8d01170074057c02640d66023c007c02740564063c00640e74057c02640f66023c00640e74057c02641066023c00640e74057c02641166023c00640e74057c02641266023c00740774086a097c0164131700640a8d01170074057c02641466023c006400530029154e7a2a4f6e6c7920746865206f776e65722063616e20737461727420612067726f77696e6720736561736f6e2e7215000000467a1d497420697320616c72656164792067726f77696e6720736561736f6e2e7211000000721900000072180000005472160000002901da076d696e75746573da1767726f77696e675f736561736f6e5f656e645f74696d65e903000000da0d66696e616c697a655f74696d657201000000da0d746f74616c5f62657272696573da1073656c6c61626c655f62657272696573da09746f74616c5f746175da0d636c61696d61626c655f746175e91e000000da107374616c655f636c61696d5f74696d65290a721d000000da03676574721e000000721f000000722a000000722100000072200000007222000000da086461746574696d65da0974696d6564656c74612903da0b67726f775f736561736f6e7211000000da0a6163746976655f67656e722400000072240000007225000000da1473746172745f67726f77696e675f736561736f6e510000007328000000000206011001080110010801080108010801080106010e010601160108010c010c010c010c010601724a0000002901da046e69636b63010000000000000008000000100000004300000073a401000074006401190064026b02731474016403830182017c006a0283000c0073267401640483018201740374047c001900830164056b02733e74016406830182017c006a05830064026b02735274016407830182017c0064086b037362740164098301820174067c008301640a6b0573767401640b830182017400640c19007d0174076a08640d640e830274076a08640f64108302641174076a08640d640e830274076a08640f641083026411641274097409740964027409740a6a0b642564138d0117007409740a6a0b642664138d011700641164149c0e7d027c02641519007c02641619007c02641719007c0264181900641164116411641164199c087d037400641a1900641217007d04641b7c019b00641c7c049b009d047d057c017c04670274047c003c00740c7c01740d641d190083020100740e6a0f740d641e190083017d067c066a1083007d0774117c05641f7c077c026412830501007c0374047c05642066023c007c047400641a3c007c02641519007c02642119007c02641619007c02641719007c02641819007c02642219007c02642319007c02642419007c076709530029274e7215000000547a3e5468652067726f77696e6720736561736f6e20686173206e6f7420737461727465642c20736f20796f752063616e6e6f7420627579206120706c616e742e7a2754686520706c616e74206e69636b6e616d652063616e277420626520616e20696e74656765722e467a1d54686973206e69636b6e616d6520616c7265616479206578697374732e7a254f6e6c7920616c7068616e756d65726963206368617261637465727320616c6c6f7765642e72250000007a144e616d652063616e6e6f7420626520656d707479723d0000007a23546865206d696e696d756d206c656e677468206973203320636861726163746572732e7219000000e946000000e95a0000007212000000e919000000720100000072180000002901da0464617973290eda0d63757272656e745f7761746572da0c63757272656e745f62756773da1663757272656e745f70686f746f73796e746865736973da1163757272656e745f6e75747269656e7473da0d63757272656e745f7765656473da1063757272656e745f746f786963697479da0f63757272656e745f77656174686572da106c6173745f696e746572616374696f6eda0a6c6173745f6461696c79da096c6173745f63616c63da05616c697665da106c6173745f7371756173685f77656564da0f6c6173745f67726f775f6c69676874da0b6275726e5f616d6f756e7472500000007251000000725300000072540000002908da0e70726576696f75735f7761746572da0d70726576696f75735f62756773da1270726576696f75735f6e75747269656e7473da0e70726576696f75735f7765656473da0b746f74616c5f7761746572da0a746f74616c5f62756773da0f746f74616c5f6e75747269656e7473da0b746f74616c5f77656564737217000000da0447656e5fda015f7a0b706c616e7420707269636572140000007a5c54686973206973206120626c7565626572727920706c616e742e204b65657020697420616c69766520616e64206865616c7468792062792074656e64696e6720746f20697420647572696e672067726f77696e6720736561736f6e2eda0f706c616e745f63616c635f6461746172520000007255000000725d0000007256000000721a000000721a00000029127221000000722a000000da0769736469676974da04626f6f6c7231000000da076973616c6e756dda036c656eda0672616e646f6dda0772616e64696e74722200000072460000007247000000da095f5f7061796d656e747220000000da09696d706f72746c6962da0d696d706f72745f6d6f64756c65da0b7069636b5f72616e646f6d72330000002908724b000000da10706c616e745f67656e65726174696f6eda0a706c616e745f646174617268000000da07705f636f756e747205000000da06697066735f63722e000000722400000072240000007225000000da096275795f706c616e7469000000734c000000000206010e0112010a010e0114011001140108010a010c010a010e01060110010e01080106010601080108010a010c0110010c010e010e010801040102010a010c01080108010c010c010c01727700000029027273000000da0c706c616e745f6e756d62657263020000000000000006000000060000004300000073380100007400640119007d027c007c026b027320740164027c029b0064039d038301820164047c009b0064057c019b009d047d03740274036a047c036602190064066b02734a740164078301820174057400640819006b01735e740164098301820174036a046a06640a8301726e6400530074077c03640b660219007d047c04640c1900640d6b02738e7401640e8301820174057c04640f190074086a09641064118d0117006b04900172087c04641205001900740a6a0b641364148302380003003c007c04641505001900740a6a0b641364148302370003003c007c04641605001900740a6a0b641364148302380003003c007c04641705001900740a6a0b641364148302370003003c00740c7c0483017d04740d7c047c0383027d04740e7c0483017d0474057c04640f3c007c047c0364189c027d057c05530029194e72190000007a6b54686520706c616e7420796f752061726520747279696e6720746f20696e7465726163742077697468206973206e6f742070617274206f66207468652063757272656e742067656e65726174696f6e2e205468652063757272656e742067656e65726174696f6e20697320da012e7266000000726700000072180000007a1a596f7520646f206e6f74206f776e207468697320706c616e742e723c0000007a495468652067726f77696e6720736561736f6e206973206e6f74206163746976652c20736f20796f752063616e6e6f7420696e746572616374207769746820796f757220706c616e742eda04636f6e5f722f000000725a000000547a64596f757220706c616e7420697320646561642064756520746f206e65676c65637420616e6420796f75206d757374206275792061206e657720706c616e7420746f2074727920616761696e2e20547279206e6f7420746f206b696c6c20697420746f6f2e7257000000e90c0000002901da05686f75727372500000007212000000e90f000000725100000072530000007254000000290272740000007205000000290f7221000000722a0000007232000000721e000000721f0000007222000000da0a73746172747377697468723100000072460000007247000000726d000000726e000000da125f5f6461696c795f636f6e646974696f6e73da105f5f746f74616c697a65725f63616c63da0c5f5f646561645f636865636b290672730000007278000000721900000072050000007274000000da09706c616e745f616c6c722400000072240000007225000000da0e5f5f616374696f6e5f736574757093000000732e00000000010801180110010c010e010e0106010c0104010c0106010e011a01180118011801180108010a01080108010a01728300000063010000000000000002000000060000004300000073c8010000900178c074007c0064011900180074016a02640264038d016b04900172c274036a046402640483027d017c0164026b0272627c0064050500190074036a04640664078302380003003c007c0064080500190074036a046409640a8302370003003c007c01640b6b02729a7c0064050500190074036a04640c640d8302380003003c007c0064080500190074036a04640b64098302370003003c007c0164046b0272d27c0064050500190074036a04640c640e8302370003003c007c0064080500190074036a046402640b8302370003003c007c00640f0500190074036a04640c64078302370003003c007c0064100500190074036a04640c64068302380003003c007c0064110500190074036a04640c64078302370003003c007c0064010500190074016a02640264038d01370003003c007c017c0064123c007c0064130500190074036a046414640b8302380003003c007c006413190064146b009001726864147c0064133c007c006405190064156b049001727e64157c0064053c007c006405190064146b009001729464147c0064053c007c006408190064156b0472047c006416050019007c006408190064151800370003003c0064157c0064083c00710457007c00530029174e725800000072180000002901724f000000723d0000007250000000e90a000000e9140000007252000000e904000000e90600000072100000007212000000727d000000724e000000725100000072530000007254000000725600000072550000007201000000e964000000725d0000002905722200000072460000007247000000726d000000726e000000290272740000007256000000722400000072240000007225000000727f000000ad000000733800000000011e010c010801180118010801180118010801180118011801180118011801080118010e0108010e0108010e0108010c010e010a010c01727f00000063020000000000000005000000080000004300000073ac01000074007c006401190074016a02640264038d0117006b04900172a874007c006401190018007d027c026a0364041b007d0374047c016405660219007d047c046406050019007c03640713007c006408190064091b007c04640a190064091b0018007c031b00140064071b007c04640a190064091b007c0314001700370003003c007c04640b050019007c0364071300640c7c00640d190064091b001800640c7c04640e190064091b00180018007c031b00140064071b00640c7c04640e190064091b0018007c0314001700370003003c007c04640f050019007c03640713007c006410190064091b007c046411190064091b0018007c031b00140064071b007c046411190064091b007c0314001700370003003c007c046412050019007c0364071300640c7c006413190064091b001800640c7c046414190064091b00180018007c031b00140064071b00640c7c046414190064091b0018007c0314001700370003003c0074007c0064013c007c00640819007c04640a3c007c00640d19007c04640e3c007c00641019007c0464113c007c00641319007c0464143c007c0474047c01640566023c007c00530029154e7259000000723d0000002901727c000000698051010072680000007262000000721000000072500000007288000000725e000000726300000072180000007251000000725f0000007264000000725300000072600000007265000000725400000072610000002905722200000072460000007247000000da077365636f6e64737231000000290572740000007205000000da0564656c7461da0764656c74615f6472680000007224000000722400000072250000007280000000cc000000732e00000000011a010c010a010c0108022601160108023c010c0108022601160108023c010c0108010c010c010c010c010c017280000000630100000000000000010000000300000043000000735c0000007c006401190064026b0573307c006403190064026b0573307c006404190064026b0573307c006405190064026b05723864067c0064073c007c006408190064096b0173507c00640a190064096b01725864067c0064073c007c005300290b4e7255000000728800000072510000007254000000725d00000046725a0000007250000000720100000072530000007224000000290172740000007224000000722400000072250000007281000000ea00000073100000000001120114010a01080112010601080172810000007218000000290372730000007278000000da096e756d5f74696d6573630300000000000000070000000900000043000000739a00000074007c007c0183027d037c03640119007d047c03640219007d05782a740164037c02830244005d1c7d067c0464040500190074026a03640564068302370003003c00712657007c046404190064076b04725a64077c0464043c007c0474047c05640866023c007c04640419007c04640919007c04640a19007c04640b19007c04640c19007c04640d19007c04640e19007c04640f19006708530029104e72740000007205000000720100000072500000007212000000727d0000007288000000722f00000072520000007251000000725300000072540000007255000000725d000000725600000029057283000000da0572616e6765726d000000726e0000007231000000290772730000007278000000728c000000728200000072740000007205000000da0178722400000072240000007225000000da057761746572f5000000731a00000000020a010801080110011c010c0108010c0108010c010c010c01728f00000063030000000000000007000000090000004300000073b200000074007c007c0183027d037c03640119007d047c03640219007d05782a740164037c02830244005d1c7d067c0464040500190074026a03640564068302370003003c00712657007c046404190064076b0472727c046408050019007c046404190064071800370003003c0064077c0464043c007c0474047c05640966023c007c04640a19007c04640b19007c04640c19007c04640419007c04640d19007c04640e19007c04640819007c04640f19006708530029104e7274000000720500000072010000007253000000728600000072870000007288000000725d000000722f00000072500000007252000000725100000072540000007255000000725600000029057283000000728d000000726d000000726e0000007231000000290772730000007278000000728c000000728200000072740000007205000000728e000000722400000072240000007225000000da0966657274696c697a6506010000731c00000000020a010801080110011c010c01180108010c0108010c010c010c01729000000063020000000000000006000000090000004300000073ba00000074007c007c0183027d027c02640119007d037c02640219007d047c036403190074016a02640464058d0117007d0574037c056b047346740464067c059b0064079d03830182017c0364080500190074056a06640964048302380003003c007c0364081900640a6b007272640a7c0364083c0074037c0364033c007c0374077c04640b66023c007c03640c19007c03640d19007c03640e19007c03640f19007c03640819007c03641019007c03641119007c03641219006708530029134e72740000007205000000725b00000072120000002901723b0000007a3c596f7520617265207374696c6c20737175617368696e672062756773206f722070756c6c696e672077656564732e2054727920616761696e206174207279000000725400000072100000007201000000722f00000072500000007252000000725100000072530000007255000000725d000000725600000029087283000000724600000072470000007222000000722a000000726d000000726e0000007231000000290672730000007278000000728200000072740000007205000000da07745f64656c7461722400000072240000007225000000da0970756c6c776565647318010000731e00000000020a01080108011401180118010c01080108010c0108010c010c010c017292000000630200000000000000050000000900000043000000739e00000074007c007c0183027d027c02640119007d037c02640219007d047c0364030500190074016a02640464058302370003003c007c0364060500190074016a02640764088302380003003c007c036406190064096b00725e64097c0364063c007c0374037c04640a66023c007c03640b19007c03640c19007c03640d19007c03640e19007c03640619007c03640319007c03640f19007c03641019006708530029114e7274000000720500000072550000007218000000723d0000007254000000728400000072850000007201000000722f0000007250000000725200000072510000007253000000725d000000725600000029047283000000726d000000726e0000007231000000290572730000007278000000728200000072740000007205000000722400000072240000007225000000da0a737072617977656564732b010000731a00000000020a0108010801180118010c0108010c0108010c010c010c0172930000006302000000000000000c000000080000004300000073220300007400640119007d027c007c026b027320740164027c029b0064039d038301820164047c009b0064057c019b009d047d03740274036a047c036602190064066b02734a740164078301820174057c0364086602190064096b0273627401640a830182017400640b19007d0474007c00640c660219007d0574067c056b01728674067c046b05739a7401640d7c049b00640e7c059b009d048301820174036a046a07640f830172aa6400530074057c036410660219007d067c066411190064126b0273ca740164138301820174006414190064126b0272e66409740064143c006415740064163c007c047c066417190018007d077c076a0864181b007d0874057c036419660219007d097c09641a050019007c08641b13007c06641c1900641d1b007c09641e1900641d1b0018007c081b001400641b1b007c09641e1900641d1b007c0814001700370003003c007c09641f050019007c08641b130064067c0664201900641d1b00180064067c0964211900641d1b00180018007c081b001400641b1b0064067c0964211900641d1b0018007c0814001700370003003c007c096422050019007c08641b13007c0664231900641d1b007c0964241900641d1b0018007c081b001400641b1b007c0964241900641d1b007c0814001700370003003c007c096425050019007c08641b130064067c0664261900641d1b00180064067c0964271900641d1b00180018007c081b001400641b1b0064067c0964271900641d1b0018007c0814001700370003003c007c0974057c03641966023c0074067c0664173c007c0674057c03641066023c007409642819007d0a740a64298301740b642a7c09641a19007c09641f190014007c096422190014007c096425190014007c0a642b13001b00140064067c06642c1900641d1b00180014007c06642d1900641d1b00140064067c06642e1900641d1b0018001400830117007d0b7c0b74057c03642f66023c007c0b74057c03643066023c0074007c0064316602050019007c0b370003003c0074007c0064326602190064156b029003720e74007c0064336602190074007c00643266023c0074057c0364086602190064126b0201007c0b530029344e72190000007a6b54686520706c616e7420796f752061726520747279696e6720746f20696e7465726163742077697468206973206e6f742070617274206f66207468652063757272656e742067656e65726174696f6e2e205468652063757272656e742067656e65726174696f6e2069732072790000007266000000726700000072180000007a1a596f7520646f206e6f74206f776e207468697320706c616e742eda0966696e616c697a6564467a265468697320706c616e742068617320616c7265616479206265656e2066696e616c697a65642e723c000000723e0000007a334974206973206e6f742074696d6520746f2066696e616c697a6520796f757220706c616e742e20547279206265747765656e207a0520616e6420727a000000722f000000725a000000547a64596f757220706c616e7420697320646561642064756520746f206e65676c65637420616e6420796f75206d757374206275792061206e657720706c616e7420746f2074727920616761696e2e20547279206e6f7420746f206b696c6c20697420746f6f2e7215000000720100000072170000007259000000698051010072680000007262000000721000000072500000007288000000725e00000072630000007251000000725f00000072640000007253000000726000000072650000007254000000726100000072110000007a03312e3569e8030000728600000072550000007252000000725d000000da0762657272696573da0b66696e616c5f73636f7265723f00000072420000007241000000290c7221000000722a0000007232000000721e000000721f00000072310000007222000000727e00000072890000007220000000722b000000da03696e74290c7273000000727800000072190000007205000000da08656e645f74696d65723e0000007274000000728a000000728b0000007268000000da066c656e6774687295000000722400000072240000007225000000da0866696e616c697a653c010000735c00000000020801180110010c010e010a010e0108010c0124010c0104010c0106010e010c01080108010c010a010c0108023c0108023c010c0108022601160108023c010c010c0108010c01080108045c010c010c0114011201020112011001729a00000063020000000000000006000000050000004300000073ca00000064017c009b0064027c019b009d047d02740074016a027c026602190064036b02732a740364048301820174047c026405660219007d037c0364066b0473467403640783018201740574067c006408660219006b05736e7403640974067c006408660219009b00640a9d038301820174067c00640b6602190074067c00640c660219001b007d047c047c0314007d0574076a087c0574016a02640d8d020100640674047c02640566023c0074067c00640e6602050019007c05380003003c0074097c0583017d057c055300290f4e7266000000726700000072180000007a1a596f7520646f206e6f74206f776e207468697320706c616e742e729500000072010000007a23596f7520646f6e2774206861766520616e79206265727269657320746f2073656c6c2e723e0000007a24596f752063616e27742073656c6c207965742e2054727920616761696e206166746572207a1a2062757420646f206e6f74207761697420746f6f206c6f6e672e7241000000723f0000002902723000000072340000007242000000290a7232000000721e000000721f000000722a000000723100000072220000007221000000da0863757272656e63797235000000da0373747229067273000000727800000072050000007295000000da0a73656c6c5f7072696365da0870726f6365656473722400000072240000007225000000da0b73656c6c6265727269657375010000731e000000000210010c010e010c011001120116010c010c01080110010c0114010801729f000000630200000000000000030000000600000043000000735e0000007400640183017d0274016a027c0164027c021800140074036a0474036a0564038d03010074016a027c017c02140074066404190074036a0564038d03010074077c0064056602050019007c0164027c0218001400370003003c006400530029064e7a04302e303572180000002903723000000072340000007238000000720f00000072410000002908722b000000729b000000723a000000721e000000da0474686973721f00000072200000007221000000290372730000007230000000da0a6465765f726577617264722400000072240000007225000000726f00000088010000730c0000000001080112010a010c010e01726f000000290272730000007230000000630200000000000000020000000500000043000000732c00000074006a017c0174026a0374026a0464018d03010074057c0064026602050019007c01370003003c006400530029034e290372300000007234000000723800000072410000002906729b000000723a000000721e00000072a0000000721f0000007221000000290272730000007230000000722400000072240000007225000000da116d616e75616c5f7265776172645f6164649101000073040000000002140172a200000029017273000000630100000000000000030000000400000043000000736800000074006401190074016a026b027316740364028301820174047c006403660219007d0174057c016b057338740364047c019b009d028301820174047c006405660219007d027c0264066b047354740364078301820174066a077c0274016a0264088d0201006400530029094e720f0000007a264f6e6c7920746865206f70657261746f722063616e20636c61696d207374616c65207461752e72440000007a4054686520746175206973206e6f74207374616c652079657420616e642063616e6e6f7420626520636c61696d65642e2054727920616761696e20616674657220724200000072010000007a1f5468657265206973206e6f207374616c652074617520746f20636c61696d2e29027230000000723400000029087220000000721e000000721f000000722a00000072210000007222000000729b0000007235000000290372730000007244000000da097374616c655f746175722400000072240000007225000000da0c7374616c655f636c61696d7397010000730e0000000002060110010c0116010c01100172a4000000630000000000000000000000000300000043000000733e00000074006401190074016a026b027316740364028301820174047405640319006b04732a74036404830182016405740564063c006407740564083c006400530029094e720f0000007a1e4f6e6c7920746865206f70657261746f722063616e20646f20746869732e723c0000007a2d596f752063616e277420656e642074686520736561736f6e206265666f72652074686520656e645f74696d652e4672150000007201000000721700000029067220000000721e000000721f000000722a000000722200000072210000007224000000722400000072240000007225000000da116d616e75616c5f736561736f6e5f656e64a2010000730c0000000002060110010e010601080172a50000002902da086e69636b6e616d65da0d66756e6374696f6e5f6e616d65630200000000000000040000000b00000043000000733800000074007c0019007d02740174027403740474057406740774087409740a64019c0a7d037c037c0119007c02640219007c02640319008302530029044e290a728f000000da06737175617368da09737072617962756773da0a67726f776c6967687473da057368616465729000000072920000007293000000729a000000729f00000072010000007218000000290b7231000000728f00000072a800000072a900000072aa00000072ab000000729000000072920000007293000000729a000000729f000000290472a600000072a7000000724b000000da0e66756e6374696f6e5f6e616d6573722400000072240000007225000000da146e69636b6e616d655f696e746572616374696f6eac010000730c000000000208010401060106010a0172ad00000029017230000000630100000000000000010000000400000043000000732a00000074006401190074016a026b027316740364028301820174046a057c0074016a0264038d0201006400530029044e720f0000007a204f6e6c7920746865206f70657261746f722063616e20636c61696d207461752e29027230000000723400000029067220000000721e000000721f000000722a000000729b000000723500000029017230000000722400000072240000007225000000da12656d657267656e63795f7769746864726177b6010000730600000000020601100172ae0000002901462901721800000029017218000000292b729b000000da085661726961626c65721b000000721d000000da0448617368723100000072320000007236000000722100000072200000007223000000726d000000da04736565647226000000da085f5f6578706f7274729c000000726a000000722c000000da04646963747297000000723300000072350000007237000000723a000000724a00000072770000007283000000727f00000072800000007281000000728f000000729000000072920000007293000000729a000000729f000000726f00000072a200000072a400000072a500000072ad000000da05666c6f617472ae0000007224000000722400000072240000007225000000da083c6d6f64756c653e01000000736a00000008010c0104010801060108010601080104010a010e010c010c010803080e060116080601100b06011409060114050601160c101806011029101a081f081e080b0601161006011611060112120601121006011238060112120809060112050601100a100a060112090601