summaryrefslogtreecommitdiff
path: root/classes/patch.bbclass
blob: 075e8265234142a748fd7085a8834b2f65ddcbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
# Copyright (C) 2006  OpenedHand LTD

# Point to an empty file so any user's custom settings don't break things
QUILTRCFILE ?= "${STAGING_BINDIR_NATIVE}/quiltrc"

def patch_init(d):
	import os, sys

	class NotFoundError(Exception):
		def __init__(self, path):
			self.path = path
		def __str__(self):
			return "Error: %s not found." % self.path

	def md5sum(fname):
		import md5, sys

		try:
			f = file(fname, 'rb')
		except IOError:
			raise NotFoundError(fname)

		m = md5.new()
		while True:
			d = f.read(8096)
			if not d:
				break
			m.update(d)
		f.close()
		return m.hexdigest()

	class CmdError(Exception):
		def __init__(self, exitstatus, output):
			self.status = exitstatus
			self.output = output

		def __str__(self):
			return "Command Error: exit status: %d  Output:\n%s" % (self.status, self.output)


	def runcmd(args, dir = None):
		import commands

		if dir:
			olddir = os.path.abspath(os.curdir)
			if not os.path.exists(dir):
				raise NotFoundError(dir)
			os.chdir(dir)
			# print("cwd: %s -> %s" % (olddir, dir))

		try:
			args = [ commands.mkarg(str(arg)) for arg in args ]
			cmd = " ".join(args)
			# print("cmd: %s" % cmd)
			(exitstatus, output) = commands.getstatusoutput(cmd)
			if exitstatus != 0:
				raise CmdError(exitstatus >> 8, output)
			return output

		finally:
			if dir:
				os.chdir(olddir)

	class PatchError(Exception):
		def __init__(self, msg):
			self.msg = msg

		def __str__(self):
			return "Patch Error: %s" % self.msg

	import bb, bb.data, bb.fetch

	class PatchSet(object):
		defaults = {
			"strippath": 1
		}

		def __init__(self, dir, d):
			self.dir = dir
			self.d = d
			self.patches = []
			self._current = None

		def current(self):
			return self._current

		def Clean(self):
			"""
			Clean out the patch set.  Generally includes unapplying all
			patches and wiping out all associated metadata.
			"""
			raise NotImplementedError()

		def Import(self, patch, force):
			if not patch.get("file"):
				if not patch.get("remote"):
					raise PatchError("Patch file must be specified in patch import.")
				else:
					patch["file"] = bb.fetch.localpath(patch["remote"], self.d)

			for param in PatchSet.defaults:
				if not patch.get(param):
					patch[param] = PatchSet.defaults[param]

			if patch.get("remote"):
				patch["file"] = bb.data.expand(bb.fetch.localpath(patch["remote"], self.d), self.d)

			patch["filemd5"] = md5sum(patch["file"])

		def Push(self, force):
			raise NotImplementedError()

		def Pop(self, force):
			raise NotImplementedError()

		def Refresh(self, remote = None, all = None):
			raise NotImplementedError()


	class PatchTree(PatchSet):
		def __init__(self, dir, d):
			PatchSet.__init__(self, dir, d)

		def Import(self, patch, force = None):
			""""""
			PatchSet.Import(self, patch, force)

			if self._current is not None:
				i = self._current + 1
			else:
				i = 0
			self.patches.insert(i, patch)

		def _applypatch(self, patch, force = False, reverse = False, run = True):
			shellcmd = ["cat", patch['file'], "|", "patch", "-p", patch['strippath']]
			if reverse:
				shellcmd.append('-R')

			if not run:
				return "sh" + "-c" + " ".join(shellcmd)

			if not force:
				shellcmd.append('--dry-run')

			output = runcmd(["sh", "-c", " ".join(shellcmd)], self.dir)

			if force:
				return

			shellcmd.pop(len(shellcmd) - 1)
			output = runcmd(["sh", "-c", " ".join(shellcmd)], self.dir)
			return output

		def Push(self, force = False, all = False, run = True):
			bb.note("self._current is %s" % self._current)
			bb.note("patches is %s" % self.patches)
			if all:
				for i in self.patches:
					if self._current is not None:
						self._current = self._current + 1
					else:
						self._current = 0
					bb.note("applying patch %s" % i)
					self._applypatch(i, force)
			else:
				if self._current is not None:
					self._current = self._current + 1
				else:
					self._current = 0
				bb.note("applying patch %s" % self.patches[self._current])
				return self._applypatch(self.patches[self._current], force)


		def Pop(self, force = None, all = None):
			if all:
				for i in self.patches:
					self._applypatch(i, force, True)
			else:
				self._applypatch(self.patches[self._current], force, True)

		def Clean(self):
			""""""

	class QuiltTree(PatchSet):
		def _runcmd(self, args, run = True):
			quiltrc = bb.data.getVar('QUILTRCFILE', self.d, 1)
			if not run:
				return ["quilt"] + ["--quiltrc"] + [quiltrc] + args
			runcmd(["quilt"] + ["--quiltrc"] + [quiltrc] + args, self.dir)

		def _quiltpatchpath(self, file):
			return os.path.join(self.dir, "patches", os.path.basename(file))


		def __init__(self, dir, d):
			PatchSet.__init__(self, dir, d)
			self.initialized = False
			p = os.path.join(self.dir, 'patches')
			if not os.path.exists(p):
				os.makedirs(p)

		def Clean(self):
			try:
				self._runcmd(["pop", "-a", "-f"])
			except Exception:
				pass
			self.initialized = True

		def InitFromDir(self):
			# read series -> self.patches
			seriespath = os.path.join(self.dir, 'patches', 'series')
			if not os.path.exists(self.dir):
				raise Exception("Error: %s does not exist." % self.dir)
			if os.path.exists(seriespath):
				series = file(seriespath, 'r')
				for line in series.readlines():
					patch = {}
					parts = line.strip().split()
					patch["quiltfile"] = self._quiltpatchpath(parts[0])
					patch["quiltfilemd5"] = md5sum(patch["quiltfile"])
					if len(parts) > 1:
						patch["strippath"] = parts[1][2:]
					self.patches.append(patch)
				series.close()

				# determine which patches are applied -> self._current
				try:
					output = runcmd(["quilt", "applied"], self.dir)
				except CmdError:
					if sys.exc_value.output.strip() == "No patches applied":
						return
					else:
						raise sys.exc_value
				output = [val for val in output.split('\n') if not val.startswith('#')]
				for patch in self.patches:
					if os.path.basename(patch["quiltfile"]) == output[-1]:
						self._current = self.patches.index(patch)
			self.initialized = True

		def Import(self, patch, force = None):
			if not self.initialized:
				self.InitFromDir()
			PatchSet.Import(self, patch, force)

			args = ["import", "-p", patch["strippath"]]
			if force:
				args.append("-f")
				args.append("-dn")
			args.append(patch["file"])

			self._runcmd(args)

			patch["quiltfile"] = self._quiltpatchpath(patch["file"])
			patch["quiltfilemd5"] = md5sum(patch["quiltfile"])

			# TODO: determine if the file being imported:
			#	   1) is already imported, and is the same
			#	   2) is already imported, but differs

			self.patches.insert(self._current or 0, patch)


		def Push(self, force = False, all = False, run = True):
			# quilt push [-f]

			args = ["push"]
			if force:
				args.append("-f")
			if all:
				args.append("-a")
			if not run:
				return self._runcmd(args, run)

			self._runcmd(args)

			if self._current is not None:
				self._current = self._current + 1
			else:
				self._current = 0

		def Pop(self, force = None, all = None):
			# quilt pop [-f]
			args = ["pop"]
			if force:
				args.append("-f")
			if all:
				args.append("-a")

			self._runcmd(args)

			if self._current == 0:
				self._current = None

			if self._current is not None:
				self._current = self._current - 1

		def Refresh(self, **kwargs):
			if kwargs.get("remote"):
				patch = self.patches[kwargs["patch"]]
				if not patch:
					raise PatchError("No patch found at index %s in patchset." % kwargs["patch"])
				(type, host, path, user, pswd, parm) = bb.decodeurl(patch["remote"])
				if type == "file":
					import shutil
					if not patch.get("file") and patch.get("remote"):
						patch["file"] = bb.fetch.localpath(patch["remote"], self.d)

					shutil.copyfile(patch["quiltfile"], patch["file"])
				else:
					raise PatchError("Unable to do a remote refresh of %s, unsupported remote url scheme %s." % (os.path.basename(patch["quiltfile"]), type))
			else:
				# quilt refresh
				args = ["refresh"]
				if kwargs.get("quiltfile"):
					args.append(os.path.basename(kwargs["quiltfile"]))
				elif kwargs.get("patch"):
					args.append(os.path.basename(self.patches[kwargs["patch"]]["quiltfile"]))
				self._runcmd(args)

	class Resolver(object):
		def __init__(self, patchset):
			raise NotImplementedError()

		def Resolve(self):
			raise NotImplementedError()

		def Revert(self):
			raise NotImplementedError()

		def Finalize(self):
			raise NotImplementedError()

	class NOOPResolver(Resolver):
		def __init__(self, patchset):
			self.patchset = patchset

		def Resolve(self):
			olddir = os.path.abspath(os.curdir)
			os.chdir(self.patchset.dir)
			try:
				self.patchset.Push()
			except Exception:
				os.chdir(olddir)
				raise sys.exc_value

	# Patch resolver which relies on the user doing all the work involved in the
	# resolution, with the exception of refreshing the remote copy of the patch
	# files (the urls).
	class UserResolver(Resolver):
		def __init__(self, patchset):
			self.patchset = patchset

		# Force a push in the patchset, then drop to a shell for the user to
		# resolve any rejected hunks
		def Resolve(self):

			olddir = os.path.abspath(os.curdir)
			os.chdir(self.patchset.dir)
 			try:
 				self.patchset.Push(False)
 			except CmdError, v:
 				# Patch application failed
 				patchcmd = self.patchset.Push(True, False, False)
 
 				t = bb.data.getVar('T', d, 1)
 				if not t:
 					bb.msg.fatal(bb.msg.domain.Build, "T not set")
 				bb.mkdirhier(t)
 				import random
 				rcfile = "%s/bashrc.%s.%s" % (t, str(os.getpid()), random.random())
 				f = open(rcfile, "w")
 				f.write("echo '*** Manual patch resolution mode ***'\n")
 				f.write("echo 'Dropping to a shell, so patch rejects can be fixed manually.'\n")
 				f.write("echo 'Run \"quilt refresh\" when patch is corrected, press CTRL+D to exit.'\n")
 				f.write("echo ''\n")
 				f.write(" ".join(patchcmd) + "\n")
 				f.write("#" + bb.data.getVar('TERMCMDRUN', d, 1))
 				f.close()
 				os.chmod(rcfile, 0775)
 
 				os.environ['TERMWINDOWTITLE'] = "Bitbake: Please fix patch rejects manually"
 				os.environ['TERMRCFILE'] = rcfile
 				rc = os.system(bb.data.getVar('TERMCMDRUN', d, 1))
				if os.WIFEXITED(rc) and os.WEXITSTATUS(rc) != 0:
 					bb.msg.fatal(bb.msg.domain.Build, ("Cannot proceed with manual patch resolution - '%s' not found. " \
					    + "Check TERMCMDRUN variable.") % bb.data.getVar('TERMCMDRUN', d, 1))

				# Construct a new PatchSet after the user's changes, compare the
				# sets, checking patches for modifications, and doing a remote
				# refresh on each.
				oldpatchset = self.patchset
				self.patchset = oldpatchset.__class__(self.patchset.dir, self.patchset.d)

				for patch in self.patchset.patches:
					oldpatch = None
					for opatch in oldpatchset.patches:
						if opatch["quiltfile"] == patch["quiltfile"]:
							oldpatch = opatch

					if oldpatch:
						patch["remote"] = oldpatch["remote"]
						if patch["quiltfile"] == oldpatch["quiltfile"]:
							if patch["quiltfilemd5"] != oldpatch["quiltfilemd5"]:
								bb.note("Patch %s has changed, updating remote url %s" % (os.path.basename(patch["quiltfile"]), patch["remote"]))
								# user change?  remote refresh
								self.patchset.Refresh(remote=True, patch=self.patchset.patches.index(patch))
							else:
								# User did not fix the problem.  Abort.
								raise PatchError("Patch application failed, and user did not fix and refresh the patch.")
			except Exception:
				os.chdir(olddir)
				raise
			os.chdir(olddir)

	g = globals()
	g["PatchSet"] = PatchSet
	g["PatchTree"] = PatchTree
	g["QuiltTree"] = QuiltTree
	g["Resolver"] = Resolver
	g["UserResolver"] = UserResolver
	g["NOOPResolver"] = NOOPResolver
	g["NotFoundError"] = NotFoundError
	g["CmdError"] = CmdError

addtask patch after do_unpack
do_patch[dirs] = "${WORKDIR}"

PATCHDEPENDENCY = "${PATCHTOOL}-native:do_populate_staging"
do_patch[depends] = "${PATCHDEPENDENCY}"

python patch_do_patch() {
	import re
	import bb.fetch

	patch_init(d)

	src_uri = (bb.data.getVar('SRC_URI', d, 1) or '').split()
	if not src_uri:
		return

	patchsetmap = {
		"patch": PatchTree,
		"quilt": QuiltTree,
	}

	cls = patchsetmap[bb.data.getVar('PATCHTOOL', d, 1) or 'quilt']

	resolvermap = {
		"noop": NOOPResolver,
		"user": UserResolver,
	}

	rcls = resolvermap[bb.data.getVar('PATCHRESOLVE', d, 1) or 'user']

	s = bb.data.getVar('S', d, 1)

	path = os.getenv('PATH')
	os.putenv('PATH', bb.data.getVar('PATH', d, 1))
	patchset = cls(s, d)
	patchset.Clean()

	resolver = rcls(patchset)

	workdir = bb.data.getVar('WORKDIR', d, 1)
	for url in src_uri:
		(type, host, path, user, pswd, parm) = bb.decodeurl(url)
		if not "patch" in parm:
			continue

		bb.fetch.init([url],d)
		url = bb.encodeurl((type, host, path, user, pswd, []))
		local = os.path.join('/', bb.fetch.localpath(url, d))

		# did it need to be unpacked?
		dots = os.path.basename(local).split(".")
		if dots[-1] in ['gz', 'bz2', 'Z']:
			unpacked = os.path.join(bb.data.getVar('WORKDIR', d),'.'.join(dots[0:-1]))
		else:
			unpacked = local
		unpacked = bb.data.expand(unpacked, d)

		if "pnum" in parm:
			pnum = parm["pnum"]
		else:
			pnum = "1"

		if "pname" in parm:
			pname = parm["pname"]
		else:
			pname = os.path.basename(unpacked)

                if "mindate" in parm or "maxdate" in parm:
			pn = bb.data.getVar('PN', d, 1)
			srcdate = bb.data.getVar('SRCDATE_%s' % pn, d, 1)
			if not srcdate:
				srcdate = bb.data.getVar('SRCDATE', d, 1)

			if srcdate == "now":
				srcdate = bb.data.getVar('DATE', d, 1)

			if "maxdate" in parm and parm["maxdate"] < srcdate:
				bb.note("Patch '%s' is outdated" % pname)
				continue

			if "mindate" in parm and parm["mindate"] > srcdate:
				bb.note("Patch '%s' is predated" % pname)
				continue


		if "minrev" in parm:
			srcrev = bb.data.getVar('SRCREV', d, 1)
			if srcrev and srcrev < parm["minrev"]:
				bb.note("Patch '%s' applies to later revisions" % pname)
				continue

		if "maxrev" in parm:
			srcrev = bb.data.getVar('SRCREV', d, 1)		
			if srcrev and srcrev > parm["maxrev"]:
				bb.note("Patch '%s' applies to earlier revisions" % pname)
				continue

		bb.note("Applying patch '%s' (%s)" % (pname, unpacked))
		try:
			patchset.Import({"file":unpacked, "remote":url, "strippath": pnum}, True)
		except:
			import sys
			raise bb.build.FuncFailed(str(sys.exc_value))
		resolver.Resolve()
}

EXPORT_FUNCTIONS do_patch
P,!'R:.M/|Nי# J!( _?]zv_(DE Kw8\L>saxJ+`ci uMP<h½  +5 cuR`=\b: r{ۜCdMJV+̑UB">VX:NdՀ{=t >>)#E@xJ:;Ϻ⃥}d=5ĺDUʌR[ #yE!@)tB;P{5*~\S1&[K'ąb^)R/t޼gԶ+"; "E|^ $Bqvd[1}@pөd%T:5ݗp1(FV胙7(1׏ak_!DĕBk_˂r_b2"f?5f{_/~/n&dĶqGOPZ_srF-Ҧ\(cΩvOwDMJqxqK&a/z;\$Gtaj Z`\S ےfZS/^_!W)z*r.Ckib/"ٝ@s/zMse)kd4"fMv-x㶩iMM4c L!N(uJNѥT*^ېŎ8֧hr'{p7j uXw9Xx8Ⱦ 1egi6x5GS.".R ӛ׽LJvTĚ9aZb}Tv'@yv8fpH@ AΛ8ȘӛphWk t g ;NXՑ$Lƽ}$X4`;rN1p(%lo!5a""gCfun:~y7$-Rqq0oiƣCssL6H:54 ] $,oV / ,`o-=Ȭ b&‰nnztb%D 9  \hL 'I!Xq՝,Q-NU48A/g5uߦNM}&xY1hⱧU .~sJ 7T(G-C;r?/ #<0+m^ i ͓ٗ!ё^C\]9 :_|t MvlW 7UGD>% nH=qv"0 2ܬ׶.+ĔUA8Y(i22nEʽzOҝDiqg†@ /!Uo5 llټ9bny9Y 񦛇x8 |sc! ]yJa:W/7pxcYݨ0 S>Grw5FF|.X\d?Jgf𵞮)mi.28cus͸D%xg `:TNԷ@!ڦer7K mW1rpЁ@+9vķY$C 5;,Z J>5D(h>FM4 &PtV8Y9. JA# GǕFr\D UΦ*#jz^1+r*c(X?^op(I&ׄ^a gm*  ^-IE|,,Ip{"x#j^JQZ%@Q~JbI˗o9 | ΄-+c]ELGQH?u&6_*ӈ$VL.SàȦ{Krsڻv51X;L&DbD& &u6_QkMYB0pn,e *&0lc $XX2 4r/v+!LEtwPi0ȃ~F͐!1l9wr g@%s72Q v| NSlgjGS$F6Ajv+3U񳀏}}nwH%T/֡@BFr`C4~ 9U.!7:(Ɍ@>CM:i V,$ mTym‚U0F(+4lMiK.  N9dp<EmA)$GB/kAx۝fKfF,֢K l KĨߝFVqot|@ڤE!A)bY10B6e{suj/ݮϳm;Eų xMec hlFyeP a5(hq=JnH &Ay^F9S&f̀_62U Z`hN K"Pklx:8AG5WU4taV+0X(XƗYcD1A0zf" aɉrWQSJe3vߪӏIaa$|;˦ }H|:Btr?KVzk]i3Tdwn@:ïd6ߙW;̛>?5qSV^ 2@e5w>}D.߭`Novӝ7ʗlxpmuq|c:j οET E. :U HϘ>ՐXmPi([כ<30aM -TETuD\}ĔHpQK@jf("4bh|+Gy [:L+_kkoO=YBC2]I ȣ vP` jb4~gq2`ˊvn6Rq.kNK{Єõ=.4r&Ft&$L*f@*NZ{; Cݿopnnzp(L)1M=&ڨ,ٱs^y'r;]GzCO'8FAk) SΚՎzCX],.Kw]GzX:m&އ%9}p7Fh($T\%y7CpcR|cZ.8L-{BA#cآLM$0dMCUy8g^eLztL/H&Sҩu6(ef60 ],(/ՀxS{A8؉]ud?QԔ=g9zIogѲ[tx?|<ع>PBTkQf(Ew 4@GHB?h܃@ki}um h0 O_^>3|>I|䁫 e#28`l?K6n\CԹKeD$jo)C'rS#ۘ,pL#;e\n@"6y r/8}beG(Sf6cu].:hlC>z'ȃ'f2k\p<=H<1xbX~*0:';\ZXzSZDeӠvFAC"/%0micc_jX5mFu0:\(moJ8I 4Q$,C8"͐IDhB~=q\ʮqrNU!=(F7RE3sդ=LV,`x]ڻ:X-k9qxyWgm;s[P|/{tݵ8U 3=gJe,Fc d$-rm{v9kQbΩ3tOA|㓆$faVVRmF3ڧ~i |Q[D?:q) I"Xyuz SCP[n;H|םn&85=V[=zS'*kw\|F:ԩ!$!:48AXO]TWs'gJifNT 7]A&MM|h_zer%wǤ#5GPqHnk3^ͮxFx4H{#s2t:tO+kZ_r;9JmQ1{^dՋh8IF蓚_-OTK+׉f->f /S3بCўxuNq%}rWgY#^ك~7';>x$맛pB[ʌTq>5}$+J -D[6=Ԉz elvFpCXf\-\uƇJWܱK QiY¢.aeQD= G\[iJl 5dTRϾv, 7̘ƹ:k!} 繆gxD}6|g3滜ឍ';>qu7܁z0-9#x!s>&FiYj"N`l83r򖱨PN;GxjG8Vf l"k8~"#!ۦIg$E `8}n9bFh}(:qh9omSz?9vV;h4FTͷc! |&eH[&n ,$0\]mQq y3*0I9U)F%)nt-3p4E}pn!2ӷKxxU G^+ ŅNSb129md_&6.d| ]S]ʢOLyҁ7ԱN>S#4x+\.N{88K&=gBˡjg}Ϝ}_ 1h9Bv0L*ϧghE(^CZ}h 5K򏁪\wNzR/ʫmM|6Gϛtl^뽓b9G1f |t`_Gr} R->\0u>p|NHg)'˚[~קDҦE)5 b( r樂t3ch3.)n7_k$~ZDž{v H9 /gmΟx"#.'t)D@"DR#Q]-5ZPͨ^;^YMO¼["󪷊6=ƭFrb_-$(&ۘ(44|*9g1AD6NI gBB@ZQahЭsn"xl=GzN)qz@ƪR[ U!H5 GEUC<&70lףR >$ %"p\$YeDP8]v⚛n v35Y`{t dHӇz( F9HkjNRXIm KyM CZꚊUZvUȐsa[fhG~qDPGe۟t_ۉ;{I>T1P۝&J*"|T_xa0ԓCc{jKVUUP{ IQ pc6a;nsdGSia׺QX V KtL"5xn̓PRciK}B]@%H$N 6T5E1[Y c p Ui_X_װO%~ܡQ#7"9g^3ęDö:dכ(;ڣ*iQ7$l$&&ݓqm +jv_RΩz)ad?z]u=nØ\o.Ԥc0掬Q"S_h/U2ʰg?c"ކCy IWfa\˽{sxB#CM@A5ׂN.  ѓ\[i2Y}aLG8\s=0 b]~tCU'?ߜ3Dxl,=ԎSQw7i^98c^.J#[O:UKFعl~H U@]C(LDk-aaV0'lLLRn' "ʄL+(:6]JPEAM<_<~9{; YUlγbB˴e򰺬tI OamHs:A-ҕ/1-9qA&d(0ϋ7|x؞l*FZ6,+'ŞuA1̈_p>hF8,d%|{Qc^0#pB3:u79|'˓sSAǏIc:o7r목È"a|N;1~Gy ͑z4# i1B Cwcjh2Aڦc@Fb5¸y zJ9[0c\0yz7V{OEn)DD u\wV!LK$x(Q #櫂8t˜- Cj8Kw*tIo:w'MfZ/!,A(o= f~*'=xmہ<< ׂ Ke*Y&:Ţ.:1^Df x2G:~m /W_9js'f#Ex +nc vy6j$ݔP[Ctw'X$PL}Ej'r/NQ߻BˬyK/%8X܊;2\Hϵ BO)1;~2{X;z{Xn~דGBF6Hz V0Exaaxd=. *F"Q!"wL1`HT0@(8"$ßg,}1᳑7'lι8ȹ Ӑ(D8Geny:aA1HL?9ߋ<]_7q x:{bHLoևG[F9}!J$lVxTpN /R5~?!-t߷'Bt'fB>n)gB\\,>'?{?DMPT.F?u)JD@H=5LY!~JʘIxc )Wʀٓ CNԇ$&Sߤ>xPJO%'S=/(E:=F\ ͇DC{%OXT3~$!|duѽʀ^:~ ٿh.<Ջ;2"? &5r" ~r?*8`T~P<2;Ź*r@2@I'SBTEP/Z,vB*K5T=w^“^woMjW#@I"sL B`Jf2{U6i z\P8^' ViSDu Cj'f,v&XR\YZ1qDzG[3**mQ 4Łc< 8 &:r]L՛Eb@ &0BB8p矪N#Rۡ\lCׄWoEyx-xzDžp'?Py2 o}yƛ&<2 &M2{ dg~2 1UBD7@GN%z)vۖgG1~ZO_>@ GJI6:~Vqױ]Ʒr>4on#}-?~qAG  k÷PBLK4U4$BP+@B JMDAK-TҤQIUzg? //W&dqy$?/=Ba4?ÿdO~r/2 !_+xlOe0ɽ H]pM7_{3?%v:ݯi}@aVNiLm`p㷤O<*ێzq`'SHjdJu,!:e RyUsJ%>diBG>`edqi , F( fՙTSIBT4;b(tJ PEqV3Ez #BC!J]7t}4~&fn#`?0mGfU#q4j1*"i є5K @%ԤW: +)E Cw=+?i >0KA)zm}u'R1{a16&_j=~^ػm|&_'duV#ҕ(k^;O k$BȰ#YkA_qWW[AR B>y'!A?#^vx16)wN[cx@Y~Ki1P7m Y B'aԷBڜBO|x$(߹ k- uO#+߅^; Qbx?{Dv+9CQR> /ApfKsA#NB{|hUط}~ +ȾT#ۤ2\,ʝԪA*2 ڞ/}rq} .Dzc]<]W!)"?lzNHӨOR?6 rtZuo]_ɤdׯ[-=zXSl+xd΅d4vEAdX~J$@ 1nV?.#9 WeDSOG8/t7V'깠7 n9OS#c2 ObC~"@j *u2(uKy1)B $ #J.mc=ye֝gu Q\ 3TĂ y;~ ΌW7pGREO)j+İɨLa 2!#Ncmi&]鷏A%EDҁiqK5~,N4X Dr]#EM*3NlS ̔l`1 ꑩB)X@2g 9DFDP6n8ؓL2(ˤP46iFDnOJDʅ!Z9s( b,pʝY9`MQX,Tb0e@c /x^]2THeB"?F(kЭ eDh* 7G5xы4'{%üŧ 7-|?y)5>sB.[~]a $MPc0l -Y!-kVeeb?%l^āĦLwY+ѩwK`g, X̀nTKZij0ȐFD0LѼ!Q$71 g2":N1@bi;iXK0pq1f66;Yǔ(uQZF$`ϖb%ڑP\Hxep(6S肴&Gd NF4*cJD0:w8aN!Lʘ(AT^bi] ˝bnڙ.b2٣Cܑdi1M f bo,g? 6Or!K+R$~r KY324&I8LP?PQ1I'z(w`;`9pІ56)v5aG_3yr!ؐd2T7Q&Ha=Hf"yUCw^HBHŘƂ\O^ vMW,uOyL߳I 1z9ԄtQ>_ 㜑_k4զcE Zw4zbG -^xghb rR抋GdЂdޫwCS)vk" nzjv^}2l@Jbnޡ&z{_{2ilIs;s n.p=5LfEv%x_K qK kMz*Kd/:"bUv5n>FwgN7p=AoyHzZ;Ïy%" 'ߋSlsLc2"jc0gn;sc TgMo mjcu_yT0iԛ߮`VdyN6弊0xHdv%Zw G ufZi<t}y[KkFR3WM5Gε(F,wƳ}q38ROޤM5aY{fc7-7tf{U2W |{g7nJRMw^f\ݛ@ԩw8ze^7jT— nX21G۶ګe5/%kqWÜ6x;>BQAX̹zfg J} |C[Il. 4Qq ~lZJV(XlooPuߐS}_\:@)Ĵ&@DxR=3L y#]+V@!t "7|+L?Z<㸯zyCq;>W/G|wszuDbF Dq\74-Ŗ~ A A7,-Ç`_*+nT Jlik24+nHL/?TS 2~r ]9؊72V"0 'ayfwØ2:;Z"Iߧ>W[?Ҿz}m@~M`z8,| $mn^δy}7|] :l#Q;>K-aɾz67>-F->j0/$l$eȼN@2H0W VCca}EnB{`z=7뼦,/P?r?Զ?VCWǏ1(Mm w^>ױIP~?wg?w_l:GSIxcߗŧANVg?G|g}_.n=>?>oC[g?s8}nR~Gg%siux\>_أx=O>}"|C˨y$vDj3QXqqb!C?UWGX~Q㔔 =''ƀjn(KCxWzq8#zN^0p=/MTS+As'(]ݪ~4Cr/ME۶q.#+EN\3_d 'aG`,ш{Dg9~n8Gct+)a_B{|Wݰ {y(87) #CHE3pQzlq'Jmm4C`F-yarRhGQq WN>I,BvۼۛuWהT}5]zrlX= t:+֫HSmMtv=~Y><"H=:&j~_һ[aƫo[P' KeW,$Q ZFQF`ՖCHLn+VQDDwQ3WN#Zf q&58114ԣMLc9vZ~h2ihPШPJ=]ȪS:~7\~8x=jÄ#Z,=>-RM=/>J߮C:#Mb]C=7Y~I ? !Z&Ó= }G|2_TfDEB8'*N0\ b c"3*?J-ho,">8_ˬmֿj1bHOa\$i "pDBB Al]d%Xnk!"XХHa+"cTOq.'MOnӈh}ӧLAw_g-(F1"MTNX>6PHF?G8x5-XF|O'M'8yZ9MÉ*`O?<0 ύs=x֍3uɒx 0S 1Z/ᵂp8(ԉFz3,x_Aɷ bfE4#G'Ȝ ??پh~K6C;1?|^r(a`E̴R"MƎp,e:v*?*k$JX” _)X& 7UyM?}gxv4i+ivYz1|L|gG3LÐB`RYj?S6|RL]s^bHザsC#K~87Jl ?hn!TZfHHI{THhm+4" J,!Y9 -n*-~MKבF##W`f!&3H &h&kb]ZB#@m jwi4}Z'‹8sXXa )V<̔3=d/`rCR ܷVt] 11l q1d ̓Yigbu@jOROq/C4c ԭB !ɜ 3(FӢN}2M$!cfbdqt^ïߢ BlܠX5/){0eX-mjq]X15wMi}&TԺb|?|O^)d75i5DTYnkڳ8|[?suˑ?lMJw{}!=:/ML֖8یcRgRQd4w%"QYkrרtD7X-"->e퟿e>6ԝ߆w#ݲ)\gj)Fr-3OWaN>D>VjR0TcTbLPZӍ6p7$ESKل CEt !rg8H*/}kg=l~9% thD\`j /l[54鈗֒ ~PLܔCl&Ϸ/|Z"<’7R!k &fg4]a=L DǸkdgZcSuνq)?ޡ^fmG{V3DCw$f&RJjÓi|a9LF#2YML6ɍJA vɽ8B_7o.GPn9ocA+ꀞ7q/;BlX/޿ *X~%LȌL:;y[U,@(GjГߙo=U@%РL.1zj7X,2h5I3NbtY݊ɓ|'uS%KMVsÇDнy#>S7][( :90$h_$LÏBOնY:S[c0ؕ?VgO?1=_bdfAvlNr6ٿ؜ʼ90=bG~̈-}!L pg1uBov $z܆JsD?v&#E쁁ޓ-yv+w˼U{S5%1qaȇT<h9H+e?XB8O82|a0BR-+Oɚa(G%wj+^ץg㋡| t8Tm9g5M_ŊixLrڦ+ Hr~D ,|Tk|R7.;DM|ZH#v jcE>a ]}3Jl;"0G6)e8^IȏJ B]iɅ,oNTd ACezwzBdcv>AaοNaxӹ@䆮eU03Bz(D/n=]JH.8?'1D)F -Tlzjz0y&q@\yf mO:?CodnT/K9~7̫LֆvDȠb>05 E^+$Zt!47ơ7=2o= ֽa Y49\=4hM5CzT5!`g@VveuM~/h1CӭމV~N>.ad)7DR&:8l貌Td uJ!o~3 U U #{5.|KkHoTo^l9UMౖPyQ4p4DL{fhF iԋd9D{)όiA9qOf2 !w*&A4 GLq2|d^[|{FA,7_ױ@8@X0"  .z^M8 nHbD3A,{mWoM9lF?,~ 1|6Hό yaҨlb^ss=S\/NUgþ, (&1v/ӿ7M,ƑHIYd|&vnc_woҼe꺗QI[5J*qj)|D6ߣeA-/.%YbSSaw[ʱZɜ4ƫH&qLd &Z 6Bʝ6Gpʣ^ ?&g|:4 R %ý= c09PmwO=QoL,?yǫUq`@GF ɘ1f1S-/.;Gs t4t-kyncPH*mLs˅eazߘE\Ŵ5d q8E$y*i?#x(ݩdEG$C̠d oǨ|۾t%wlKbZsHPA>ϡ09RcC://Vwg X:Zmrx* kAٕ67ص-P;?H׌nBg:Vgόfה$dw%3k`)G̋x ?M)I70̈́'Ǽs@eٔǼ;{j?f&ć Nr{f%:fi|pa]ށqu; ʦ4c}#Lcjw?><\e݋)@o}Ʊ|΢i04^3aw=@hCR\V,gT`D4STC^l u8~ۦ2jыqr;/#pj!c٢)ao to'<9:&3П{-  X r} '<pb. l}_޲HI%1U^YlGCI[  =,. Ȫ"=ԙ1D(>/y_>,χswC̰qWGT Ʊն/ Κ.}z֐?+kCK A)Ե=_}!d`Zwvb>c ~Qb^HJU Kvo3m.|WTXFn۳b+3 w 0téK&ʛ aBO*A_dq+sTIlfM]_9&kSI7pa<Č2v2wYhj!7jOCp`0X(fUe'O5:ֽ/$)cFk!^jo;_c+ΰ4u_^⡮KCbHU|Ttћmw xi3WD$_i8QOeD|D4= %vIq48'>!];^Cf׌O%s].d :[qn"hDiq =ǦF=3Ղ=ra~jA%8_&UN}[=ـwgnx6qggmsK8l C}y_OyJD|:eFʁ0)]*%ߥ 18$+Ϝ/ G>r3%d .69S:2U w~Kp~3Dž^I@e[g 1j%N. *C!w`-3 k?.] c L^M]^j|ϊܥ͞|# ׾촨G0k2A >+-[Sk#- Ad*_Opnlcָ!}?\sH6_:,eZ{cI2BLr>(7GKȴx$#UVЇ43t:#,L#&,"_"{1]}W3m@+"O¶ht/M9^T1|1p\:E”,;a48;x0ҕTFTaY:Wv@|ğ/rɓZe̜v׬-^5K;Eڼ~}+ R]ؒ?\;ۋB9QYzuM߶qKGŮ9= JbR@ τQ,<ѵWmd` jX sl[ƹsW¤v>j @wTeft@ DtXT/0袰RN R?n[ޑi(t.jE^!7@u:B'6i&2|{e^DEe!$,vIEcVrG-tVqz߽pd] ao=_?W_QeܑgJ 0qg \イ2>/On"spZ6,]}/A.#V5eZV๵jh!Px KHkWj= tp.Ct]]Hy6iw,xNԘp>jW湊i;]pdC5H`0= ]us09 oG W^>?P;`΢trڵe(ʞ,^2V+ßT4z`/HK|n4ŜnpM3NC~*&$̯`/"<61"8A6vSr~lb]Α:C/"\x1 pZ_|2Էxu<ߢʩDYЩc@A=nw[#,W4|AV=j v:BwUf'Hyo!@D2կxM{e!m]ap."`!vTWPELiƱZ|Rk6U͍m6\#PqQmrN*uFnvcvzF|%;+YtXZMJ@D:ATy ?rŽypճ'jtjd_NB.!XtEV jgx#;EoZW{ V)PwtGjz^29t/;a6k C3AvT :DX+mrD㋯۱7ǔkx!tpqfI"ϺbjNƛI! c9 6%[R:QI EUN9k$LJ H ӭ\u(`z(Dq61H׾82?lmZ%WہJSUgvl{_1ZRXP!W(֗$[1>YLLlkž[_}93"QtQ K VGޗ\9k0gm1aplTQ#?8~!Eӫk[Uie&"xj4z- NGtbƙvJ x’3 !L/)iSl2YZ'󗤛BPdG{0ᮼX{C@Xp̞ۧ'!p߉XqǡsJmnv;dz[rbOt͜. Ul$Ϸ;MO]ކ3e;Ӏzӫ\xjYt? υ?0>p84p2,T.>~ TUQ8BhvkﶎEPmYXG( w*JI 9tvl-$u)(fMbS~w 8Ek4' X1ݮא]Dnve:t{: 8fBN*;q,:+~-TD$[xG/:up=[6I""LNb8q6ZoPTXNۆЁ*EVPx+-%0 ~FeYWP4"O=E/Le-$˷#p rȓ<4.czk;uZ||,:/pwVO1󺬸>LDIK,:K(_WY|-;'@sNgG;8bMH>"ɳpʏw앬S5'P&\=_ń-۞Ag8EUĨ4j%:+EϏĩqM\% vFC˂mTvD 50PnnsR!'I ~_?ֶk}}̋ P kg:ԍ0kP'Q!4 @cI]Dw=3ٮv y\wf>`VřmFgY^w]nBXKA`@}+OMRJ<ſ\4 R'ގQwn +N>( 8w!ܴsu`]`G=!#V"t ];,l+b7٨:c&c#-bIS\IgdpxZ^oMFrT1bT?ۇ"<9cS_k㦈O45eגSE ϟ7ORN^j vYWo;"#PA兺Լ'3_08^?)L<Ttއ`%~8̲09~kik `P匀 % _v낯A?xN0Wm&=bDBŤ~R~2yו?ɁYu?;b?jl $KQ=@O>u ?qm4z@*`GH' <ځ{D78Z}mY yqXw/*Wa>Q9+UP[ @" cWןȾ78{`DLBrlV(BsW\B#2#"n_| O۠E E@:Nn se;h$M@j>_^bΰeߒ 1{lAf( Q5OR帵P a @9 K68Ip@l`0 -Ƭpm{>?42#1s7oe]"SW,L䮗?:8_zt<\es@N6:s)uN"!F?5kOqNʂN P.y=!;"W=jY./¢^yj&=ԨO-T=f;$x:a GW@#FcC SNU,2;6EklڲmF3 qn} ([+gn57ʞ ~~yڷ{7x߰fRz_hfPvS֝<mab] w@B xXs( Vx-%JUA:)'X?ѱx,u`0a,uL{߫Oi}ak5RGF7yRlt4")BI\y~Gؠ䤍 ֆPTݜp[k_!b< |^DLBeA-TGj|1xf;"8k@]~:c7JHMn'`/-Q߼^}iF%zl;/|IĂrS!g7ɞrOv7'M;