diff-hl-1.8.8/0000755000175000017500000000000013767516414012711 5ustar dogslegdogslegdiff-hl-1.8.8/diff-hl.el0000644000175000017500000006602613767516414014556 0ustar dogslegdogsleg;;; diff-hl.el --- Highlight uncommitted changes using VC -*- lexical-binding: t -*- ;; Copyright (C) 2012-2020 Free Software Foundation, Inc. ;; Author: Dmitry Gutov ;; URL: https://github.com/dgutov/diff-hl ;; Keywords: vc, diff ;; Version: 1.8.8 ;; Package-Requires: ((cl-lib "0.2") (emacs "24.3")) ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . ;;; Commentary: ;; `diff-hl-mode' highlights uncommitted changes on the side of the ;; window (using the fringe, by default), allows you to jump between ;; the hunks and revert them selectively. ;; Provided commands: ;; ;; `diff-hl-diff-goto-hunk' C-x v = ;; `diff-hl-revert-hunk' C-x v n ;; `diff-hl-previous-hunk' C-x v [ ;; `diff-hl-next-hunk' C-x v ] ;; ;; The mode takes advantage of `smartrep' if it is installed. ;; Add either of the following to your init file. ;; ;; To use it in all buffers: ;; ;; (global-diff-hl-mode) ;; ;; Only in `prog-mode' buffers, with `vc-dir' integration: ;; ;; (add-hook 'prog-mode-hook 'turn-on-diff-hl-mode) ;; (add-hook 'vc-dir-mode-hook 'turn-on-diff-hl-mode) ;;; Code: (require 'fringe) (require 'diff-mode) (require 'vc) (require 'vc-dir) (eval-when-compile (require 'cl-lib) (require 'vc-git) (require 'vc-hg) (require 'face-remap) (declare-function smartrep-define-key 'smartrep)) (defgroup diff-hl nil "VC diff highlighting on the side of a window" :group 'vc) (defface diff-hl-insert '((default :inherit diff-added) (((class color)) :foreground "green4")) "Face used to highlight inserted lines." :group 'diff-hl) (defface diff-hl-delete '((default :inherit diff-removed) (((class color)) :foreground "red3")) "Face used to highlight deleted lines." :group 'diff-hl) (defface diff-hl-change '((default :foreground "blue3") (((class color) (min-colors 88) (background light)) :background "#ddddff") (((class color) (min-colors 88) (background dark)) :background "#333355")) "Face used to highlight changed lines." :group 'diff-hl) (defcustom diff-hl-command-prefix (kbd "C-x v") "The prefix for all `diff-hl' commands." :group 'diff-hl :type 'string) (defcustom diff-hl-draw-borders t "Non-nil to draw borders around fringe indicators." :group 'diff-hl :type 'boolean) (defcustom diff-hl-ask-before-revert-hunk t "Non-nil to ask for confirmation before revert a hunk." :group 'diff-hl :type 'boolean) (defcustom diff-hl-highlight-function 'diff-hl-highlight-on-fringe "Function to highlight the current line. Its arguments are overlay, change type and position within a hunk." :group 'diff-hl :type 'function) (defcustom diff-hl-fringe-bmp-function 'diff-hl-fringe-bmp-from-pos "Function to choose the fringe bitmap for a given change type and position within a hunk. Should accept two arguments." :group 'diff-hl :type '(choice (const diff-hl-fringe-bmp-from-pos) (const diff-hl-fringe-bmp-from-type) function)) (defcustom diff-hl-fringe-face-function 'diff-hl-fringe-face-from-type "Function to choose the fringe face for a given change type and position within a hunk. Should accept two arguments." :group 'diff-hl :type 'function) (defcustom diff-hl-side 'left "Which side to use for indicators." :type '(choice (const left) (const right)) :set (lambda (var value) (let ((on (bound-and-true-p global-diff-hl-mode))) (when on (global-diff-hl-mode -1)) (set-default var value) (when on (global-diff-hl-mode 1))))) (defcustom diff-hl-highlight-revert-hunk-function #'diff-hl-revert-highlight-first-column "Function to highlight the current hunk in `diff-hl-revert-hunk'. The function is called at the beginning of the hunk and passed the end position as its only argument." :type '(choice (const :tag "Do nothing" ignore) (const :tag "Highlight the first column" diff-hl-revert-highlight-first-column))) (defcustom diff-hl-global-modes '(not image-mode) "Modes for which `diff-hl-mode' is automagically turned on. This affects the behavior of `global-diff-hl-mode'. If nil, no modes have `diff-hl-mode' automatically turned on. If t, all modes have `diff-hl-mode' enabled. If a list, it should be a list of `major-mode' symbol names for which it should be automatically turned on. The sense of the list is negated if it begins with `not'. As such, the default value (not image-mode) means that `diff-hl-mode' is turned on in all modes except for `image-mode' buffers. Previously, `diff-hl-mode' caused worse performance when viewing such files in certain conditions." :type '(choice (const :tag "none" nil) (const :tag "all" t) (set :menu-tag "mode specific" :tag "modes" :value (not) (const :tag "Except" not) (repeat :inline t (symbol :tag "mode")))) :group 'diff-hl) (defvar diff-hl-reference-revision nil "Revision to diff against. nil means the most recent one.") (defun diff-hl-define-bitmaps () (let* ((scale (if (and (boundp 'text-scale-mode-amount) (numberp text-scale-mode-amount)) (expt text-scale-mode-step text-scale-mode-amount) 1)) (spacing (or (and (display-graphic-p) (default-value 'line-spacing)) 0)) (h (+ (ceiling (* (frame-char-height) scale)) (if (floatp spacing) (truncate (* (frame-char-height) spacing)) spacing))) (w (min (frame-parameter nil (intern (format "%s-fringe" diff-hl-side))) 16)) (_ (when (zerop w) (setq w 16))) (middle (make-vector h (expt 2 (1- w)))) (ones (1- (expt 2 w))) (top (copy-sequence middle)) (bottom (copy-sequence middle)) (single (copy-sequence middle))) (aset top 0 ones) (aset bottom (1- h) ones) (aset single 0 ones) (aset single (1- h) ones) (define-fringe-bitmap 'diff-hl-bmp-top top h w 'top) (define-fringe-bitmap 'diff-hl-bmp-middle middle h w 'center) (define-fringe-bitmap 'diff-hl-bmp-bottom bottom h w 'bottom) (define-fringe-bitmap 'diff-hl-bmp-single single h w 'top) (define-fringe-bitmap 'diff-hl-bmp-i [3 3 0 3 3 3 3 3 3 3] nil 2 'center) (let* ((w2 (* (/ w 2) 2)) ;; When fringes are disabled, it's easier to fix up the width, ;; instead of doing nothing (#20). (w2 (if (zerop w2) 2 w2)) (delete-row (- (expt 2 (1- w2)) 2)) (middle-pos (1- (/ w2 2))) (middle-bit (expt 2 middle-pos)) (insert-bmp (make-vector w2 (* 3 middle-bit)))) (define-fringe-bitmap 'diff-hl-bmp-delete (make-vector 2 delete-row) w2 w2) (aset insert-bmp 0 0) (aset insert-bmp middle-pos delete-row) (aset insert-bmp (1+ middle-pos) delete-row) (aset insert-bmp (1- w2) 0) (define-fringe-bitmap 'diff-hl-bmp-insert insert-bmp w2 w2) ))) (defun diff-hl-maybe-define-bitmaps () (when (window-system) ;; No fringes in the console. (unless (fringe-bitmap-p 'diff-hl-bmp-empty) (diff-hl-define-bitmaps) (define-fringe-bitmap 'diff-hl-bmp-empty [0] 1 1 'center)))) (defun diff-hl-maybe-redefine-bitmaps () (when (window-system) (diff-hl-define-bitmaps))) (defvar diff-hl-spec-cache (make-hash-table :test 'equal)) (defun diff-hl-fringe-spec (type pos side) (let* ((key (list type pos side diff-hl-fringe-face-function diff-hl-fringe-bmp-function)) (val (gethash key diff-hl-spec-cache))) (unless val (let* ((face-sym (funcall diff-hl-fringe-face-function type pos)) (bmp-sym (funcall diff-hl-fringe-bmp-function type pos))) (setq val (propertize " " 'display `((,(intern (format "%s-fringe" side)) ,bmp-sym ,face-sym)))) (puthash key val diff-hl-spec-cache))) val)) (defun diff-hl-fringe-face-from-type (type _pos) (intern (format "diff-hl-%s" type))) (defun diff-hl-fringe-bmp-from-pos (_type pos) (intern (format "diff-hl-bmp-%s" pos))) (defun diff-hl-fringe-bmp-from-type (type _pos) (cl-case type (unknown 'question-mark) (change 'exclamation-mark) (ignored 'diff-hl-bmp-i) (t (intern (format "diff-hl-bmp-%s" type))))) (defvar vc-svn-diff-switches) (defmacro diff-hl-with-diff-switches (body) `(let ((vc-git-diff-switches ;; https://github.com/dgutov/diff-hl/issues/67 (cons "-U0" ;; https://github.com/dgutov/diff-hl/issues/9 (and (boundp 'vc-git-diff-switches) (listp vc-git-diff-switches) (cl-remove-if-not (lambda (arg) (member arg '("--histogram" "--patience" "--minimal"))) vc-git-diff-switches)))) (vc-hg-diff-switches nil) (vc-svn-diff-switches nil) (vc-diff-switches '("-U0")) ,@(when (boundp 'vc-disable-async-diff) '((vc-disable-async-diff t)))) ,body)) (defun diff-hl-modified-p (state) (or (memq state '(edited conflict)) (and (eq state 'up-to-date) ;; VC state is stale in after-revert-hook. (or revert-buffer-in-progress-p ;; Diffing against an older revision. diff-hl-reference-revision)))) (defun diff-hl-changes-buffer (file backend) ;; FIXME: To diff against the staging area, call 'git diff-files -p'. (let ((buf-name " *diff-hl* ")) (condition-case err (diff-hl-with-diff-switches (vc-call-backend backend 'diff (list file) diff-hl-reference-revision nil buf-name)) (error ;; https://github.com/dgutov/diff-hl/issues/117 (when (string-match-p "\\`Failed (status 128)" (error-message-string err)) (diff-hl-with-diff-switches (vc-call-backend backend 'diff (list file) "4b825dc642cb6eb9a060e54bf8d69288fbee4904" nil buf-name))))) buf-name)) (defun diff-hl-changes () (let* ((file buffer-file-name) (backend (vc-backend file))) (when backend (let ((state (vc-state file backend))) (cond ((diff-hl-modified-p state) (let* (diff-auto-refine-mode res) (with-current-buffer (diff-hl-changes-buffer file backend) (goto-char (point-min)) (unless (eobp) (ignore-errors (diff-beginning-of-hunk t)) (while (looking-at diff-hunk-header-re-unified) (let ((line (string-to-number (match-string 3))) (len (let ((m (match-string 4))) (if m (string-to-number m) 1))) (beg (point))) (diff-end-of-hunk) (let* ((inserts (diff-count-matches "^\\+" beg (point))) (deletes (diff-count-matches "^-" beg (point))) (type (cond ((zerop deletes) 'insert) ((zerop inserts) 'delete) (t 'change)))) (when (eq type 'delete) (setq len 1) (cl-incf line)) (push (list line len type) res)))))) (nreverse res))) ((eq state 'added) `((1 ,(line-number-at-pos (point-max)) insert))) ((eq state 'removed) `((1 ,(line-number-at-pos (point-max)) delete)))))))) (defun diff-hl-update () (let ((changes (diff-hl-changes)) (current-line 1)) (diff-hl-remove-overlays) (save-excursion (save-restriction (widen) (goto-char (point-min)) (dolist (c changes) (cl-destructuring-bind (line len type) c (forward-line (- line current-line)) (setq current-line line) (let ((hunk-beg (point))) (while (cl-plusp len) (diff-hl-add-highlighting type (cond ((not diff-hl-draw-borders) 'empty) ((and (= len 1) (= line current-line)) 'single) ((= len 1) 'bottom) ((= line current-line) 'top) (t 'middle))) (forward-line 1) (cl-incf current-line) (cl-decf len)) (let ((h (make-overlay hunk-beg (point))) (hook '(diff-hl-overlay-modified))) (overlay-put h 'diff-hl t) (overlay-put h 'diff-hl-hunk t) (overlay-put h 'modification-hooks hook) (overlay-put h 'insert-in-front-hooks hook) (overlay-put h 'insert-behind-hooks hook))))))))) (defvar-local diff-hl--modified-tick nil) (put 'diff-hl--modified-tick 'permanent-local t) (defun diff-hl-update-once () (unless (equal diff-hl--modified-tick (buffer-chars-modified-tick)) (diff-hl-update) (setq diff-hl--modified-tick (buffer-chars-modified-tick)))) (defun diff-hl-add-highlighting (type shape) (let ((o (make-overlay (point) (point)))) (overlay-put o 'diff-hl t) (funcall diff-hl-highlight-function o type shape) o)) (defun diff-hl-highlight-on-fringe (ovl type shape) (overlay-put ovl 'before-string (diff-hl-fringe-spec type shape diff-hl-side))) (defun diff-hl-remove-overlays (&optional beg end) (save-restriction (widen) (dolist (o (overlays-in (or beg (point-min)) (or end (point-max)))) (when (overlay-get o 'diff-hl) (delete-overlay o))))) (defun diff-hl-overlay-modified (ov after-p _beg _end &optional _length) "Delete the hunk overlay and all our line overlays inside it." (unless after-p (when (overlay-buffer ov) (diff-hl-remove-overlays (overlay-start ov) (overlay-end ov)) (delete-overlay ov)))) (defvar diff-hl-timer nil) (defun diff-hl-edit (_beg _end _len) "DTRT when we've `undo'-ne the buffer into unmodified state." (when undo-in-progress (when diff-hl-timer (cancel-timer diff-hl-timer)) (setq diff-hl-timer (run-with-idle-timer 0.01 nil #'diff-hl-after-undo (current-buffer))))) (defun diff-hl-after-undo (buffer) (with-current-buffer buffer (unless (buffer-modified-p) (diff-hl-update)))) (defun diff-hl-after-revert () (defvar revert-buffer-preserve-modes) (when revert-buffer-preserve-modes (diff-hl-update))) (defun diff-hl-diff-goto-hunk-1 () (vc-buffer-sync) (let* ((line (line-number-at-pos)) (buffer (current-buffer))) (vc-diff-internal t (vc-deduce-fileset) diff-hl-reference-revision nil t) (vc-exec-after `(if (< (line-number-at-pos (point-max)) 3) (with-current-buffer ,buffer (diff-hl-remove-overlays)) (diff-hl-diff-skip-to ,line) (setq vc-sentinel-movepoint (point)))))) (defun diff-hl-diff-goto-hunk () "Run VC diff command and go to the line corresponding to the current." (interactive) (with-current-buffer (or (buffer-base-buffer) (current-buffer)) (diff-hl-diff-goto-hunk-1))) (defun diff-hl-diff-skip-to (line) "In `diff-mode', skip to the hunk and line corresponding to LINE in the source file, or the last line of the hunk above it." (diff-hunk-next) (let (found) (while (and (looking-at diff-hunk-header-re-unified) (not found)) (let ((hunk-line (string-to-number (match-string 3))) (len (let ((m (match-string 4))) (if m (string-to-number m) 1)))) (if (> line (+ hunk-line len)) (diff-hunk-next) (setq found t) (if (< line hunk-line) ;; Retreat to the previous hunk. (forward-line -1) (let ((to-go (1+ (- line hunk-line)))) (while (cl-plusp to-go) (forward-line 1) (unless (looking-at "^-") (cl-decf to-go)))))))))) (defface diff-hl-reverted-hunk-highlight '((default :inverse-video t)) "Face used to highlight the first column of the hunk to be reverted.") (defun diff-hl-revert-highlight-first-column (end) (let ((inhibit-read-only t)) (save-excursion (while (< (point) end) (font-lock-prepend-text-property (point) (1+ (point)) 'font-lock-face 'diff-hl-reverted-hunk-highlight) (forward-line 1))))) (defun diff-hl-revert-hunk-1 () (save-restriction (widen) (vc-buffer-sync) (let ((diff-buffer (generate-new-buffer-name "*diff-hl*")) (buffer (current-buffer)) (line (save-excursion (unless (diff-hl-hunk-overlay-at (point)) (diff-hl-previous-hunk)) (line-number-at-pos))) (fileset (vc-deduce-fileset))) (unwind-protect (progn (vc-diff-internal nil fileset diff-hl-reference-revision nil nil diff-buffer) (vc-exec-after `(let (beg-line end-line m-end) (when (eobp) (with-current-buffer ,buffer (diff-hl-remove-overlays)) (user-error "Buffer is up-to-date")) (let (diff-auto-refine-mode) (diff-hl-diff-skip-to ,line)) (save-excursion (while (looking-at "[-+]") (forward-line 1)) (setq end-line (line-number-at-pos (point))) (setq m-end (point-marker)) (unless (eobp) (diff-split-hunk))) (unless (looking-at "[-+]") (forward-line -1)) (while (looking-at "[-+]") (forward-line -1)) (setq beg-line (line-number-at-pos (point))) (unless (looking-at "@") (forward-line 1) (diff-split-hunk)) (funcall diff-hl-highlight-revert-hunk-function m-end) (let ((wbh (window-body-height))) (if (>= wbh (- end-line beg-line)) (recenter (/ (+ wbh (- beg-line end-line) 2) 2)) (recenter 1))) (when diff-auto-refine-mode (diff-refine-hunk)) (if diff-hl-ask-before-revert-hunk (unless (yes-or-no-p (format "Revert current hunk in %s? " ,(cl-caadr fileset))) (user-error "Revert canceled"))) (let ((diff-advance-after-apply-hunk nil)) (save-window-excursion (diff-apply-hunk t))) (with-current-buffer ,buffer (save-buffer)) (message "Hunk reverted")))) (quit-windows-on diff-buffer t))))) (defun diff-hl-revert-hunk () "Revert the diff hunk with changes at or above the point." (interactive) (with-current-buffer (or (buffer-base-buffer) (current-buffer)) (diff-hl-revert-hunk-1))) (defun diff-hl-hunk-overlay-at (pos) (cl-loop for o in (overlays-in pos (1+ pos)) when (overlay-get o 'diff-hl-hunk) return o)) (defun diff-hl-next-hunk (&optional backward) "Go to the beginning of the next hunk in the current buffer." (interactive) (let ((pos (save-excursion (catch 'found (while (not (if backward (bobp) (eobp))) (goto-char (if backward (previous-overlay-change (point)) (next-overlay-change (point)))) (let ((o (diff-hl-hunk-overlay-at (point)))) (when (and o (= (overlay-start o) (point))) (throw 'found (overlay-start o))))))))) (if pos (goto-char pos) (user-error "No further hunks found")))) (defun diff-hl-previous-hunk () "Go to the beginning of the previous hunk in the current buffer." (interactive) (diff-hl-next-hunk t)) (defun diff-hl-mark-hunk () (interactive) (let ((hunk (diff-hl-hunk-overlay-at (point)))) (unless hunk (user-error "No hunk at point")) (goto-char (overlay-start hunk)) (push-mark (overlay-end hunk) nil t))) (defvar diff-hl-command-map (let ((map (make-sparse-keymap))) (define-key map "n" 'diff-hl-revert-hunk) (define-key map "[" 'diff-hl-previous-hunk) (define-key map "]" 'diff-hl-next-hunk) map)) (fset 'diff-hl-command-map diff-hl-command-map) (defvar diff-hl-lighter "" "Mode line lighter for Diff Hl. The value of this variable is a mode line template as in `mode-line-format'.") ;;;###autoload (define-minor-mode diff-hl-mode "Toggle VC diff highlighting." :lighter diff-hl-lighter :keymap `(([remap vc-diff] . diff-hl-diff-goto-hunk) (,diff-hl-command-prefix . diff-hl-command-map)) (if diff-hl-mode (progn (diff-hl-maybe-define-bitmaps) (add-hook 'after-save-hook 'diff-hl-update nil t) (add-hook 'after-change-functions 'diff-hl-edit nil t) (add-hook (if vc-mode ;; Defer until the end of this hook, so that its ;; elements can modify the update behavior. 'diff-hl-mode-on-hook ;; If we're only opening the file now, ;; `vc-find-file-hook' likely hasn't run yet, so ;; let's wait until the state information is ;; saved, in order not to fetch it twice. 'find-file-hook) 'diff-hl-update-once t t) (add-hook 'vc-checkin-hook 'diff-hl-update nil t) (add-hook 'after-revert-hook 'diff-hl-after-revert nil t) ;; Magit does call `auto-revert-handler', but it usually ;; doesn't do much, because `buffer-stale--default-function' ;; doesn't care about changed VC state. ;; https://github.com/magit/magit/issues/603 (add-hook 'magit-revert-buffer-hook 'diff-hl-update nil t) ;; Magit versions 2.0-2.3 don't do the above and call this ;; instead, but only when they don't call `revert-buffer': (add-hook 'magit-not-reverted-hook 'diff-hl-update nil t) (add-hook 'text-scale-mode-hook 'diff-hl-maybe-redefine-bitmaps nil t)) (remove-hook 'after-save-hook 'diff-hl-update t) (remove-hook 'after-change-functions 'diff-hl-edit t) (remove-hook 'find-file-hook 'diff-hl-update t) (remove-hook 'vc-checkin-hook 'diff-hl-update t) (remove-hook 'after-revert-hook 'diff-hl-update t) (remove-hook 'magit-revert-buffer-hook 'diff-hl-update t) (remove-hook 'magit-not-reverted-hook 'diff-hl-update t) (remove-hook 'text-scale-mode-hook 'diff-hl-maybe-redefine-bitmaps t) (diff-hl-remove-overlays))) (when (require 'smartrep nil t) (let (smart-keys) (cl-labels ((scan (map) (map-keymap (lambda (event binding) (if (consp binding) (scan binding) (when (characterp event) (push (cons (string event) binding) smart-keys)))) map))) (scan diff-hl-command-map) (smartrep-define-key diff-hl-mode-map diff-hl-command-prefix smart-keys)))) (declare-function magit-toplevel "magit-git") (declare-function magit-unstaged-files "magit-git") (defvar diff-hl--magit-unstaged-files nil) (defun diff-hl-magit-pre-refresh () (setq diff-hl--magit-unstaged-files (magit-unstaged-files t))) (defun diff-hl-magit-post-refresh () (let* ((topdir (magit-toplevel)) (modified-files (mapcar (lambda (file) (expand-file-name file topdir)) (delete-consecutive-dups (sort (nconc (magit-unstaged-files t) diff-hl--magit-unstaged-files) #'string<)))) (unmodified-states '(up-to-date ignored unregistered))) (setq diff-hl--magit-unstaged-files nil) (dolist (buf (buffer-list)) (when (and (buffer-local-value 'diff-hl-mode buf) (not (buffer-modified-p buf)) ;; Solve the "cloned indirect buffer" problem ;; (diff-hl-mode could be non-nil there, even if ;; buffer-file-name is nil): (buffer-file-name buf) (file-in-directory-p (buffer-file-name buf) topdir) (file-exists-p (buffer-file-name buf))) (with-current-buffer buf (let* ((file buffer-file-name) (backend (vc-backend file))) (when backend (cond ((member file modified-files) (when (memq (vc-state file) unmodified-states) (vc-state-refresh file backend)) (diff-hl-update)) ((not (memq (vc-state file backend) unmodified-states)) (vc-state-refresh file backend) (diff-hl-update)))))))))) (defun diff-hl-dir-update () (dolist (pair (if (vc-dir-marked-files) (vc-dir-marked-only-files-and-states) (vc-dir-child-files-and-states))) (when (eq 'up-to-date (cdr pair)) (let ((buffer (find-buffer-visiting (car pair)))) (when buffer (with-current-buffer buffer (diff-hl-remove-overlays))))))) (define-minor-mode diff-hl-dir-mode "Toggle `diff-hl-mode' integration in a `vc-dir-mode' buffer." :lighter "" (if diff-hl-dir-mode (add-hook 'vc-checkin-hook 'diff-hl-dir-update t t) (remove-hook 'vc-checkin-hook 'diff-hl-dir-update t))) ;;;###autoload (defun turn-on-diff-hl-mode () "Turn on `diff-hl-mode' or `diff-hl-dir-mode' in a buffer if appropriate." (cond (buffer-file-name (diff-hl-mode 1)) ((eq major-mode 'vc-dir-mode) (diff-hl-dir-mode 1)))) ;;;###autoload (defun diff-hl--global-turn-on () "Call `turn-on-diff-hl-mode' if the current major mode is applicable." (when (cond ((eq diff-hl-global-modes t) t) ((eq (car-safe diff-hl-global-modes) 'not) (not (memq major-mode (cdr diff-hl-global-modes)))) (t (memq major-mode diff-hl-global-modes))) (turn-on-diff-hl-mode))) ;;;###autoload (define-globalized-minor-mode global-diff-hl-mode diff-hl-mode diff-hl--global-turn-on :after-hook (diff-hl-global-mode-change)) (defun diff-hl-global-mode-change () (unless global-diff-hl-mode (dolist (buf (buffer-list)) (with-current-buffer buf (when diff-hl-dir-mode (diff-hl-dir-mode -1)))))) (provide 'diff-hl) ;;; diff-hl.el ends here diff-hl-1.8.8/test/0000755000175000017500000000000013767516414013670 5ustar dogslegdogslegdiff-hl-1.8.8/test/diff-hl-test.el0000644000175000017500000000761613767516414016512 0ustar dogslegdogsleg;;; diff-hl-test.el --- tests for diff-hl -*- lexical-binding: t -*- ;; Copyright (C) 2020 Free Software Foundation, Inc. ;; Author: Nathan Moreau ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . ;;; Commentary: ;;; Code: (require 'diff-hl) (require 'subr-x) ;; string-trim (require 'ert) (defvar diff-hl-test-source-file (expand-file-name (concat (file-name-directory (locate-library "diff-hl")) "test/empty"))) (defvar diff-hl-test-initial-content nil) (defmacro diff-hl-test-in-source (&rest body) `(save-window-excursion (find-file diff-hl-test-source-file) ,@body)) (put 'diff-hl-test-in-source 'lisp-indent-function 0) (defun diff-hl-test-init () (diff-hl-test-in-source (setq diff-hl-test-initial-content (buffer-string))) t) (defun diff-hl-test-teardown () (diff-hl-test-in-source (erase-buffer) (insert diff-hl-test-initial-content) (save-buffer))) (defun diff-hl-test-compute-diff-lines () (diff-hl-test-in-source (save-buffer) (let ((vc-diff-switches "-w")) (diff-hl-diff-goto-hunk)) (switch-to-buffer "*vc-diff*") (let ((lines nil) (previous-line (point-min))) (goto-char (point-min)) (while (< (point) (point-max)) (forward-line 1) (push (string-trim (buffer-substring-no-properties previous-line (point))) lines) (setq previous-line (point))) (delq nil (nreverse lines))))) (defmacro diff-hl-deftest (name &rest body) `(ert-deftest ,name () (diff-hl-test-init) (unwind-protect (progn ,@body) (diff-hl-test-teardown)))) (put 'diff-hl-deftest 'lisp-indent-function 'defun) (diff-hl-deftest diff-hl-insert () (diff-hl-test-in-source (goto-char (point-max)) (insert "added\n") (should (equal "+added" (car (last (diff-hl-test-compute-diff-lines))))))) (diff-hl-deftest diff-hl-remove () (diff-hl-test-in-source (delete-region (point-min) (point-max)) (should (equal "-last line" (car (last (diff-hl-test-compute-diff-lines))))))) (diff-hl-deftest diff-hl-indirect-buffer-insert () (diff-hl-test-in-source (narrow-to-region (point-min) (point-max)) (goto-char (point-max)) (insert "added\n") (should (equal "+added" (car (last (diff-hl-test-compute-diff-lines))))))) (diff-hl-deftest diff-hl-indirect-buffer-remove () (diff-hl-test-in-source (narrow-to-region (point-min) (point-max)) (goto-char (point-min)) (delete-region (point) (point-max)) (should (equal "-last line" (car (last (diff-hl-test-compute-diff-lines))))))) (diff-hl-deftest diff-hl-indirect-buffer-move () (diff-hl-test-in-source (narrow-to-region (point-min) (point-max)) (goto-char (point-min)) (kill-whole-line 3) (goto-char (point-max)) (insert "added\n") (save-buffer) (diff-hl-mode 1) (diff-hl-previous-hunk) (should (looking-at "added")) (diff-hl-previous-hunk) (should (looking-at "function2")) (should-error (diff-hl-previous-hunk) :type 'user-error) (diff-hl-next-hunk) (should (looking-at "added")) (should-error (diff-hl-next-hunk) :type 'user-error))) (defun diff-hl-run-tests () (ert-run-tests-batch)) (provide 'diff-hl-test) ;;; diff-hl-test.el ends here diff-hl-1.8.8/test/empty0000644000175000017500000000010013767516414014740 0ustar dogslegdogslegfunction1 () { } function2 () { } function3 () { } last line diff-hl-1.8.8/diff-hl-dired.el0000644000175000017500000001573613767516414015645 0ustar dogslegdogsleg;;; diff-hl-dired.el --- Highlight changed files in Dired -*- lexical-binding: t -*- ;; Copyright (C) 2012-2017 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . ;;; Commentary: ;; To enable in all Dired buffers, add this to your init file: ;; ;; (add-hook 'dired-mode-hook 'diff-hl-dired-mode) ;; ;; or ;; ;; (add-hook 'dired-mode-hook 'diff-hl-dired-mode-unless-remote) ;; ;; to do it only in local Dired buffers. ;;; Code: (require 'diff-hl) (require 'dired) (require 'vc-hooks) (defvar diff-hl-dired-process-buffer nil) (defgroup diff-hl-dired nil "VC diff highlighting on the side of a Dired window." :group 'diff-hl) (defface diff-hl-dired-insert '((default :inherit diff-hl-insert)) "Face used to highlight added files.") (defface diff-hl-dired-delete '((default :inherit diff-hl-delete)) "Face used to highlight directories with deleted files.") (defface diff-hl-dired-change '((default :inherit diff-hl-change)) "Face used to highlight changed files.") (defface diff-hl-dired-unknown '((default :inherit dired-ignored)) "Face used to highlight unregistered files.") (defface diff-hl-dired-ignored '((default :inherit dired-ignored)) "Face used to highlight unregistered files.") (defcustom diff-hl-dired-extra-indicators t "Non-nil to indicate ignored files." :type 'boolean) (defcustom diff-hl-dired-ignored-backends '(RCS) "VC backends to ignore. The directories registered to one of these backends won't have status indicators." :type `(repeat (choice ,@(mapcar (lambda (name) `(const :tag ,(symbol-name name) ,name)) vc-handled-backends)))) ;;;###autoload (define-minor-mode diff-hl-dired-mode "Toggle VC diff highlighting on the side of a Dired window." :lighter "" (if diff-hl-dired-mode (progn (diff-hl-maybe-define-bitmaps) (set (make-local-variable 'diff-hl-dired-process-buffer) nil) (add-hook 'dired-after-readin-hook 'diff-hl-dired-update nil t)) (remove-hook 'dired-after-readin-hook 'diff-hl-dired-update t) (diff-hl-dired-clear))) (defun diff-hl-dired-update () "Highlight the Dired buffer." (let ((backend (ignore-errors (vc-responsible-backend default-directory))) (def-dir default-directory) (buffer (current-buffer)) dirs-alist files-alist) (when (and backend (not (memq backend diff-hl-dired-ignored-backends))) (diff-hl-dired-clear) (if (buffer-live-p diff-hl-dired-process-buffer) (let ((proc (get-buffer-process diff-hl-dired-process-buffer))) (when proc (kill-process proc))) (setq diff-hl-dired-process-buffer (generate-new-buffer " *diff-hl-dired* tmp status"))) (with-current-buffer diff-hl-dired-process-buffer (setq default-directory (expand-file-name def-dir)) (erase-buffer) (diff-hl-dired-status-files backend def-dir (when diff-hl-dired-extra-indicators (cl-loop for file in (directory-files def-dir) unless (member file '("." ".." ".hg")) collect file)) (lambda (entries &optional more-to-come) (when (buffer-live-p buffer) (with-current-buffer buffer (dolist (entry entries) (cl-destructuring-bind (file state &rest r) entry ;; Work around http://debbugs.gnu.org/18605 (setq file (replace-regexp-in-string "\\` " "" file)) (let ((type (plist-get '(edited change added insert removed delete unregistered unknown ignored ignored) state))) (if (string-match "\\`\\([^/]+\\)/" file) (let* ((dir (match-string 1 file)) (value (cdr (assoc dir dirs-alist)))) (unless (eq value type) (cond ((eq state 'up-to-date)) ((null value) (push (cons dir type) dirs-alist)) ((not (eq type 'ignored)) (setcdr (assoc dir dirs-alist) 'change))))) (push (cons file type) files-alist))))) (unless more-to-come (diff-hl-dired-highlight-items (append dirs-alist files-alist)))) (unless more-to-come (kill-buffer diff-hl-dired-process-buffer)))) ))))) (defun diff-hl-dired-status-files (backend dir files update-function) "Using version control BACKEND, return list of (FILE STATE EXTRA) entries for DIR containing FILES. Call UPDATE-FUNCTION as entries are added." (if (version< "25" emacs-version) (vc-call-backend backend 'dir-status-files dir files update-function) (vc-call-backend backend 'dir-status-files dir files nil update-function))) (when (version< emacs-version "24.4.51.5") ;; Work around http://debbugs.gnu.org/19386 (defadvice vc-git-dir-status-goto-stage (around diff-hl-dired-skip-up-to-date (stage files update-function) activate) (when (eq stage 'ls-files-up-to-date) (setq stage 'diff-index)) ad-do-it)) (defun diff-hl-dired-highlight-items (alist) "Highlight ALIST containing (FILE . TYPE) elements." (dolist (pair alist) (let ((file (car pair)) (type (cdr pair))) (save-excursion (goto-char (point-min)) (when (and type (dired-goto-file-1 file (expand-file-name file) nil)) (let* ((diff-hl-fringe-bmp-function 'diff-hl-fringe-bmp-from-type) (diff-hl-fringe-face-function 'diff-hl-dired-face-from-type) (o (diff-hl-add-highlighting type 'single))) (overlay-put o 'modification-hooks '(diff-hl-overlay-modified)) )))))) (defun diff-hl-dired-face-from-type (type _pos) (intern (format "diff-hl-dired-%s" type))) (defalias 'diff-hl-dired-clear 'diff-hl-remove-overlays) ;;;###autoload (defun diff-hl-dired-mode-unless-remote () (unless (file-remote-p default-directory) (diff-hl-dired-mode))) (provide 'diff-hl-dired) ;;; diff-hl-dired.el ends here diff-hl-1.8.8/diff-hl-margin.el0000644000175000017500000001327713767516414016031 0ustar dogslegdogsleg;;; diff-hl-margin.el --- Highlight buffer changes on margins -*- lexical-binding: t -*- ;; Copyright (C) 2012-2017 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . ;;; Commentary: ;; This is a global mode, it modifies `diff-hl-mode' to use the margin ;; instead of the fringe. To toggle, type `M-x diff-hl-margin-mode'. ;; ;; Compared to the default behavior, this makes `diff-hl-mode' ;; indicators show up even when Emacs is running in a terminal. ;; ;; On the flip side, the indicators look simpler, and they are ;; incompatible with `linum-mode' or any other mode that uses the ;; margin. ;; ;; You might want to enable it conditionally in your init file ;; depending on whether Emacs is running in graphical mode: ;; ;; (unless (window-system) (diff-hl-margin-mode)) (require 'cl-lib) (require 'diff-hl) (require 'diff-hl-dired) (defvar diff-hl-margin-old-highlight-function nil) (defgroup diff-hl-margin nil "Highlight buffer changes on margin" :group 'diff-hl) (defface diff-hl-margin-insert '((default :inherit diff-hl-insert)) "Face used to highlight inserted lines on the margin.") (defface diff-hl-margin-delete '((default :inherit diff-hl-delete)) "Face used to highlight deleted lines on the margin.") (defface diff-hl-margin-change '((default :inherit diff-hl-change)) "Face used to highlight changed lines on the margin.") (defface diff-hl-margin-ignored '((default :inherit dired-ignored)) "Face used to highlight changed lines on the margin.") (defface diff-hl-margin-unknown '((default :inherit dired-ignored)) "Face used to highlight changed lines on the margin.") (defcustom diff-hl-margin-symbols-alist '((insert . "+") (delete . "-") (change . "!") (unknown . "?") (ignored . "i")) "Associative list from symbols to strings." :type '(alist :key-type symbol :value-type string :options (insert delete change unknown ignored)) :set (lambda (symbol value) (defvar diff-hl-margin-spec-cache) (set-default symbol value) (setq diff-hl-margin-spec-cache nil))) ;;;###autoload (define-minor-mode diff-hl-margin-mode "Toggle displaying `diff-hl-mode' highlights on the margin." :lighter "" :global t (if diff-hl-margin-mode (progn (add-hook 'diff-hl-mode-on-hook 'diff-hl-margin-minor-mode) (add-hook 'diff-hl-mode-off-hook 'diff-hl-margin-minor-mode-off) (add-hook 'diff-hl-dired-mode-on-hook 'diff-hl-margin-minor-mode) (add-hook 'diff-hl-dired-mode-off-hook 'diff-hl-margin-minor-mode-off)) (remove-hook 'diff-hl-mode-on-hook 'diff-hl-margin-minor-mode) (remove-hook 'diff-hl-mode-off-hook 'diff-hl-margin-minor-mode-off) (remove-hook 'diff-hl-dired-mode-on-hook 'diff-hl-margin-minor-mode) (remove-hook 'diff-hl-dired-mode-off-hook 'diff-hl-margin-minor-mode-off)) (dolist (buf (buffer-list)) (with-current-buffer buf (cond (diff-hl-mode (diff-hl-margin-minor-mode (if diff-hl-margin-mode 1 -1)) (diff-hl-update)) (diff-hl-dired-mode (diff-hl-margin-minor-mode (if diff-hl-margin-mode 1 -1)) (diff-hl-dired-update)))))) (define-minor-mode diff-hl-margin-minor-mode "Toggle displaying `diff-hl-mode' highlights on the margin locally. You probably shouldn't use this function directly." :lighter "" (let ((width-var (intern (format "%s-margin-width" diff-hl-side)))) (if diff-hl-margin-minor-mode (progn (set (make-local-variable 'diff-hl-margin-old-highlight-function) diff-hl-highlight-function) (set (make-local-variable 'diff-hl-highlight-function) 'diff-hl-highlight-on-margin) (set width-var 1)) (when diff-hl-margin-old-highlight-function (setq diff-hl-highlight-function diff-hl-margin-old-highlight-function diff-hl-margin-old-highlight-function nil)) (set width-var 0))) (dolist (win (get-buffer-window-list)) (set-window-buffer win (current-buffer)))) (define-obsolete-variable-alias 'diff-hl-margin-side 'diff-hl-side "1.7.1") (defun diff-hl-margin-minor-mode-off () (diff-hl-margin-minor-mode -1)) (defvar diff-hl-margin-spec-cache nil) (defun diff-hl-margin-spec-cache () (or diff-hl-margin-spec-cache (setq diff-hl-margin-spec-cache (diff-hl-margin-build-spec-cache)))) (defun diff-hl-margin-build-spec-cache () (cl-loop for (type . char) in diff-hl-margin-symbols-alist nconc (cl-loop for side in '(left right) collect (cons (cons type side) (propertize " " 'display `((margin ,(intern (format "%s-margin" side))) ,(propertize char 'face (intern (format "diff-hl-margin-%s" type))))))))) (defun diff-hl-highlight-on-margin (ovl type _shape) (let ((spec (cdr (assoc (cons type diff-hl-side) (diff-hl-margin-spec-cache))))) (overlay-put ovl 'before-string spec))) (provide 'diff-hl-margin) ;;; diff-hl-margin.el ends here diff-hl-1.8.8/.elpaignore0000644000175000017500000000002613767516414015035 0ustar dogslegdogslegREADME.md screenshot* diff-hl-1.8.8/Makefile0000644000175000017500000000062213767516414014351 0ustar dogslegdogslegEMACS ?= emacs SOURCES= SOURCES+=diff-hl-amend.el SOURCES+=diff-hl-dired.el SOURCES+=diff-hl-flydiff.el SOURCES+=diff-hl-margin.el ARTIFACTS=$(patsubst %.el, %.elc, $(SOURCES)) RM ?= rm -f all: test test: $(EMACS) -batch -L . -l test/diff-hl-test.el -f diff-hl-run-tests compile: $(EMACS) -batch -f batch-byte-compile $(SOURCES) clean: $(RM) $(ARTIFACTS) .PHONY: all test compile plain clean diff-hl-1.8.8/README.md0000644000175000017500000000720613767516414014175 0ustar dogslegdogslegAbout ===== `diff-hl-mode` highlights uncommitted changes on the left side of the window, allows you to jump between and revert them selectively. For the usage instructions and the list of commands, see the Commentary section inside the file. Tested with Git, Mercurial, Bazaar and SVN. May work with other VC backends, too. The package also contains auxiliary modes: * `diff-hl-dired-mode` provides similar functionality in Dired. * `diff-hl-margin-mode` changes the highlighting function to use the margin instead of the fringe. * `diff-hl-amend-mode` shifts the reference revision back by one. * `diff-hl-flydiff-mode` implements highlighting changes on the fly. It requires Emacs 24.4 or newer. Usage ===== Put this into your init script: ```lisp (global-diff-hl-mode) ``` Check out the Commentary section in each file for more detailed usage instructions. Screenshots ===== diff-hl-mode ----- Top window: a buffer in this minor mode, bottom window: the corresponding diff. ![screenie](screenshot.png) diff-hl-dired-mode ----- ![screenie](screenshot-dired.png) diff-hl-margin-mode ----- ![screenie](screenshot-margin.png) Requirements ===== Emacs 24.3+. Notes ===== * By default `diff-hl-mode` uses the corresponding VC diff command, so it's only accurate when the buffer is in saved state. Check out `diff-hl-flydiff-mode`, it aims to handle unsaved buffers as well. * To use an [alternative diff algorithm](http://stackoverflow.com/questions/32365271/whats-the-difference-between-git-diff-patience-and-git-diff-histogram) with Git, add a corresponding argument to `vc-git-diff-switches`, e.g. `(setq vc-git-diff-switches '("--histogram"))`. Using the `diff.algorithm` option doesn't work [because](http://article.gmane.org/gmane.comp.version-control.git/294622) `vc-git-diff` calls `git diff-index`. `diff-hl-flydiff-mode` does not support alternative algorithms, because it uses the external `diff` program. * We conflict with other modes when they put indicators on the fringe, such as [Flycheck](https://github.com/flycheck/flycheck). This is rarely a significant problem, since if you're using such a mode, you'd usually want to fix all errors and warnings before continuing, and then the conflicting indicators go away. * There's no fringe when Emacs is running in the console, but the navigation and revert commands still work. Consider turning `diff-hl-margin-mode` on, to show the indicators in the margin instead. * Frame-local and buffer-local values of `line-spacing` are not supported. * Fringe width up to 16 works best (because we can't define a bitmap with width above that number). * [emacs-git-gutter](https://github.com/syohex/emacs-git-gutter) shows indicators in the margin by default, allows you to customize how the indicators look more easily, and has a "stage hunk" command. Integration ===== If you're using some package other than `vc` to commit changes, it might not run `vc-checkin-hook` after commits. In that case, you'll need to either add `diff-hl-update` to the hook it does run, or advise some function that's called in the buffer after its state has changed. psvn ----- ```lisp (advice-add 'svn-status-update-modeline :after #'diff-hl-update) ``` Magit ----- If you're using a version before 2.4.0, it defines `magit-revert-buffer-hook` (or `magit-not-reverted-hook`), which we use. When using Magit 2.4 or newer, add this to your init script: ```lisp (add-hook 'magit-pre-refresh-hook 'diff-hl-magit-pre-refresh) (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh) ``` diff-hl-1.8.8/diff-hl-amend.el0000644000175000017500000000436013767516414015631 0ustar dogslegdogsleg;; Copyright (C) 2012-2013 Free Software Foundation, Inc. ;; Author: Dmitry Gutov ;; URL: https://github.com/dgutov/diff-hl ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . ;;; Commentary: ;; Toggle in the current buffer with `M-x diff-hl-amend-mode'. ;; Toggle in all buffers with `M-x global-diff-hl-amend-mode'. ;;; Code: (require 'diff-hl) ;;;###autoload (define-minor-mode diff-hl-amend-mode "Show changes against the second-last revision in `diff-hl-mode'. Most useful with backends that support rewriting local commits, and most importantly, 'amending' the most recent one. Currently only supports Git, Mercurial and Bazaar." :lighter " Amend" (if diff-hl-amend-mode (progn (diff-hl-amend-setup) (add-hook 'after-revert-hook 'diff-hl-amend-setup nil t)) (remove-hook 'after-revert-hook 'diff-hl-amend-setup t) (setq-local diff-hl-reference-revision nil)) (when diff-hl-mode (diff-hl-update))) (defun diff-hl-amend-setup () (let ((backend (vc-backend buffer-file-name))) (when backend (setq-local diff-hl-reference-revision (cl-case backend (Git "HEAD^") (Hg "-2") (Bzr "revno:-2")))))) ;;;###autoload (define-globalized-minor-mode global-diff-hl-amend-mode diff-hl-amend-mode turn-on-diff-hl-amend-mode :group 'diff-hl) (defun turn-on-diff-hl-amend-mode () "Turn on `diff-hl-amend-mode' in a buffer if appropriate." (and buffer-file-name (diff-hl-amend-mode 1))) (provide 'diff-hl-amend) ;;; diff-hl-amend.el ends here diff-hl-1.8.8/screenshot.png0000644000175000017500000016222013767516414015577 0ustar dogslegdogslegPNG  IHDRKSsBIT|dtEXtSoftwaregnome-screenshot> IDATxwxU% %@"ED@{]kaw-v\RTĥK*E  s@nB Dy9s<9mj0kXυB!ݩT|?$éjajI4j'ocPOB)8j~#1^6bNSYCP* ]z)kB!hzdRPUB!IX0c\wrpj0lB!hbY}/!B``]0 4SEUPM&&3Ruf~l#1ЃAtdRg-B߁` @ WY!0[mX6v6+x>O+E>/1Ibሎb`XߪD7"v]EVJྤhrر;K#H%0 dp*K0DPLn,B!a~*J,+%*6t6;@祬\8\nj(k8l !92IWIZX ">Z`|a6hѢI{݋2av`kA23]$!E .ᡃIq*6I22]őԛ.LĬ)JgGpeh̦FB!磬KzL&׃ Ɍl"Y*IڈqGFAoDzm-1(vp7,vV;Qu)E3Iij ߡDRd̛7vPUe˖t:%&;6FŻuϿ xL)c6j'4lȪR>y4SX?]ZY l#0i[L\^bBjD:U0*}/!B4=u.><.0 @ ϋu.lueG(z*$N|,kHNhE腹@Q3t ]CM%99WSjݬ9iG$ /o73DGGS^QXx=f͚AINNsP%Ռoěqy--]s8MvЃ1^T+E10 Z xzЏЩF49ܮ{vbC%Od@ PQHQ0(b:fn$ɤBq3,+*$cW~/]xvǃa3HmAƵ8nE0u-"c`}CIHbP*JHHHgbZmak$Yz5gt@Td$ @P3Z-l  PinCÛ9(S܎M4Sf3.Kyy>H'f?ś0}\*%o供&^Sm6Kq%t,Qч79츴Q=idztRV/[2kd_;9̿Bx4]$61 0{=VӄPp[8*?X}1 hth6jEB( E8,&bv]1YĨf<yX[zHF4".TT#HEE6 sN23׹0j3Ot6?\xIOsr[uwZHzfSyyV3$Ħo4K>❩PU%fìm;w>¬8կh,Ev !M)/'9#FkS(>"b؝ UcC>vT1uqZh;~T ӖiMRZ Չ#3Iiauk$+++!v(-)E5K}^/nw%ťRVV^uF-SÌ_= 33I4Nڷ?䰳tʪ\xu(d) ΰ3p<N}J,%ÿUs%VW~IVsfphWBCǞ5|McSE޲,B4n0[<B 9> 9Z7Yck+K0⽠k(BzB,W_|S>mRYeC(/*هY1<%amt:X,P94lEf;' u?:F(JΜB֮G@^t/ eකQ3.^_~=0Zl=l+hAnIX& OVRPL& >WI8fL`x!B@ׂh(y CJ`(o!qkQ=PtW SZH3gu?-^gfrbOL/b ;oɸX***0|8|Sv<>?1X,""#NJތ34 9%h5'}+," HՍ8 %JME@G<=B!8-)&?0ϣjL à$X@RccUi5U ~tBk"Qߵ%vүgZC-HrJ vVIٌjaGNntNXFrrs4Mb4̚}:93}0XL`U/˽|kG BJ8K' T O0NwG$~nsiAF6Caa!KJr@EQ[mI x:ϐ890 c̥lABt Eչ:w1ؘ_A@#6s RmmıB!D8\.ۃ(AEAU%r2Lf|^AG\5ǹPUm13)]D"09ˊY,/ )O3Wâ{x'fn̚<|vz??EQ1X,6Tshn^ hZdD LUÿq( ]9gb}.sW: !"lUk[NZƨ[`L$NṶIR]}Hص9)s8B!D+Lȸ:҂p4Q#K nњOA\y|Z{K.~%k{!JŞVrt} 7Qk )ˍ56Zķy OaCX)!}oe0gxʡ d ط{)c_ndۖuyS,~49[{Oܾo)Ja#7h!F-k~);XǪQRP=cɣi 0j)KaSh$+jɜY+i9~ڞ`xy֌S9r*þc~?B!869cvY׏+Q k- ^.w{:ެ\8? | ݃ח+ϓ?3w?̊fV9a~2 !&S,f8" 5nyo1dj;HŐ0|+ 2hǑ!}u-58Ȯ RـyWҩkYã^dTٛίTqmbct3Ģpz.ó5FMƨM xZdzaBy^-k}~A|ˇfF 7͠s{4+ͺ+96c}?B!8)HK9 C]APGgq1 `Mɽ>FXU1s縴MVwnΎګ<% 7THv-5ܔHdFU%661{oa.ŅǭW p$-{S3S<2ynOlQX,j+OjI+'2ʎbkCb͞F?ɝ{^!u2&EAJU0GG!'E݆n\ݸԣobu:de(aSIғ>udnCZyn`sGki>&#-9<4;WMh:J4iqEP z]^:dDrǤp{X<˛DU*4́zk{~ZeR+է B`fКB G2jH*2Y|?Zk`ª̦tjk_C0' b=,|gg8*k-ԛgpV̤p֖jP];96d|ZVh6CCz*Xa?3%BЯi?!BYc̰Qs| LaC]X9i&|B)&5⮻YYǾu놯d[peM;O#z/X4c"9MB!\&fxWĸWF!!rǀo3!BDre6Ǽq3D]ɜ+>B!8%=^9E+&kBHf=z6B!BT#;'B!DH")B!%GgXsg&xʺ>H !BC;GuڶJ*S+WX+ &WB!!M/eU mHND(\c/BqJ10f Sr72A(n.74jTyH.풂ۤFf&SuxP o8vޒ^ȴC]_B(~Ԛwarc9:3B!8Aɦ@9}] aUnn)[O;28us 6qL͏5_pAD-dʋim2+ bG-7SvNaNkwB>"hnj !I=α[4z7[A31kn^K_n\; dAɌ,>}d'7,ROa_[, J3Hc9kJ] IDATo!AYH.V6WH+ߣxغ>_i쌾k2gŔf\Ath ?ãr+LZ{yek㩵猱_[ aGE gRIJ JX=JzZ|f't~)*\%.IDAS#?e6?`O l}Tgpox;4* 1k_-) X0p [E=^|{yY6q8(*9אa&%:47?4Jv}_M&9"wU^n3\\@Bvg !!0IWƫ6ߗ=-xc~:F"Y 󕙌(hsWh0xo_ޝOG}z G7lpzHkۂe;o$ %&E\S6ow ̀[ż]8 %l޼]K^>uJE=-W=Ae7+>ŝxf`_\aNps+}-c$BG1wdP~' A6Jꎨt*-CGAGע/~=$A `N3;(#y4]zzRn;c,'sY4oDƣ7w&r*qPK]ص r)kzA՟Qt'-@mkkϿR0imY= ,^H^8fBp7-ck eì;7k fw[ ؽ7֍WV; v.dN 6үOg@H{`^ Ys/s'.z>VTs:=D Y^e (/,c+uH"Hڟ :Oܸo8f6u4swn8Έp(NRZ_Ew-A+m64`3X_ls5 Q&ˤً76f!+y^<<4>ܞ=#R xҢ5v [Ā淪ͼ53 5KĪ(gзm8vLegH!87"Wlo/ˇwt3dzⓝ,o+$ JaT2enK|f$ӑ,70}r hZgͤu|@,o+a9n*OQ*-1^T[Q"߇p#7sԎgѱuL+3ض/2_Zp+T&ܮ푙m!M2cGn4eZ+zxR#xB!m!Bqpdž^hU@V6v~TsCxB!DSqpj;+i'B!Ԓ-%B!^$B!J$=3Y5剜{+%qN>?!B4DR+%HN0DȊEܜ-N/; (DB!);+qgqf{N4,ڎct_^D\'{NTy??BLqB}|{6546wfoE;u*d jw!eٮaməp6?wBߍS_t`+o_}#_`A`Y6ߎFymd.k- ^.w{:ެ\8? W?>502 zS 0O"L88NR0+`=-zRԲ7_c[y |kK( #o0( w.{f%Y7}%`-wx> ,yc0e|0Āf9&!`l@FXU@PHv-P/F^igD7ܙIRZ'cRԈ$_5 q[G;aّ.阣;b_IDֆKŚ=r8 |q6(4́G{LZNR= wZg\Q6ÃΈfmkT8~Kl~[>vi|KhK(N!sjIS=/;7@@{dZ ]2z0dbɰ67`[KJ͆v8P Uѵjpw!v״cSm UY= !PoYBWyfR8kKôD-D;!'k#{NCJ\D& !ĝx٭:'KX;\R!;3lT*(- +]1IZ#hEfp*t+v00?ffm5_bI#*b y`%!I~{v |9ؗ]pTW#zrf1s+Ó(SN{{0 |B  3%J}Ւq9sG岳 U/nc[yUyí,Wkw3<" D<B!IsjIw_^k ^IQPE~63>GL1&ŚD\?t5?p,Db]~-~؏QڜA凋` kwc`] g,x09uaiTzl9  em_ӐvG~A._އұݘ; Ưn0{3 |8$'ZO]9ھڕ\;y-leD:HtUi̽b#,?wߍF8OB!eƤKLVVc^Ժ [ D:Vi+mӹ(8=XY5F~k?1 LV=;&8_$B&=n9L݂,~{.'Q|Kٵzz=aJQͦ_Kycoa(+Zz|šVi oB!hF"q+˧;ƠMm?;KtvX~,D9nK-Ug@zx3%BЯioڎF/Zk B!iiLmHw%u`w_c"'8j3ѬCV7oCD׋IR^[ekGOmk[O<d:$܏^`ώ=HÃ/g jo wd;&Lf\KB!j4ƣXuNK0]gCeL|U/O#_zDfС_[*&qz.ul+@W]/ aEPbOL%-*k"I!t̘q~̋ڴQ0ǽe *͜/ºĻH)[GITwZ?;zp\MB!)z[>盉MdDҚ7)#hq #O+)l,}$B$Av!.co@Ǜ5s'Rq@~;½~tN_dZ+ eKehi|B}B?t$qڞZ}D/o_`ǹt}i\b_|L%lzu㉗;pF6&|YJ@1~}&݊1al- 3JׅBqr4DһGgq1 `Mɽ>FXu bs>ڇb!Qňsy3Ł՞I&☵Oېj[ [4ޛFF E1+R5ޑNF FڹI$#Pot}-=ڰ(`Mͱ'=Ccӥw iB!NFҿY窗/ w\V,qx0v+roT&TMmk =V#|[֧2z-_y3J\j4"Bq5DҚB G2,5_Sǣ};ӑ:,>?,l LD!JBuw5(]eI 赟 hwMcY!MPH36*wn}ϖәh/a *Va̻fcqq7zO,Of_WjduӥƲ/v_iUTqzrX~6 S [耶/{֜{{&wmeGL1&ŚD\G=֖0%Yqu~0udGluib""ZwxTUd !!@@B :ҋt,kmqU]WQW]bEDPP[@ tHH#}2GH2I!<<9{9wfs{="M4&d߳Ndw Nl@pvLa$u|2ﶕ|i>_ o0lB3o##r4~sq0 0%cLf\۔ƩY9FcCMMhW'rMjZ\uX3),MQ ^6x098Vd[BtuHz46dhTTVEm IDAT_1)G@H}P7QO?Xbఓ6uZKf+@,y02r^AEDDD\utն7t>=̺u%lb3i#~鲾/'0b6^ NQp 7}:h0o4稫IJRBZaDDDD+,,|!xFx911+\8-""""Nfs9(-""""Q )""""Q )""""9wdv*eS9kTf$EDDD# $EDDD#?kiWIw aml$T^|~XXl+0F~ڑ0剭|t2 t+Z/enH:l =e=yxo$u]5%"_M3i̔rR_EA\m0ougDBrjqDDDDVH|̌`9z}vZuC.`5}l[]T*s^9R'Ȧzp"r7>qwU/)CʚvPzU.!d Mo{F=WUae2'Fv;?ㅳHwnsdי}ȟq^rBs7Op]fy$}8]~ :# i!^嬠`/;oXbΆiַKqɠogHzҖ? ֖ؕ:_?)995 #MkryD̰:qK-N ⅹaLDy+6iK{9x >kZ7/ΏLenp/ᥧf>i^z#m'siߒO3ؗ|F;_2xv~OZ{˜V;ˎw>?w-W7=Xelܟ]]O J۰) >%~8Lv*](ůOͥH. "v-nOcoNz }g`u {Q!箋ݜv|m,XNF&g1V|ʝepqny:8sit8eo|7'Аz>̫:>c'} wҝP)ƞ}OG>gq+a"*=>Jx?4~|c"{.P5s $`%Y7$Z)k`[6|㙤y\Wyd'V' Âhy [gƺQo4;)&߷"/q{ϣ&x*u2g;s*9ګ54(ˉSYH[7{k<݊/Nǒ]Gþ ׫H1fu9)gOg&oz]t_q緛ga}dܝO[*;4~vm0siC=@`Xf'ޚ`ȥVmc0 K PN݌a7ͰMn)v%_Gwb&nƱU?XZ9hq}`vYB hhKbI |Yܞ{|s C,>~>C>k7 8=~4LEoyV4w)μ={ Ìc`ʴL=>\ #u?4)O7g퀍^wKWB PXNrk~~ ſ pd۫<\ڶaa+]bn3=`@B|ٽ?t%`K]άߺr 1uG;:p#?<˻Y ] 4,D j֙WrΜu>揓W?~e榌ԣ-<6/Lۉ`c^&ѸHrruo}k>CxȽ<9U EڞHkxtoZʞKhP|[tea%ჷgϖ$"/Ǘ|ʹIu Ŝ= { '"zo{ 9͝OP/c@ ½1 mCo bʣލఒ}td3GhIy̚f*Є)!n*?OE/"j^¡1b]u#j#RD~ ڎM#x=orjCE Vda\ak{bh6?im"_C@`[|,*3vd-Èrb<>|nEb uo9;zEc(iU.' O{ gg1ꟽK c(2/o1Gz0U`8ZI:CIl>b%^t5߿n0Xb}isڽ#hV7t~ՙo=X뿁W8SEW@ؕ{^Z*U_axoWUC|*"[}icE/xX E/fSXWvIO&Wq;"tσ[ؒ$y/Iチ p$'}?W[]gnNYh[G9hEhߘ_rk_M>~ـ'`0f! :9g? {f}4o}m5"+o }/l/|e'A7ܙq.>ƞ<GeG.''c@4"jh.=QUwGy_<9# ]g șCA1#`.tph&Z]r >~`UTw'8mZiItu'!R,QYɡpc lN#R2ۜ]^eXښcX#|;^_u߿00Z5w썌 ˤ.nP{&\>?>L{30;O8'JnG^2M =yzxU]A d%t-s\9rդ1pG5?,v'ch{9~6á4;ع)0S&ENNtӚI!@@2f$Wjak|8^mוDX+^N-Խ `}Ragϋ?nzpWlXh\&5E5:O1c)9Nq3}qawuHY:CҢlk=ȼ悃vDCG7fu|_I.ssym;^`̈́>)i# Ӫ Hf ><琒@Ӱ7Jʚ%)OGvV&fb;Bd\{BHE35bF̟ԲE%Q߳2>⋝NlL.;G河})L-*Y3D65,^ y}{Q1Y*y{} u|`iu%w;S\TEu>*bn̠aSudb.1bX&f>`a+w4C#/߿nB$t6R%+7^kUWc}Yx龹Z>}FEIj{֜WπStϙE2jClYw1MwpI".قߥdXT%/=m-dՓyʨz?]g1{ڎj"{'Rf젠CgNe"x'Y׼> La f7+e!dԞcht n$ 5E3/cG9jw쩧΢d,\ϋA~&%s,"xf3w9SY6;~wRZ\3,AaIs\c8C«SYi1/kY~~y0̿=>D&Ȓs 7wNqQ>Ǐw~Y% W8?V``KU0*ַ*P[cҏ^aCxyY  Ǔ)Z!o)ĚA^Dy] t{Orכϕ=ݾ|f"NݏrmMis--(IڍkoϿ8ϭ$ߌ SC<6$cQX7yo4~4NW2n+dM|\k<:%Bhئ-]"N\iچ fNsfZ+jyS"mOaVǘ2QՃs.9fC=#)raj%3:VPg/ӬDȜV؃Tt[<:~h߼3mYv jz}zdj[DDDD]ޥ7$7n\ }%DDDDJsgIIIi+l٦C l(Y/G~X4e\OsRtt?Κfn)Yz;#KM QW6Tsyz5?LxTuUtb}OTw|DDVxyU~1j?fCi`ٰ`n;f[SӢ(KXI+qvyV:6cs2%G]._i|DDϡIS(#2qR/O`UYD^U!gA6 AT. h|DD@ҞU X ǝADwlIɘݳ?enbWY0lvE` ʄ}(8nr6?vz0؛c+>&1h;.EeryKWӓNbپ?+FAĝ5$f4ҹڢ$f,%'(n0]X5.coΩEIjcFB@3E( @ٲN¶n m5|M\pZI36l'%w=hnr9_3tqdR~(%vL>g3rdFp󕧧~M.k=Mcga\}{ y,<ҁ KRy5emqMj 5P@ʺ`+MN w#M4G9ry-Όϗwصi;3fo$pfme s oYl$vb/L.U#m /WOYD! vvN\r½s,~\҈l;'[_S9' $mlf%nT/ZoƵ#lu=:_h/s>e&eje^AKrCCzi4^ ]:d i߇, IDATÚCFz0ɴ%\floA>_d]`,o ]ҿ퇱mwzE1`XwZam:`u"mΌpwa7!W/jB>q4Һgg}cDs25>s½@ҞO՟:1{Ғ+Y!m"sذ6F=[lf d#Nvى5-6QB6v2)Nd-ӁFU9vn]e b?@;X~}Op|DDnH- IϷSIO}lو⍫m>yN_Bw`*FLF'vr"[*4x5+*Jbߚӗ+>ʖ]F^VnsS~^˷ڏ!s5>f|DDniՐv͋ؼbiE}-)ŮY*#s]qݷ1qL/-fovePgq 9Ym؝N_IvR}>( S&?BٓQL^N3n#,M_ƑrnmZ)1n9H͉- /NĻ]{J5>t|DDpcڛ|b-a$\DCۺՔ޽kDwFx3h ӐR~.vb &h\m`g@4}[Ci2nmb<Ȉճ+˜c4IennKgÂu8Mmy:|KHgEr( aH&;xבǞ~dC@T FnrOZ7s sP}ӻu(Ӟiȯ_2c?c('HwU.""RHB}ИZgv *'OxlyZ}_A!7b(馐} 89dgo ÜL[,7IUT%odWW1tb:,ZnMnmy5,nbvb&;;9b'r{Gٻ9GȰb;מ@݋YݑbgW"""F="`2ct:pɰTA`%-?}gyZB5SY/A77uB Qqq7dח;HFaX-|18rٷ;dtbMKdŲ8h(P#& nq}sr`Yewbb_V Ư8q]嶴_OM\m4cQd"v8rb3`6(w1{7Ąͺt&$2l/ytOΌ~9+ums!vb} FL4 nDKKyH;[~廉٦UUq0َ~vZtJȧ;Ȱ'Șʪyk1 uJ,Jbߚ̒٪YQO!>y1喻~q2*lN\Pc%9Hd2{(jاimS0Mr9QL)⌃4dbE3y$gXp:8 f ֱ?'}byzm6UAus{>k^H+r`/LgkI9q펩!8 8mî|=;˳ޟGpѱ%,ؖ䌳 b+ā5k//\M'/s{Go%ӯFi%n+tRuuJ뻺n[lGX6=ޛ#*ھs'8rI/WŰyضMr(g% C\U,1P.bmABcJU)6 $,[6{V#Y{"fz'Ofw!Ř;b\@VZ RDDΝě|b-a$\Dw4n$WxfX>67AZҾGN[&h䅁&ىd}n|hֽ+G?p؄w@; c\HLe ~Y§oeS&qݍf&EV>EЩ{oڧo-YW5]?6.8>-1>zoLE]+Q`7cWa0Ǐ$ώWHs: KFX ghKyX*_4ƘͫvzH=c7ssИ .TPPPG׷sgs"""""""""""". u\0|} ].IIɳ8(< gy ꋈu]\luU78~O Us˓'o'_#ޥ_5{kx"""rA0g$ `4E*Fo|-{S#k~yLt7]nL*"""RS.=Y IO;;^iۃ*ơծ_K;R93""""yH:i]mpHTet>s/ KK.ݬdO`ͮYGMMOFqmcNrti.[?v&uIb;n+?\ϯW+~۫gJ*m̜6UpD\t.]+?iגZLt;֫iB΋Զp ff˱ b;voּo-$댫YX._őgLGŊ, F9u63Dw}o6cjѓ".ӷ&n$ ڍl?ySēSYu){ҩK"OΚfʣBSl-{gYm 3yο)}z;SW0)rKL<̓?s:X-/L5u)׳p$҉;~= &?Lb~&~Hᦩ3* GWk9Yfa>OqdJDӹlHĊp/] wv P8W؇ߪ`=/z:D9%,L=fU]DDD΃pDǸ&!Sv6̦_;C;;V6.ؘAL_3H$qO ia;QniЁ-›AWR:*aޑXz\hYy39PBJ G ~Ko?:@ݱFDDDcMVZxlB6RWf/$ JHZwaCx7咶A(}6n0G3յ;0f$EDDD)((G՟PX""""#_ʓ1~wB!>dUGOb8X8w7>d`ީOopt'&O,>Wy{RBO_Z9@B TnD? R󏝚1sde*nL'6WuB6YNc@#VnU"rҖٿb[~O\h^ԑw*<)3ϧ)t`nHt|gBMΪUǔk_-vCDYէ1^;1Z7Vpsn5u$&fp ghiCg4Mdz9۹m@?G:)O|kό>^'`̨42b¥7 }Rz㳫f"}q/~e/LC#c-q?X] :Ӡdt͑ ϒvSVqFQmս {sgG؝I( ;?烏'-8md\}z;SZs ]nfnTi"_?$ x8(.v{^&M÷i_F]>_NSDn ("f!/"l'CRvrwX ط|!'Jbno$}y*]LS9-s㹿}o'ҽmb|DDDD^8e%ȻcຼN?{_?puGNH""Tb*ZT/uV[ZZE[TlEըZc"Cvr "ɽIn}?<sr~cFTL9y:<*>"EϵHٞk:B!º|>08Dž0|D}ڇ1^χlyy1d&#I̟⹔N5zxa鹼u._#ې}_EB!q&+eH*)B.RWI,O43u{Y^"?=´/zNE'i-oqH< ~}9Tt :6>EA]G6|vC|6Q)k[A! .Rl#NO)t1z?U歵~7NөXU[L+EmQQ#B!~>ȥŘ*P}IV3xt >^Ecb®%1v0,B!}{9>۪?]ْJ_B!*kF$k<8e1TB!D1XHlYa;=GC+Br`q@!BqDR!B$B!DDRwp)t\wf1ϩ64[Zl>EC0{#ThueXZ{ewZB2r%jg !?.wj5B}_if-F,Q.!o4D<"wiLG_茜u'x{8_ΓԚ]^]?䀅l"c45JfϛIJA*. >;!Wl IDATcqNSyoƟF>[m*8.cyeU7۪n+!XM׻)wqhJ%08,v\Lzhdȼ}${Ek !=K$jė9ţؕsw3>{آ}_%v3gjP;RʇufeT JL cY27z+ʳ!j5_;ËOpǤWٛ _uNScZ]IϳX-n|$O 9?86pAL9\|t? tDЭ+ĠDͥ{:,Bʞwa|'~/IF5s֗HW(5%kޤ!^ǡž ۵1/1G&s4vdD2waE5ڍ ĜO+YZ>}ŵN0t{'ٹ'mcVX0p6ws{ħ!;GKB ^YΛoW{QT0k*>I91 hl(sW<Y1~'3O:wS٘aa6ӳ~Nr4~/)>oׂ#)1(STBfL䏔= i(F\6CDĈO&j)Lv0pc؍n>2'V~Oi~]?׼ޱP9r|VNj:fԏy/j{yx-\7ʫ=/4ɋKQ&]UF4Nȃ_<"\0WqoDwj h֜sc`ƾj+^\!73IK !=ʶ#Ƌ|klŽ'1n^1qyst,hs}:f͈f8P{)fu_8U4b+ܴ7,3&7{: BX2- ʛGmbέ҂^|~hk3|Er$ P{~t3;g{cex6S'ts zO!7s< 91jY۽aoE]5hg,ϴΗ$[jAMrk&yD3:~ھN-2|Cm~%[WUx+L07:r ?YqNJ[ᓷ< eз2޽S{~g\[?4D;q(ʄϔA΅hpN$fCJ >y#SbMLQ_z~[_NM<{>2gqCMN_!*yR1y~n͑\1 p 'yW')Ӫ2GQJ2RKγi\lN4ۃ@ TGML3aL?TNsx`򂥼]+y>FyxΝCh-#6qU`;A1Zs;5 X92MqCm5?g))΁ڈ12z]^ǘw#?޹CLXgXrt ̢qS:R\٘z4xhE3-&L޺ b\qi[/gyyJv Yz/'_7%St^U>7ѨfC>rD4&7p'' ^m$ÐlV{kuv3T瑧[s|y0Cnep2Fa8}kXWW#~~S):9,H5R8x;16$#)! 8aq8sGnwÀnŜF[i'Qk9<>-p^oGoX:'$]rnWB\YPWΌG3hTň_NǿIdm_]EtV3e&i)sz&C;|QBX$xz?sO2,C1/_JT ,p&ݜH[$if3)o#Fϰmj)~+/+yvr1ی.n'N!hxJw'/}G-wg/=| ;~ZNŇa ?Ol5[n4:609N&Yx s~x m~ICi~h_9h2ח޽Gff q(e9jw.R{g@?}\GoseWIzGv]|MUw+1~!~̊bRGÞ;qϘ' }){S>TN43֍wb*5\é4f\LsNM%6iy1^'ь~(DWƬ?_L֡x-cyWC=5&Fh;7՘?ͭC0 n2q ?:9wmwk/^ͽ8 >gFXq*wOd<5>4ckm(ܚ}GyBWy9VP5eLyY]Hzr;ϹXf>]7uxoj٣rFoΏn2my5GZ[8^C0꽲-kG֒铚JMX/c,w۸c9jpkz&u5 M߉x}BjJ~Ë\16#m3]:~XآfOﻱ{(j4y{?\ʫurSS6Ρh>sB!%E.>| 3+IzNOͼUD/_ah `&3 [IjދSГBJDdv?c]cQv_j|1\kвgZ:BApąxʃPK +lg}YQkx>`}U2/wc}!'?xԂ=[QY ~5Wh!$l;"iNئ-8gqVtd 3'^{Zv{\Pe]Σz`5.1A.:Κt3VUD৘tI2OW2bٱ=F7)Nsl?юnC!j~E6hLdţݙa=pQequj"7&xU'?[>ϛӈ9DVA8Ϳ Ĥ4jƩ?~e6?* ,WX!Dl;0c֣ߋnpѨPiqҪȡ)ӕW*g?thC9zLOmxB}I3X.3M|_3/n+~u8K] z*=>uuT#iꏳ9d:M Sh|S)f֤qu;.6EmEMqz*fK[j?kB!DU[ZwgtSl_fzc&IzxvZƓR50Gj<CiҢ>K8:hQ+f(㏳c{WF1'M$?!'EWqtي-_YB! T>C3x(< H fi"ıJZehR8bR|u%a;b-YLQ+mvQ#w$P7FV0-7q䴚>,S52|pXY~W'B=*4n ;lW w#^gƔO޼$q')'+ ԋq;F{k)RoJ>¦ 9AgW'&=f[Ê рIQ0$_d\>Z9%qtCYV'M¨SNds) u^#؜RA !B޵]Rjgǹd{bE/B/ňQuknӰ]B!U?fWeorUFٽ.p,M dqnoԖpM0!n\$r߄lc+LcGƾ<ɩ:]2z .xg ;ojUuj-ϻ]m|K9>U%XU=>egB!l̶ 6Or&{ Bk7 1D!EM`憼y0 ?T}IoeŞx%&'y.=l켩K,h6mTz$WYsl'Y~!B۳2n Ȟ=L &XJ)uO>xf9P9x餆S8"Ö`D{*|1㉸\hdؼIt v5Ps0eXYʛ[6V|[[~aQ#{s UwFr2ÊB!ʀCW43ɹ[;Ɲ_L~.yݗU8s ØkW28R5J+i|,&k/,h}j !BP\#4!WB 2cosv^m$Sw$mAY<ʷh|tU_҇'BQzڣ;ot(B!D!J$nxuB!20ri[!B$B!D$B!%"B!(I$B!DH")B!JDI!BQ"H !BDR!B$B!D$B!%"B!(I$B!DH")B!JDI!BQ"H !BDR!B$B!D$B!%"B!(I$B!DhˣH[@HCv(͙ٽtim耄BQQ%ُ'&~]UU._F1FF]?h(Fҫds~V؇sQiؖ0:`Ÿ)4; 8Y>-;!=wW/U.:`c.MAFqY܁wBQ.@\ )ͽV9sфFSAr,џA)?A3w@1r6̤݈>[XߔȾ5Iiԟq}qP2~0'20U xwe by`H9_*d.ĺ{^FeBk.T\IуcUDqM)NsO|CyW{i3ya.Ƥq§F(ڴ"VPyPgR|u) ˗~sg \1Z#+׽ kŰhjַT)2UhFDpV[^^nHuJN԰D҉p&f. YY5 y+] +'+Gq>1\kвgZ:Կ+lg}YQkx>pk4.oWHk=Auy2&ןV<2~Ks=d/I>?JbF ѥ]2)rQ"i"H$+Ю sx1Y`2vgExCaeǦSxI W4t;͵W ˭z}&8|#bN"e}@d lmvGP=7uUHP<xmZC0[7ҩGKj&>u8FX_kFMz4{ѭ)8kZsAG~Q5R ԡ 5%rho ''Ȗm IDATbg?th_֟$BTB6J$3Iҹ)㏳c{WF1)ƓR50Gj<CiҢ>՝5[K[Pж[t碪Mh涔}2pP% ?fOz@_I !I$xۧbSQEP4ek:5rb8FH] l؎3vt k'T4V,*me8Du[VgUs$mreqh"='P3*@:êr6Mɔz 5rkk҇GO,=߁eWujЦK?"wkG cM֭Q+ ^h!lq+8;Thݴ ǢI1Rׅ*~J3OsG!Ľ67kȉp,.`HD_p)+pOf`2HX)z2fLFCζٿe'W9Ʉ)6d\:T]PmCcPKB ٹ pȉOɼx7ܾGX^?'9rF3srܼiq1WOGR/vg1nK7ЙscIM {փjNI;AŐAjVYvI7^c۹VPXZSDb =(}JyB.ް踌yŊAi!f ^M0P ؜nDTMN9vڪhWUKϺҳvTugv&8Ӹe;$)ݭ6ao6%fbRiq yNkAeah|h̅3i9jn88UNT1y/V_MٍvXZ^ *'u: ڕXGڄa{RC8S1}&пhhܭ W7,aVW/[[>vhR30Xw ZDmД5nad6/揄Lj{A+_ʶBJvBKEUNTv 'WPm?F\!9907/K]RP0$`ێDjB!6_d+6zSm:հ!B!1-B!bͥmF$n:{l˯]b*{XO!6m![=G!BH")B!JDI!BQ"Hk1L'琾B!ĿHN2?*ߚՎT ".{ݾB!TH3iŻ+klӿ扒RrݾB!T*Ɉ,︇@aߝJ|sEǩm@=1}:0T^dYA @*b}cp?sP,֯rn+,5Bѓ*O~wt9[>^ܟ/92ds:"Cyd̔5훱._`EE͙J큽PEd̹7_!BTJcD2(Sgn#x<~k^;}l웣_&.oy,_m)m'Ù&g˨ߘ t)A,.'dAiy0K9Z@ܩ8{/R]Υ3utl-n[)Uz9:}1m빓v~J&L.X_N|guώ h Q0%N!B-S-F'|,i6·A&D?>ТC<#'@f/exAUU*=1apl*O%i iڍIC{[ xbϱ~BȿS;GKIqH!zYn?mYWnIKʸ@%ƴRar_!BN帴 `WN}ѩ($vG~)W}Dk}hT)EAm&ۨVu-%c%!'{{*%5ofbTym#{vIm9GwߟÎom !R[Ƅ':,5kh!(U u`'0Ʃ ;A<3y0Oڣn#_`x W}'#>8{e,g~t+>c~}q7Vy5T|(zӥyUZ'78\%Ϯ&oOޣ7V8o+BJEvBKE=[׮]W2ii>y;RR|B!쀀"o\Z9F$E9_ewbH3NJF!2I$M̉, |"rd0NB!imQ>xkFJvGB!D^H˨$h{[iv~f!ҶB!(I$B!DH")=H1p%Cy1#oT!DqH"Y2ve (xq@Ga>8==em_V k~VPOȚK'='WK~pv&iL{ȶj/V-/_$J$*6M7mBY&],vz`}p)Eୟ޴ʝo) b_Y%_Y1&ެn7ozϿ,UiDfپ/KߋߟA2lOaouH{KՠxC[&ߍGQxiol_ʿ_q?6gr->3:OL'*nƬc Vd|֨Yuf)6gWͩbB:VoIGdK@˷;'?3sxRli t"OJj_F2ql#K}~f}XBK%1qz?LWS߳8m};c,|ưc:kjpe 7h"7bPF#q)v.[yϬ|/}Qb;չn&>~ fY+=D&U僺@Z?ZoB|}]Db%jo?b !;'i[*8OX"K?;Z:lpBLq8ӟUqVDŽܹʬK:)Z2ƴQieƱn熼q@[틢?_1LA6A9Sc>Qz8V9޵qN`Gݞ- SNŽDߜ̘6xP5[S*:+xi4)BwyNmX>`S ԋ\+V:CDA-f;$YEӴc2/94r֘EVaŊBDrʺ#1eE g|JMTJҴDŞc>[6w+ֳs`.w0&q,*x^XYq+mo?˜VU {J눝b$'RH;sVOz!yagqi($Vᅡ ڲ,0GJAY9rBt)<"9a#^s_[:YT$"'UkvUgbHbwg rNևFϙPTf P[S ϩ豀S\s _ ثdW1S9<;$\kQQ5$3V0wK'{3陨]\q,iv[Hh\ tHD*֝b?cl6qE%׸S93)Fp<>%dg|4IO3O ޮ]cvEn}?*fWc/BJ1GR9/dqt< .WqGD*yo?L$++vX29"_ CsvSqKͤq?=/ e}יȸ?]s>;-HS2sؑcypQK<6ҳ 󞗵uIY^+<߃ޛS(-y63Lw`K}{agm?"/YKT }y~]&YJ,2M賳0( hַʶg6H)ۿB‰lARN۞BʱUqcwޫmwSa7k>!*E"iߖ1ai8I{D9K<8hxuCX> zD5q*pCU3Y4=z6g q-cCH<syV ?<>{N[fd=jd߂ΆHz ˸Yj@:4 ;CZi .kQ8_K=B︻W o 6Ӭ ?+q7;wYЎ޾4jԐnE'qяw֣8o\<Vl䤍s$?9w΁TED?ʹ{HU,:5«.غ .k+H|_o%>?Z{~B._t7ȕcc6g˶ڵKWΛ*ii>y;Rt5}Mעݿt]d;vioK[r,tOzgWiGQie|kJ4GRU~+4,ޣe3C~]~d: ݱ%`"<~E2`}sf3L\k5gjK+:!=I$Ҏ+Uta_3Rޅ{z֥gEGQYp jBC!J$ϖoi+oыK-~K|!Tsd`KS*u !BqDR!B$B!D$+e/o ,>W| Pd1a S cMTP h?}B!EW"Â"PRbdqj>u"0'J]8Be˒[ !~p}2IN+[.xs "FI<-U>܏;}\+Z9B!dfFqӽ4_gd Pn/jͫUeXٗy 3QWu_gkw{ؑ_K_+sǿɵ\) sA/.e(W:RD}b cٲ:U5,w^Wvwd;J`ڌ?=dPDRolk;z ?o=P>ι !6L$9<`=''y= Vmax^eѲrLuLm/M^}\/aF]>8Uh}@\Vn\FiȥrOBW1d&~ZtKE~ӐNpkG-?;.{;wrѪ} YOc'+Qf(~ u:o͂кV!lLgn~ȾYItX8 \Ш46:K} !$H=D6 D~כ㧺΁#ә' +1j8umN2˄ =Yc3}1W|4>~8grmk9ev^MƤh͈fq/ }2)tiWt}gj\R Bbָܯ6YxOIRܩޭ?;E͐ڄz!E]6ՠ՘1J*,i{ũB){.ĐY;QRì,7aRrpFm/- \fI;=opꜞ>wpIթRH)BU9HdL]’|rMr zQ?̀YGҾ}ޙ­| ̖љAɸA|f)d\tWHRX_l&t[pӍ =:Q=˲/BHjj1?Yu彰-uC|2o.s+FU`R =r-_!B)9{vh8B L lH~ފ2&JmNz?saҗ0қ. Mv!*+z Tk#:R *U"|N$[A9NgYve,o<1U hY%} A vń]Ȱ !?dt,#˚CosT81w}DG'6G 1A=$^O;gvvl_!II\_mo3&)[lt2;3sX}@܍vy<s8n$P.®ltJhаqX%]yB! J,I .!dRbsi~n%0Ԏ Lf>V ";+eL_ ;lBTfTgVРa62fWw Y901YշoP3 !⿩ݲey\q> g:ѮBZy'FlT`OҀ 4u&3MVaAC̜ L!)3܇YV3a ¼iOLtzφqǗ)€wQkY%\d/m:aMrW1 g:[(CƜcau jf›AKd|&[xm9|/j`N¨GLt3,B!D2ʣ+K/Ai4 ƒY7xө#86b262W)񡜽YQe~b唋i뿳ȣ*TwHfvjwEO]USϘN߭a[&Op`MPsg`L&E kj,mZ_D ch,!B! QD2aoeFo`|LrQZtѩEi̍X=ʭ1 pP0Rf[mt6ڙݱ?u,oVUum뮍e6`S}iA @b(G7&~7xZbbSmq2 * >aͰ}#B!9`I3{ &9HˡEikZHI9O:,ޣ܊lj2ڿ/<-PY6 H $گOKLl5-nV͘B!ȊCfxm+ȟGrvfӀħCԊ+1ѤH^=M(CB!BD3+{Pls|k}kHǢQ$!Bh̑p G$k9}*&QkwtN%%g%(.B;F}(aL>̲13X{9%e7JhoIsԖwB!O)Ӷ1@B,PvGvB!$gm!BQH )B!rDI!B#B!pfwmwС0"B!cǎ2-B!rHbIC??azDEM"<6U$%6dOm-.Z !DIT4؃֏s ۻr%TTP g al9Kȼ~Rҵ]>aJMhߴ .`7?'0#!|RE`ܱlXbHN/fڀfJDž-P:gM~wUtOyxvlͩ6ɏe$1Źe{~NO+ڏbّ{JURIՋ-d?)$^w..g%k>+J]rZE  ~EDGRyM|8~_X=v1Y.Cpz'guZFMe,2p8_-G3wE*DszF-z|vr PSdQGiҊ_K|`-tͣSΎi=HFwn] QL ٿ#mqtx4hQUS~={;~6BK#8F3:=5!0.M>uw<3XG[9~2>IyQCqp/x(TfU6㜝}t* +E*/ >G 4d1hФ)Zw vsWʬ?y{s0vts*Ml:}ʩ+ |{oJ\azo/(([6 Uzx95S5Z 7 x_8򀟗 }y"pagjtdUa*C8KYbDJ}մ:.Toڋ#w. aʩtRF%x9xq[,G"sIy]p5{ښǿ0V gu*vm,rnϜl;0a{]4QO:R|5lj}~$"1? Ӗq/$j(QVɘӌK\V[j:?QmTZߛ姣ϑVsd7 ݔ(1d "30ރz :gFP*=ôۿgHy•mүIeJw`߉z#L^x e,uCijS{/4=vNt55m3ɹYtuNfȝŬ8ehؾ qq1ZShZV~*|=^gA2b6\p-(mɽJq<ϝL)έc1n9\&(_7H{qϦkn~Cmsf0ln߻)jdY3' \ x?&!l'w/8bD 'C:/9HpBϬg-zZYϐYKǦ9ȏ?z\_5s__S+ 9;~Sr;/6eY@5n̂C׹{'uƤ k_M^gZ|5ٜhm6gX|g7m/'8<{׏r` (}}WImQxG/~;\v5IK^@~%.+F̨ #|ߕ [zS$hH1i\؂$y{/̑C_jM|as&x+-`T ;X[NEQa@wo6|tJ꺳>tyc<ӻ/ьo\Jp -of~@g3ť<}_~:::cZ[%~#xmf`k n۽Uc+OzOrrMU.HV>Dx'fdI"Ve{u>*s{U$[|5,weO6ĶZ>ܭ2M}[F[!h[+}Ɛ<%]b32ubNe+Ѡ*01ޑM gxq2BEt5~'@jTXg^TadB)2~SboQ"1sðU? S+Lɤ$Gr#,C]w~'7U-tp%9kƍ/Yw">IOz^Y/L!-t.zZ3ozΧQ^m745 u^$dU/բ&tgՑ4ƫ'[>SOm;fy)ZѤ\Φeo6/ O,stNghn>T]ZŪ$I|R};\ w]ARl~2P6A h7erT)?#j9ѢzD}JueOD un@d(߈GCk4Ibɴ,Up!4^OB/U/I]e1LpV m}?ݻαnfHjZ=M@2Tc0{~G;ˇsx8+B~tX[7DMo aG%s,E׾^4)c%w~4txUCM?0Kv)]-%/9.. G?‚i?x:٥(ohjR>o5㳥{k;-٦tZY )͆΢P& { R'S2] |bZʥ"8{+^/ &sy>mY~-~bGj^[֦v9$ZBLi Jj8狏xt8wḳDƪK6j~{1ʧ9F9AZU%FhY!+l՚Ws\2451,ޜ˷ĐM!7?eFȦǹBBQ CN bI۪Q(=~fT$ODd v/QZ5ęn#np+o5f?bq)AS3e { 'A RS:` 냡_,j2bDivMɶjH+}¯5> oBv^qUsWY-(.QIJ|/ZƔ㷲e lW'gvӶlcDnŁ]~ɦtС J#DK c^loR|Lc+K5 :9}S@ !" BǍ]aH\ +VGǎL]D_(DIfBKu>ɻG ;; URL: https://github.com/dgutov/diff-hl ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . ;;; Commentary: ;; This mode enables diffing on-the-fly (i.e. without saving the buffer first) ;; Toggle in all buffers with M-x diff-hl-flydiff-mode ;;; Code: (require 'diff-hl) (require 'diff) (unless (require 'nadvice nil t) (error "`diff-hl-flydiff-mode' requires Emacs 24.4 or newer")) (defgroup diff-hl-flydiff nil "Highlight changes on the fly" :group 'diff-hl) (defcustom diff-hl-flydiff-delay 0.3 "The idle delay in seconds before highlighting is updated." :type 'number) (defvar diff-hl-flydiff-modified-tick nil) (defvar diff-hl-flydiff-timer nil) (make-variable-buffer-local 'diff-hl-flydiff-modified-tick) (defun diff-hl-flydiff/vc-git--symbolic-ref (file) (or (vc-file-getprop file 'vc-git-symbolic-ref) (let* (process-file-side-effects (str (vc-git--run-command-string nil "symbolic-ref" "HEAD"))) (vc-file-setprop file 'vc-git-symbolic-ref (if str (if (string-match "^\\(refs/heads/\\)?\\(.+\\)$" str) (match-string 2 str) str)))))) (defun diff-hl-flydiff/vc-git-working-revision (_file) "Git-specific version of `vc-working-revision'." (let (process-file-side-effects) (vc-git--rev-parse "HEAD"))) (defun diff-hl-flydiff/vc-git-mode-line-string (file) "Return a string for `vc-mode-line' to put in the mode line for FILE." (let* ((rev (vc-working-revision file)) (disp-rev (or (diff-hl-flydiff/vc-git--symbolic-ref file) (substring rev 0 7))) (def-ml (vc-default-mode-line-string 'Git file)) (help-echo (get-text-property 0 'help-echo def-ml)) (face (get-text-property 0 'face def-ml))) (propertize (replace-regexp-in-string (concat rev "\\'") disp-rev def-ml t t) 'face face 'help-echo (concat help-echo "\nCurrent revision: " rev)))) ;; Polyfill concrete revisions for vc-git-working-revision in Emacs 24.4, 24.5 (when (version<= emacs-version "25.0") (with-eval-after-load 'vc-git (advice-add 'vc-git-working-revision :override #'diff-hl-flydiff/vc-git-working-revision) (advice-add 'vc-git-mode-line-string :override #'diff-hl-flydiff/vc-git-mode-line-string))) (defun diff-hl-flydiff/working-revision (file) "Like vc-working-revision, but always up-to-date" (vc-file-setprop file 'vc-working-revision (vc-call-backend (vc-backend file) 'working-revision file))) (defun diff-hl-flydiff-make-temp-file-name (file rev &optional manual) "Return a backup file name for REV or the current version of FILE. If MANUAL is non-nil it means that a name for backups created by the user should be returned." (let* ((auto-save-file-name-transforms `((".*" ,temporary-file-directory t)))) (expand-file-name (concat (make-auto-save-file-name) ".~" (subst-char-in-string ?/ ?_ rev) (unless manual ".") "~") temporary-file-directory))) (defun diff-hl-flydiff-create-revision (file revision) "Read REVISION of FILE into a buffer and return the buffer." (let ((automatic-backup (diff-hl-flydiff-make-temp-file-name file revision)) (filebuf (get-file-buffer file)) (filename (diff-hl-flydiff-make-temp-file-name file revision 'manual))) (unless (file-exists-p filename) (if (file-exists-p automatic-backup) (rename-file automatic-backup filename nil) (with-current-buffer filebuf (let ((coding-system-for-read 'no-conversion) (coding-system-for-write 'no-conversion)) (condition-case nil (with-temp-file filename (let ((outbuf (current-buffer))) ;; Change buffer to get local value of ;; vc-checkout-switches. (with-current-buffer filebuf (vc-call find-revision file revision outbuf)))) (error (when (file-exists-p filename) (delete-file filename)))))))) filename)) (defun diff-hl-flydiff-buffer-with-head (file &optional backend) "View the differences between BUFFER and its associated file. This requires the external program `diff' to be in your `exec-path'." (interactive) (vc-ensure-vc-buffer) (setq diff-hl-flydiff-modified-tick (buffer-chars-modified-tick)) (save-current-buffer (let* ((temporary-file-directory (if (file-directory-p "/dev/shm/") "/dev/shm/" temporary-file-directory)) (rev (diff-hl-flydiff-create-revision file (or diff-hl-reference-revision (diff-hl-flydiff/working-revision file))))) ;; FIXME: When against staging, do it differently! (diff-no-select rev (current-buffer) "-U 0 --strip-trailing-cr" 'noasync (get-buffer-create " *diff-hl-diff*"))))) (defun diff-hl-flydiff-update () (unless (or (not diff-hl-mode) (eq diff-hl-flydiff-modified-tick (buffer-chars-modified-tick)) (not buffer-file-name) (not (file-exists-p buffer-file-name)) (file-remote-p default-directory)) (diff-hl-update))) (defun diff-hl-flydiff/modified-p (state) (buffer-modified-p)) ;;;###autoload (define-minor-mode diff-hl-flydiff-mode "Perform highlighting on-the-fly. This is a global minor mode. It alters how `diff-hl-mode' works." :lighter "" :global t (if diff-hl-flydiff-mode (progn (advice-add 'diff-hl-overlay-modified :override #'ignore) (advice-add 'diff-hl-modified-p :before-until #'diff-hl-flydiff/modified-p) (advice-add 'diff-hl-changes-buffer :override #'diff-hl-flydiff-buffer-with-head) (setq diff-hl-flydiff-timer (run-with-idle-timer diff-hl-flydiff-delay t #'diff-hl-flydiff-update))) (advice-remove 'diff-hl-overlay-modified #'ignore) (advice-remove 'diff-hl-modified-p #'diff-hl-flydiff/modified-p) (advice-remove 'diff-hl-changes-buffer #'diff-hl-flydiff-buffer-with-head) (and diff-hl-flydiff-timer (cancel-timer diff-hl-flydiff-timer)))) (provide 'diff-hl-flydiff) diff-hl-1.8.8/LICENSE0000644000175000017500000010451313767516414013722 0ustar dogslegdogsleg GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . diff-hl-1.8.8/screenshot-margin.png0000644000175000017500000027416713767516414017070 0ustar dogslegdogslegPNG  IHDR HsBIT|dtEXtSoftwaregnome-screenshot> IDATxw|Tw[v{BUzG.bXPYPCDTDPkHҳz6nvC3眙{{Ӊn?nA"H$D"w3腇ml6c[18UUUgo`5#Nz qR ?,H}xxBD"9GpK2}AE>WUCP &>62tY塙,,~٬TFlb i$7kIdl6 qToPqBh =Y)P\el_D.Y_:6^Ah]}5E i$tAaUd7K:8əcY@Ezj9'z< DrZpnM֓J>!4M#%Qe !,696k%EfθlVU.p1-dLTWUb 8j9UDFǠ/ZU@ ]&BԿ7|m+xb>ʂx>D!ihh1%tS2 Br;kR\3zG?:A!l;Y0s1+wcXoNCfu9AieO tFRP3/rJG@O $hZE rwEX(bZwiSBMU`}i!Bi-[uc#', S#卢[* +RBP\'mU:Q_ [NTML >PN46M:#FSCBuP#`7@o3zEEU.Zj4`0Q@`/Ĉ>QBeYC{2b:&nPFF6#tŀ>T'FhPF47ngcOE.G@(@xS .u6׌5(M`.UG=!lW!&Jmݨ56L1Nç ]WȆ}6QDwNIC.n7`NmKޤDx UIv;1Ķe3Ph,LɊ|J. .+S4Ӻ?Wz5]B) ]Erl- oFs͠D ٔ[SDKiZLfՇi@X!:pOy5G۟qakos^bDhz)_!|wE<9*Lhxlm'T.~4%Y8潸aM@PmTl_7.7&b_\HA_?C 型[`ie/kɫT1Es/jnXzPT*t 5|ЄSV]7 >Lk/d`rd_BJ*=,9kK2ۗ횣1!: jb^?w5~ic{@xzn@mX_q %C"?GRhek4n'tZm|r#@hTM\޳#1&4 57NT˂4lUUrR'+Ug.Q1؛SޠgCc:[NXDdq՛:!4϶(P4jmտ0Ph<: *e\Өڿ)inAvo+cVfam1=i`H$$Aϑ@.ǠWP ASQXGm ZUe!lt`0pج'S"/GxMSsN9A+ˍ*6UbFAxe &٧띔_Ɂ+ZP<Uʐ{pE&1]K;&x2v뱙;1[;TJTo{SWs*E;\Ŭ "]t Ƶ^JoGl͝@AgЃ3?| .fcig΍7:%49và>0G \Lbܝ(ŘQ3(* eoS8XJXb޷rϕ]UqB^A[ eO=ƹ!%T0(gk~݆ !`[߰N=hBCs+KWn[(K罭CɠtlɈ_VU\~0 &=[cԵESq=E]/4^)jrE_2$ɩLVm Յ 4G5(:ϼbB8gw-[>=IP'3wo6KV8 /&PZG#BADxxgP]s˭@mǍ@8 غ_͹$GQ!5LE FÎEVhG~CW2:mW9)~m6q֩ S+gRu[i[ 5C2CP:1v,]5t$^h`f Ʃ_j]fG-vp*W/T&9(錸%h(vyD-ՃkדtVsҢBL(z#n{5"4Ϥy=.U(A!r4ͳjrz#j&j9MYcLo MTm GhFTLzf'4z+j͐Kj~p]4kQTBeOlfV -&w7VY hӿzp4wMw'lguEf5vz[Ϳ"$!\sJ6o˥8g=,tx }%4OO+FZ6ut?֓[+Gа٘ձhN[k~_2 DMxO9nMkC^2ضDrZtFRApl !h7Tٙ}?ߟԸ|˯\. Ѕas 4hV]MSQt:*vV쯽Bpig gu YVOh C($lcK39Tq-ZZ^ٙ82 )J 0WV-7S`/Ŧ W'*eҭd^ЎXUȢѶW/]t"Gvrvɶ"H)*[Ŧ% .#׳]ho^1\oŗJ6/VaQ=-U~Y-7ކDö:o*'HB(/>@99KGVİH|>}h˓4Sa "B¨,-%":˅Nlz= Jo`0ҳK4^FμwxacMtla`+?}$qOqAb)緹gyY$D 3 ~8rY<wv94φ82ba{Q1'>O ;hFJWL5.≱l-8&{qIw~>E4@4z`VCi;KY:y.v{JP:绷pZE @ @I  K3k~yFBh={>AHNt nt*bqD@h[%ڨ,]vF-/!VHQvChd 4Ga 3tt8p8C:.\.7av:s]=qF?Dmԃc Cw>k7t虊X}&#JH$I2Pm}~ T~sw}molC ۊ6M?Mnr;Ӝ)SnF5_*/ٛIݹ aQ?֝?KkN)+vzXvF[lPb.UuuA?~k|l<~ ƞ'jˁP=䴠IgKit"ߍˁj KEr+OL%,&cEvTLSehBNo8HFs;q;At|gN*'i+tZ!֕aݳFMC=p)I7`iA~3S'Ǔ3'J~.<^9v~&"H(?͙"޷jy[yVܪ@HhID%լn+~*VUba6[ ,"";"V<ф^h.߸ފ΄^5,4TՍ*|F?~?>a0Сr:533Dwc˚Mxd=\.[!4&DϜ =_(Bxd$Grjin?"[v|4PW'~?>Qq9LLE"i@$D"H$lj&ϑH$D"H(3D"H$/G2c m~_ejyK1.}5*uO H$:M ?zY:Ɔ~Dz^l{Ry;=ݐ+gp='>7Q? |+=(]!}"D}73G'=^&v~? =&֜^d1J[^ĝ}BB?65w6'agc.} Cr4YZ)WǵwHGЊѻqwV糢*UEU(QiDUR37wu q;JoV'o} *S NQP tyme?pcQ-OuߕxrWz3aw2a(AtGG/uȖCv{ $ĩ(YƔ p.fs/cxx@:qi&<se;yC`D" N@g~]V|qǹ IU们l[VUnw.f=Z_omKFJR.EX_,ɡDOFҜ;tpeZO.-dܞ3kJƯ6d> ;#g7epVޙN-;Y]Our^+Ɣ=nBκ]js>ܘ$@E+VTV.]mL(J_ Er`O^O f34b{%QO&kG.QŖѝ3=i3J {jAjC͛˿gs,v\xR8-l&DvLLV쐣W }/ A1yZX@y"k/5=U#W j{L'gi"$: G?D-߰tՅ[Uq9.TՍSbPj?=:g Ķa2"RtӬ;/^ÿGB:؊Q Q˖2N^U3mAM.P.F;uސ$Xqjgth``nͩ_׭lceŲ}F6Kshu4,D-8@+6,R cbsF~EC]!37PO6qǠ9 sdFjJh:`kN }˕wa!Zz&ȧ 2|4sgpqķ,zsy"lo\āwu~{We85dbQB;$D"+Έ@Y?ׅ"sг{A4œQ9 ]z.ȖR3)ageF%YW!\AFd-|1e6NQ?HWK._N.v}y(~S7`/gmOh pz=x)ͫ~z#\"MH:՟Iz%\S$yUdC3v'q3"^%7c7 sa}'m`O=tQ'v/I %HfG%!m[ޝ65lՆPt$6#6(q'HNжD"H$rh["H$Dr0de5~RjPE"H$Dr:!3D"H$#BD"H$#BD"H$#BD"H$#BD"H$#^ )țvS~U"H$ǐ?G`M'HNdFo(_Ť'FpqX9x>mt,~}0+ .7ge_^v bŐ'&Us,z*( Aj4s>4W-*}mnјߏ^__ӵ?W!^;>u5%vbg+~8,ǵ7;*(J:O W`tQpxxj1D+(}>b 8eXC-|D"iHMj*4kp*UC+y&>z~*?c{MQ.+".>㪹{-alU6HI =*.6 8^t~ĶQ=zuec1nWq ˎ?@.`ެu>;Cj0~.<~L-ʘ-or_YN9,.1YE>D1Kgd]Kd?(:#Y",~3E-j6M,yq0d?nlF;cA~Ţub{ߋ"bF.U-r&vQbUwDM*ZQ}'&(^2G8&JWN/B+])&4N| !bvqF>ZLBgD& qowыQ&{.6<)HB:6E7 {.WM$F- @prxQzK҂WI.u,:w:O(S4[FƎnB~/wW210m&uxE=/YW-x}ӫ[dgʆ dZtqNnտs?14H?&Vb].HF4|"z#\[[%G8kw )"SVpuE a T|ċt1lB+Dts!C ;#g7e?VޙN-;Y]Our^+Ɣ=nBκ]js>ܘ$@ Vl.Bܚ`κ9ǚ1m07Bc&dՆb{良&G?~na^V< &Xh3&fcۻ <{gtE9p ˪AJ۳rKTk@h}>sݸL&m̯>f==@J9vY<$kpJE󸫍 E !5†efoea} $\Y|5-F^H#Z46_hjq)W3Bsqh`ӯS|%DD{8 lk̻o&Ǿ/F ᑅmxl]%Fp mVH3_s"qd$͆z*:&LrX8.htNYf ,꣐o&>3Js([Ejڨ+Av4UlY9#6C ߳9KT;{uیΆH"YV]H!rhz ۑֶ% Cֳ9Q(7Y9wg 1=ދH s4$-==Gv``Hһ5OnhfguW.(K6=X:C󨣑`IN'UDnr]ɴie8e~4?h/h7|2݈;-Y&3PTB[ p'ec\, Ѫ3yF>NfCeeM+B}s޽$.3GQbp΄]8MhV S)a6qk\dWӸaH |DfdIl[IK#9ge:րlb6a_K nhܯ.퉗qU~dX= C^`ǹ} iq[Os7f/*0d݈VE7㙡$ktV` #w-;{5-w9&R4.̢kѓBoGUh*H$ǃ3[21$%~a r6dJmz1rrjM˖ 8fD"&2!!Nzi\8ۍbe |b7OP1Y<%Rm Vꌡpas%3&%RvfU^Tes!$O(xtx$#̜A!+ECIu>}k㯂|3|jg C܅|WQ55FI@2.؁Ҷ?AjA=`kJ..jM"s/wfݜ5u9g3O$-_e~e):n\@owӼ)#lDSFD"9s8#IbHk7g_:\LϙCG?OfF,tID$&l#[Jͤ!Nl*YLf]pQ0o \6(^;[DÁt_[h77g1uC }цĈ׃wۼר?…z^P-}]43F4޻0ؚ-8<Ԛ[@1_K|?q4txN0FYWH3;ȞӣƳ96l@.Q^H[>Og՞F5`tzw$%˘]L_?x ί}шm)\kz[pf#V^ggH䙹 ǘ'0}Gival04ǜU?>bUϳ^֬IYqØq%#,z_ˮl=9H/Drjpf@Tr3u9B ]hR-8J$dDcn(*h{/A3gShr<(t}/'Pq%Y̬;4ߙ&n؎?x{GL$lOߤo=䃩<*2Lgqꓸߙv} Jۛ9Cξ60':/v?2=ne`/Tܻ54q,=҉K{; 9Ry uc} 7| Xp#:veL>[gL=/30)sT{_5㞡W(hNmn(2ӈtHyЋQ_%)&>{/I %HfG%q$LCk\n\ʳ/Jim7GQQ:s#?Cz=p͙ΦH2hq.{~Aw6~ԞGpmf 랤 Drڢ,3Ev{͟ii4~LMMOMm|8l>ԥ/~0mh<:@8 XtOo{>, 9#(gLǮ9s)H$I㿥grzGrRl-b䔻\?#>c#,c~L R"H$F8u^#9Qb/pDЛ"9Ϯ'XM:ɸvL1[<匉%D"9n$'Z\?w9>Ο@pH$$( F'G R"H$& %D"H$G $%D"H$G $%D"H$G?_H$D"HHJ$D"H=2H$D"4` oV >NI"HTE҂~vL-)zN%:QnJ^AQ v{">qg1T:^ 7Dx},ex˗H$'o(_Ť'FpqX9x>mt?Z ޽qbLLT2+<Ҩ\]fyc'ژo1OfEA?WuRCB~y E((C\WPEDhhi><]*\S5{JǏ!̪"_"d 7ApҬUItWIŮ nj.`_v)[>f'2|*{}DC}Rp|x3ݶM|T7~ %&e\6WocCEL >"k:`FLK_e=pdc1n=xMPt>7ꓯgv;HQ?rPzM]b ⬖D<H%E.H$G?wMK^" ŏ[š6DX4w"f=qhⅶKDp݄.qXf3QtӧVTIĢ /׾ҕKo|':JWI/9\9u,$+FGWIlC&N\Gt`pל^VMfp z]WOBj]Q-&.¾I{ia}]"yFQM}tQƟ+Fdڊ7;p{ 8KQ\J(L=%TiU:t;'FNK">x>1⾱ŷ۫&ߋy;L9L|[ a].nQie#vQ#ņ2O>n Mn+g86E7 {.WM$F4wZtqN>XAo"b@Q\w" Z_CWW7okx")bCDzEG|yZq~_MhB!o a/vaC| IDAT㽣/H+f*N3On.+l\tt*]V-F+Z7;[ߞG.ֶd`;*R5UΒJtd\-O;2-'R nO晵؊?XW2bCPđɳ쇲T+LE?{_Ek9)'!BhBh!DE+EQ(>tECbEBN* $''i~Őp (\=3{vS<5y1! ̨WfY'FbV8:7BƬ/Hhݺ\T>cq6ֆ6S07hh}'ayE}}v+tJԙ,z8u5G*a`/J (LW鈿ZHnr*zx+~[F>Bjz҅Wy ]̔iil^h5M'+/A߱nYȮLqzƐzvo4mxzgXF!Y0~$"o+ %d.2]8`71WM@?66F֨Ly"ñ%LhŒ00L(*6`2ћiJ YZF}?&2g0nϥ˘Őяje\ iUp] rtY:|ݡ~ 1 Sn&쫬=`Lȧ[ h<^j懻S _y7l;-d69RA4"+BܽL85'-㽮qwAɌqcRR"y8x0#m䒹T7~TbC xmZxG]FN͉=hiE5WbH')2I_BjjHH#b66>pu}+otp1kNd[o=xѧ2|QgRѣƯ8Vٶ4̺?X G%`pc<8&^ *e.<{un/<3 kg'TOgX/Un8 ,j~ ŗV[!:\[}ƐvT< <[9n7*;GlTi!iʉ%&M kWIgQH$8G!@A$vEm'% G֣(vŘQҋl܃Ok-jF1LG'{V!47er OBq|6Om|M+jl5oFLVl@Ϸ(Ņܛ ENA:>G{uEsh 3[뾠6!>sQ/1r_ E30OG.%ΚEHpӡޘ/eq\]Xw~Emq~.!6͌Z%Yb({:"c[ϣnK8\xy?Ve#ϛbϢ}+{9hܫF6 )zUU~_kANPgYKٔZ־D"yy($NueunӈO 4kSD[/=̤CXgZeGs:?LJĉw"} %6# iun^>Apz 8(=nA6˶sQg@Ebb/W~0'2)9φclOߌ1LHkuϢ}+{9Tʠ0QS>dK|.ٱ[9q5iwő|FK#DRnuiF>br.f՜Yo_"<<Ɵɋ)~h=>4S.jgg֏@M“  "umM-9$3 @நfƫ!-Fg'4uwѧSZrʻ+xݨhSpFEButfQ&` _zCzVU?fWS/0|\혟5%NeA;l`iϳgQg ڏ !4hE-`<UwCEY<;s"7gPJJ*! RF(ۍg[įݭØMkUe==]n=ߤiYbFK_1&$C\p[nNM_g̣8ڝvs%d}D`r >Kr7G]@I\tߤ'Wf.^Qη[ae$.0D"H$CCQѝߎ-k"R8Nc$0H>3k~[ۧ%#$D"W""Ǔ,Z:fօ{ _E"H$? OcGPkD"H$BAu97iD"H$䟃 8YȵH$D" 9D"H$ !D"H$BH!)H$D"RHJ$D"H*D"H$ !D"E~F% * SF겂$#,ZAQ4x4auyPAm+em+mבaNy$ s/GvX Tdu[ͦ7p;Asb~lq Nm nqҏ\Me|j:EwaW]}hEwe,0K#5S>x;T𻠊ڷߦ ~L`|M@i 5NAP8,$2PR%I%w닏8-֍BrF_x6}./"aac&aLX(⸈?Uؘ YdB^sAŻ3O_ AV;0BQU=l'0F~怀?K?Ո&_ *QR]5_rI3bը"Fv5۾$8-LB?&`KnG#f7R aB819X8^[jcXA"#xm8oޤ9_D/+o(>Z HdJxq|bPA sY!~}"tB>1Yo}YbTP)  *F\|REe/a oRsco]og܅c_ ^b;/wTo+B^|\ԱiQd;W׍r bŜG}#ED˱?+ۙSŪVڬW$X#o#j(% 6FxwÞ D7+vEB/ƫţZO|Qlh` }0oq+tJԙ,z8u5G*a`/J (LW鈿ZHnr*zx+~[F>Bjz҅Wy֦S˦dzyZPzNK7eަ}džSe!2PKCem3َ~S{Qg(ޑ@]K"{~xx&*hqVq4F-e-a@.bɀdP\DQɈެNSZ*j4jrOOہ8e>ܖJNrkf%R\K7 $Tx8.KZ65cLh`o}C&&|?5ܱQnw$[aLȧ[ h<^j懻S "X9nvZqmsthD2/䗑yU<5&yUg]T+:O?%)D(k܅ͪꅒN~^z^ڸ;xРdF8͊1ܐr6l7T/y0sK8岦Cd' mZxG]FN͉=hiE5WbH')2I_BjjHH#b66>pu}+otp1kNd[o=8i縌;!.7OH!>z&=jiemKì%|T_2[ j=yweػ3_`1+4bSt}"MN-YKL@Eqzjp-+;lhmxtgG Uuq hYoSxk( gu!ZZ͏Jr+$=Qo*l;[NYGg<9^ޜg(C9R$3Z9n7*;GldYHZa_%7ߩ!85M-yO`ʉ%&M jWIg݌:xf*~}%omɿCHVmp 'hYߢcfDJ/vqGCB|=c.@хeo=;,Z[ܿT=g2a,\J5bgY 8ztز8..Pj,Mh;E8?dgmJ(a((%C.] Xo}WвgǾLϒ}ZAps"(Ez,T,Z{5&!EgY=ШPØĊnI?bsA=+wWuXMZ [r믠$BHTZFX+6AِN&>A"L8TUp[v4s|Hx' \l3Ʊo^'Ehn :cK9.ғviظl;ut鱜\j/&r Xq"l8̑X`f͘^z^{d]}CV@jؖ< DSKD ;`[ {$b9rcC5KQoas9YtwxʰS[s+Ӥp ';ڒJFmB_RɛY*2TY;Y-bJW{wѤ^ xF8G3ww)ri0i_n,GS^Ÿ5&o3k~[ۧ4 szF:H$!%PP7$D"S!ED"H$w .MH$D"ID"H$IBR"H$DR!H$D"T)$%D"H$B ID"H$I(%$_!e.I$ÊaTQpf3n.+H2޾=‚axEGQV1 ݶ[Vyv8vLZWWHȈs/GϹJK?G7D8Ugڷߦ ~L`iLj|M@i 5NAP8,$2t_H%IIӥ\ۀON7$Zg?35T`"qQU^wDo_;Ǜ#>>BD!7/YVG2ѺL%Qy|6U*b(5#X*:"{RI$L75w6c[@ ;:9kcZC?43 ǩeqV,>(>1/)22'L߫{) R?}qQ+yVOqg5A3v$;Yq;w+XC*Ƭܖrzx\M磸VAqc>ȼax( # Zͬ!>_܌j䱽7ʛ,n,[e6ّ Mq?j)sEQp y?$ݬ[$$DZX4M1ijvc7v!a 89S.$V]V~ ,jSώ)\B$oF@ʋ6߿=gfw׎;ky1@Mcf,@ `< f҉ѝCQR<5y1! ̨WfY'FbV8:7B0yDu\1b<4j!W6736S07hh}#ayE}Zڀ3koN"'uc:zwٟɅ 9>gߋJ:厛#a)2 2?œ彻0r`_",<̘eR/D\*MF\|ut"c(|V"{cv3Y$8AApjT¾=^^@FQ6ITn2W*?|No=5= v&~2"W L[MgBC>n6>YyM pBve +W5ԳR}a;;xYo.ʥlVoԨp]VgH^Ym .%sviV5_wo򘫂&k|NkeGO#kR<&g 4 bI M& E0j4ZF{3َ~S{QT$V~ӣ21\j[ߦ&~LÔ %De|!/Tr\c7S~o.YƤ|֟f~7+qöBk+uD#9x!r卛{qjNZ{]kA~Q4+ǠlK))\fM.Ku˚%46Ɵj<j)Fw];ypnW4'$}\+c_A!$| %#!ԋTթ2_8>Ŭ9INVnI# 1 ҧ2n/<3 kg@o8әn!kXwKWԾwX K@kzz{X C9R$3Z9n7*;GldYHZ_iʉ%&M kWIgQT-ٿG?CHVmp 'hYߢcfDJ/vqGCB|$N{qO.xaH7v"A k7]HƱ%EIw´Il\:X^.B]{ۄq8IQy6LwH-N4}0~f3}fLOq/kbr.f՜Y_7$CӢ;y1o[gǑf !څ6wBLL=ݰɢ@x/Adqd4s@Q$X!TW̅x5久lB$^|.<24ݗJRWyw㻾mq UU7ΌUz<ʄ,ڽAkWo#BO4\pf |5T-o9s |R2~O2gj\Zì6< q }h:JVZɳQ{:^ų3'z.!x< ծT R9Ҁ*e]byxeHyjʓkĒc&\.,ߝ=[2;'DGA|2Mfƚw4a̦xoҴ,@!.8VV,8w;1{<=nhG=GڭLnШcD"H?ߏAfKwC+6(jD"XE)!PuP] {#(RDJ$Drh1\KD"H$ɿ#)H$D"RHJ$D"H*D"H$ !D"H$BH!)H$D"RHJ$_aTQpϯ0n.+H2޾=‚axEGQV1 ݶ[Vyv8~vL>X}!Dr' r<RqG 6&⚍+ ʋr0lsoŅ)/)(@wli tK=pTJLŭ?;”!YAQEwI{fBdsDuE͚s= ̘fLfs8>~烣84uV, Αs*ZU{x')$%\Ukzmݐ@v“|9e\n!'hX:ށ dV=ב :,2NE3owˈn/㥧? j6f~\إB\eC5[܃.3uc"Ww1y=Nt]7UW_l<3#]f2ū;ʹST%Ծ6U`KW!97+<;AukଲRl+H*O.(,,hf__|in3E;v|a  0@cBX/FUEbQ,"O~B/ޝ)~JWa݁ba>1bmD5y v_A QLJ}f*/T~j93;vid_ˋjB&0c9mW&x${I0N݌ʔ!΋ QWegFڶ7̈ ;97Zс8Q@tԾЙ Z[s ;ΖC5ᕧz4_AcG<g#(Z볬g%]RbWsQ;!٧a"91S cL._AgZ0/^ 7֎ F iu?¤H~Z- EQyY>ܞɒ-NҨ'GG`_ul*Od`Ҿъ:{rmwwRŢfǙw(H;)wܴ0.Y/@ )z/GtOY),݅?CHfLRyN/č\*MF\|ut"c(|V"{cv3Y$8AApjT¾=^^@FQ6ITn2W*?|No=5= v&~2O3,S˦dzyZPzNK7eަ}džSe!2PKCem3َ~S{QUmyo+8QH֩5[9W{Gjv ,Lk5 ??<|\4X{s8^+8zY2@ ǖ0?[c_dh2a(.؀dDoVc)-dj5,˯|!/Tr\c7S~o.Y\ iUp] rtY:ڷɰ0efB+*0 فEw.GKcF>R@OR3?Nܝcai!ǵѕo9Jm?J@xwwjz䧓oR4>ԇUwsS ?+Z޸y%vX6OSs2ZẅY>)%% !m9N7P2IC`jVƳqboQ~ׅѹvEsbO"GZQ͵2IJLZ2HO5\*cߊ[#C1\̚me4y }9.NHRqIE.xZg0`ɪ+4՗`+7[ j=i`M x*q"MOK=#U%\xf!.L#yM@H?nӵSl:jKpnqQ06\˹ˎ[{-Z{[4ّ%0+DwX K@kzz{XGE*{7Յdji5?K+yʭptDUI0&{hp6D7#OBk=N{3Js0LTƥkEQ".|S$QL,gܼGNˍg)'\87v7D]]&5g]]"yx0d%G.]QI |(-]1&jFԮb |49$ǓZ5_'1S]j v3Ln[0橍 [ uzn Bסl@COm|B\"ҠJlţ=cۢ_9y-vu.,a9x7FAt6ҽ~ jP-䆱|:r)q,.FeƬG-k݄vx_+j[4Cvyf:1Z$ƯPQFK8\xy?Ve#2}+?=1+gsvzQ'\(7*+^q$j0&[}:}GX)'fPjƥ{E95 '3,ťtg->O"y@x($NueunӈO 4kSD[/=̤CXgZeGs:?LJĉw"} %6# iun^>Apz 8(=nA6˶sQg@Ebb/W~0'2)9φclOߌ1DD kֳe}&/3#ͷD윰Suxm0M-iXeslHfIw9 =l.'C6qjk.p^5dwG[RU4بMK*ys9ksE>1k'+P>w){^ EZPHVV>zc.fVdbIdqp^k~gKgiJwBBM 35CWfU#5™lCG|='2cT3g{_pjƥ{DK[3ȤѤs0tw~/I$Eswb ߶:Z&#B mڙ-řza#PE$_*`]kS/->2i怢(-H@நf.ƫ!-Fg'4uwѧSZrʻ+xݨhSpFEButfQ&` _zCzָZ{ۍg[įݭ|vJl(0L`囯rsrԬj!} IDATV3ĩ6(~Y l=yj?,/[Ѹ#uÕ Xg#u(ggN\C,y][Ir?U?{U`즓N zM` E"tTE,((6TDt.HyABZ emCHK:?Ξܙ;w)ތb\~Mף0GQsvL]o: \w 1Ci| +|؝~WzaS\V\EZ~AlwӇG+͊[y'F;7Lŭ>OJ5RP!*=-̓>6ڥ4{pGYvوn.xW¹tP)#BnAJoGSqMQm+V}t|֝CEsבOmX,5EM #~}HIʨiۘԋZw>+9$%džMq+V&f>GIi_htk9!y(p>OF_8d 4jÈm$ 8gre 䋆O/f~mlJ&YqmŤn3N}ӭ?BJ$į Q"n=9uY%įH; FR8+MPgW_V-ᶲ!<)ey*Maur`0/ϒ.ˣ'e.N>!)bušٝ*b!u%䍽iO#ux[dU(}\4XɏMuOfG)m0)NIyvp^\J!_!Ojz?\s7b &j8XDĚrJ o+ox0A,"~tRD^Ny\[+CT6q\> Kz֟LaӤ ٝj_ ԭ^Kjl&˭[1JSd͙į셐[5!kb"{dx;=`؛{. ߖ94 ?d1;ی{.לoPf]{)yԷ;'^>Or!WX[|@!^i+>wDgjwܛIIg<ꍭpLmM26Rdr͜8k,j|\ś.NMI"~n#nN54 \?VoyrgVI3toףƜ/PVO%=1@_דCfJp1{9e&vBUЗsJO%wp5He"S"s(L߻#34#&ww &Rh80yp;. f);G c7(VjFei{X} fdXXV77rt~13CJ3`hlK=Kp+qhDE\Jcc}΁cXH"eEQ6XI7n =),Z*OzmMɖ=-b.(ꆳ?ܶ2lvkl=H-`wp`a 6=Kq^T)FuI0z w}ɍ'ph:~Sv)Bڻ-+lYͿLZzUSW at,Gϑz kg#NtNΟMXT͞7˚DoWz#_7HOfYLJ;#~>hWٌ~-4|Y%0[,2I0a1Z8Z-:탨BҞZL)y̯\>ZA#[q~ 3KB0sGxkkӢ Z }w.۱D|7^Jr󃟢}_pvNO`ިweKa潧%5C+ᔕDA󔴋Ͽ>Bss%||kʝd󨮤w$%kbi6]x&4۝GZu ӯQ GD '*KBPdٍ1Eɕ<}N]PUT0stfkPe2‡| Sa}Dát1'竱t|' ?"%T>o鉚6)O>TaVv|Zjp!_{Cp<=3>_bH'žCWm(@L,.>f:pZ0f[XsY"qG,id$7tn ZĞE})hQGX-_{UY?_W<5v-9hdYl:L:~)kÓHȤ1"x$h)WNƦdbOo K۝>hLx4Wʶy/nzf{ EQ2H2Q|즛"5>`LNg/$ "Y_*`"^_[;HK co=%sx3_Y?!bVU }1q94Ö+a/vv{mzWՠG?e cVg}[1d/569:MJ?/pF{̥[ :,gFh@Sr(JǦ#i3 ]kձS,i*zfn=+kL*.|_mW; ,.ḷl_!aL>z-L 7b5.`dw1OQ,? dX J17kyJd/>JL8i6%j܌hN$V@ROˈ'R · Wy(+ql,5EyegS(Q]t,Ĥ ; bHHFؑgս4AQ"|⬷r;euOYcW~;K9$|\,׆*C~.ّ癶Ƭc[ip?0og[uxSPr4KЈWO?0p,wezs̬ ^Z2ˍjN2z/FF2"l)Xv}ۏh4؞1\x3yØR˕zSw(A)BQ눲؛pqʪwRyy{ڌ<ØR˅j烮hxՠ״$}חgWFGQ5$0 x|*,:5S*cˁ(3iKS2ŝ1\$bzx' S|^{D_ %X Ƒ~TH͞^9ALz Hd;9sH9/+Jfђ9Lx墏rC$Rq|dޚt /ѳDW{&4sl{R[۔Ղ۔USJf~QX&EsX,ό-iymSI']a)BA45T#~_ܲ)}іgi=qy=:1ls>/'p|F-|;/ۑLDzG쉽#:oͰ385u}p.).sSu-!W[ED|y4I~F\Pp,뢎ujI׺%rʢO(HVIvaR2@=ĊzCDD$U/?e$!Ojz?\sV}ě񉌛(~c鷥n!q#Œ7kI\$]XXk9kυY7,^$kOId3s,"VI9萭Qk$3#gp k %;HV'd]{>Im2iLXo/bXĜv\&Tu 헔lIYE:ʺ?ZVǙŘnCQqObyrF'moa|3˴Xr0b;RiLR؋&"QjX"Icmayig~8#Zi1|flI 5EPILZ-" xVȕ\˳MI$==ʟ50|VE'>>!MmMıݪϱ%r42NVIdgʭͰ).7H⍿%o>>Hɑ`lyan;[UƲo&Kő9k >R7;8.p*P\ù'eiTx~ C||hqҁ1xsŐvOG70a0Qp,Z 9t3]D4R'@ۊ== ?ɭ%{ 懘 pkB]WoӦ\9w{'Sꗾ_mVW2&1V(_1{( & L[G`ꄬIRoU8sKfsֳp R/ IDATGjZ{[1[t={!Ϟzʅpj˲KM?tn~kԍ&I|۞_8 NAَa Eph`nm+`׋Ѥ_]g.Hj9Ӱ CQ\=x *KBPd4ZۈjOیr,u7I(3hE_ёPUT0stfkPe2‡| Sa}Dát15ےXkYO)ը|=ZYaxtnk$EL -3ȶO8K6eEv<3y$ɕJJ⣽LՓ^_`MFU|DGI]dXŎ6-;+\2%@LDm0viXlV|fynlo įzghӵgflyfEyٳFRn%ݢ=EQAb({<)TGRI4=ɓgc ~nߗn+<&T(SSۊ((]Զ((x(QEQEQjDRQEQEՑTEQEQEu$EQEQ|QIEQEQ%_TGRQEQEՑTEQ9)4vH?,i,wY\KNd~W3Ցv_E)Ũ4w-ϸ~n[ /lO43,UwJ(fe~jA}Rх_#Lo8Ca0} VrhLx4Wʶy/:A`uh8;}]+V՚LT%wwu$Ӯ~ۂW_Ei$(Y?Aqcu2<{%Yz%BP!pw1EC|j㧗35ez-f[pG!0$;>#0brv7a3Ӥ4^/`\t翕L:ۊI'يo̢2L~ ',Zz6=sj=n4 }m49EߝQB+ʿں$4ۿ#J.뭿 <_,iR]>!ixYED)dRQzK/ˏ""GH E[1ɵ?/I)pd>7RoA;K]Z2XK2>B$6|\Q|*Rg"!kIͤߴ`v΋[1JSd͙į셐[5!kb"{dx;=`N?kKcoXw-壊Z0g6Mjɐ/ [-Y^kJh+ڜt눣c$С||"îK0lו{KV.~,o]Yy6 ukr_i@+<-ﯹ(7sW)T"u.&#kf;o ok">ϕowϫ^.b+S^-> xԐnȻ "Ƴe;ng?,8=NԿYSVi+F;  H̞Qs¯f35\ydeӅ4}äʅ1h+P*W&,nǡq)ُMiR:}or9Ʒ);/){}#՘JpuL:zmS츀4߃Vf$ғޔupY `!j v?qz*y/^nrkam {3O˞ףNf8@:"zgȷCH|,+Ğ;ۨ6[kdi6"GwzL牿XwOd["(t[o NMGz%Kﱾ> cq .+}n< 5? |}]:^y#ieD@NL=Q(Y'!rriVC:&ԩ%]떔FO+Gr< [%O2_l5od1]>M oG]zCDD$U/?e$="yC΁G=~[Ri>?(5TdYg.{UD rxtYq=lDoX6I֞g|62#3N~"U2hk1"F[6HŤϷﶰH(fkXA w-aFk/wkYgcA F1ǭV>A*Kj  (X%q;RQSXzyѤKyV|v$VoY3.jLӥ.i6eR4AKiˈd>7^ΟsAo-yAJ< F(#|j(or٦* %cL+Vx6`knXҺPu[3mNI v:txʗ3;B85Rʫ kp/)KQWdbyWb#cRx*Hv\SUe,fXa6}]Ø1 WbQ[iSQR(:j6ݦhiG $i)CxU| hoޣZNMvտphTt!O]s;`X0IДzU!<ߦ8;NyIH@hGmAs$sMVVprq oW և6|L}$[3o< 4v+ im 6o;Gg]0nt_Cn뽁֝\X L+ޠi WgHB"!QM|nXC9gUF&窌=m&9:#ZgWtY`1Y[Fכgج6hLg ;~Ο/!9*fσm^50Ηرu ѪM5RʎU*fG%NWʕ+b8߲~ܗ#͙ u]yOcFiFnX iwupt =Ǣ'saI7KENDC*Eq4ӓY܊]x'b2`olUD8,J-ivtf@nW+ߘC=LX\a#x>;Q>%E޹5Z't~OGB7մb'f;Kf/wyl71[stG7ab4w<=:Xpd]pı]9oMݾ_&cY? ^ b8ıUՃ'FpWY*&Vw)d#ܵ՞z |JMid'P$ǣɝvYQ:ZKqG@`h&z;ʆ/fe -DZ:CbxwB'](QS 'L$I"h:u<>&IY8t%! bQ[ss`u\/-\L3hKvgLw/=HO<1o oՠ)2K7y)yK!D?/^sZl+[9 G9pkӇPdX]>{-z5ΐd!S8C@/1ϓT]aԫ6]i^:{3\$n7s"Z̘$΍^aSس/rzUnq@DMKEQp0^js>[93xXoD)13™ק'%Z*V7*W/'tp@1q2ޟm|bcd_K9l#qvB_Ʈ!ƐA6s1'/hmUsolvTt_ [?I$ndҘDqivQ~VJ'Ir ;5 I<$wnbz+=>ӳX }H>JepGs0- wM^p%#H28.TUeY̩q| FCvtܨ33eQw !9Vfciq=xRsI&wC0uWt[ƢPb<7/tabb6b ^KeosA |fxݧgTׄ~= }t% [=Gj$goq\b6>hl!t0rgI-s~FukԤNoV)N6>셏 *憋Wz|ϳ F+=CZ/ʔ;;%*֠XvoFSz|M .,xrη'l[.;(3pk- U+m:\V|kףKu(Y/ yi-Z,/df;4(g {ӯ/P;% Ql ;lDQ7+wm\K^ۊo_ε]S\V\EZ~Alwof'gm/2xE a| ۵fFOyH4ϓ[yPy]&bA8zakv^CsCPQ~0+ϘZ_CrmkfeHN^!a"MXM\>%ݢ=EQ|kjGH*6i|㵸':yR b{,a/P;^EQvYyTmEQEQ.jj[QEQEy`tyP:yH5c((6mp;r,d*(({Hf8*((mj((/mj[QEQEoQSۊ((JmEQEQ%_Զ((/jj[QEQE5((䋚VEQEQEMm+((EQEQ|QSۊ((JmEQEQ%_Զ((/jj[QEQEɗ6h EQEQqO܈HFQEQEymEQEQ%_ԮmEQEQ%_ԮmEQEQ%_Զ((/jj[QEQE5((䋚VEQEQEMm+((_|(((l#]v'((<&V^ 6((J>= 'fH;=^é4;㊢(7=9j C߶ ^wͿu= `8mWLwŴe{iό߶J݌ ңfmǚ.-OVzz9F)f!n\q[]O}t2_ջc($Þ [yijyv#c~jy9Rêwx?;kӳ̥埰0VS|}!K ŏ?lewo8QJߖ.R -o\cG1wG.` ,<c>, f믯Q@)) + A@ߊNF3kw̽5V" ~.Nߵ,N7ld-iףﳐw6hx{m2NCŕ4ή~O{ 9t+x[4 cHzdڃȩ|S52j"#&Ω.TI K[}톢%Ӻ@-8x~?ClETEm-qVp来 ѥ`Ak eϯRcC~MҸ:Q8vە]s(NiMkn3-鶣d5Q13,Yf'nwLZ8d<-z2yf6#Ccʂsv g֢ '7gTC|=)8u2o- 'c#[zb`obͬz=vE2nbI){ IDATt撡^Y Nڢoӏ~狾mѷ{CR3됭BL,mz(Um/ӳ|km_A]XSOtlGo|izsйS>tB<]???Oχ=ڝ3w$}f9M/#!0g;H:[/;⑖-ܥ &8cJ ]L @5ƬNpp0{nwFϰ3-Q5\=ScSY֫4z}KZ=ّ>?F~(0pjXfywZ6_,R*1d&7fX-Y fZK{Ȅ34}bOtu-W"NAs 5P#QwE5Uivwtd7=!Pj &wDDEAQP,(E@&#E@z 5R!m @$sgn3wf9,<™ݚz&=4An݋ls9^]~\]g3{ i{xlߵkK9썱:Of_m~[<.Tz}.wmgHZ2fY83OsryV,'šNk k~/ `7رkK>đ˸jBk8ݍߧAlހ ]!jXvif]Yپ ަ2cZH;ͼ߮֏lz$We}k1jg=ݾqpW/ y LĆesZ5a|?'(0Js6,_U%1ni;YLQ̱3EgY/kˋq|v3n<ϮW l~xiӲl-fmz3,2zWSD͚%\0t)n[*yals¬K$!??D_Kln3zRc$qeHc !4|tFYΰf'FBe BO',X,@4ã_5*8ec1M|jR8$le+itVsʨ0a./F5eT#Ç3|"doTqы#rWMS_O_Ê[@Ory7;In 0Go|fc]S䃩[%}*e@۽6M~ebl k'.iѰ]czxڈ[ ` =xZi_ɜ L۩y/cڇS-zT+9+hj0˱-ޢ\\+X8X]?i .5.G3?/eXeKıslWvfՖEW^݇slZjsyR? JSM`6YlgH %|S-oVpxis_zeגt3=ޥ|O UlRA)Pi=(_;:3@w!dLMTSFE̗0noBG h ̒| OR}gK8xQPNbsS#΅ {oX3~jڵ6w\C {o7Km~ D`pU:ûR[˭Ei+%T!\gNIi#2o(x䶾m=_e@W|cFsuu.-x 7NUź:OyJ4+^Xpo#2Ց~}цޛ}5?Bp/ڍiANyg懤|+[>{#Uѣ )яFq㋅x+pO2sդ'f_/Uۄç0#Hp_ ɭd'/G(&7etcͷ }FZ/ds5ӪWon.%a2o珀o&a8K> aL/+ï C̿|)ougbr-<rYS {n.af>O%LRR|l06" MfX:)7 7g|Û?%ͩ<-O>Vc@+ƾ(>;Q<TJn%E `y:nSQzVxY׷?(p3]ܟFӵxW-?wj_J͵wr4zƧN'bdFtF'ħp85YoOt?_{\ٶ5G돵wQ[8/ӎE@w߾fPP Y1=>y=HY+Ȇv8S4zmk˘q%_+%7\{~F҅{J|S~I&p})ox9omK?+XH% [6g,$1Z߉[!od`Гpc'sgӴc T)o3wATy{Xt?9$ ^,ِ߂΅HLo7c6lg#yFE"+_Ӊc6:x 79R|M\4];yW/V|ɢ=-I$I$Ir4lꫯA.;Z(lI$Ik㿽WKے$I$IRȁ$I$I/r )I$I$HJ$I$I"$I$IRȁ$I$I/r )I$I$HJ$I$I"$I$IRȁ$I$I/r )I$I$HJ$I$I"$I$IRȁ$I$I/r )I$I$HJ$I$I"$I$IRnCe=ށGH+ 5Z,dwKL3[.`Ј+3?H1(`>/``ÜO}yIl5޽CjvS˜`>g Iagm?k_Jϐ|՟LO K$"j51yi: fQ{;O)r-lL)EPqid&OX-qy2_~[-Ҍ9y6;#$/3&.ۓ&9~Χ<-ܙvU\xd#ZT.nvM`" <9oz2b]:A\7[KYƝ",cV7\?aӱqjĠj*;oP 1N E)s3 ZU.em="CK=ߣ.TrR<2p<9 ߀&.<)QUuvM9Ǣ7|$K¡[*@dFcQQt`k|s  U3QP4q]Ԁw D[9į,^g0v2 E(YYcr1< af$܂ OS` !?EaPY/Z.a 60u8_D-£[MJlo bvwhN8{:9-\%PR3(5c'%'ɾIFȑ^ y˓Hus Yf#4#HJq ZԘ< WO3&-l}Z-J@MÅgwC}!#ofv 1:*~Xwf݆K".d]haֽ%2и#d3cV-;yzN8rgc*Gglea5hږ cig9n_X@Y6{L׻,~_/0afT^XiuU"KRS}'4s# s_w;Ţ%w/gDev>O)CDS3 -喿GY:WYV(v.wB/)Y>=x*7ف oDΧo嚑e?3ڼ䤿\ZxcӁ2-cYao3uΧk2#}s( [Wa|XǢm/.^.1!cfX *]y֯LYGb4O&pܚ>'0mLfT^&?v󹻹/N~fwJ,$ ?l!' 1r|ݫ,̶G*Ojű#\iK<B9d\Oi g-JB|z H#쇝<ל7{4-8w{i@iXZ_~LN>׉79SYtTRk \3yK?,a+a?Ɂee{ěl:>U\ޱ=n%}.Glmbs>IaQZX̟ˡrx 8TnCKX M?oKM?I$\2˭|0p'8"3ZWmHT#RC8v\ bhЊͪh|H<9G9%M$\߷/F̺'O;O _!~6=n*|Dj[캬xqhJѫ_bGau/onr?KbLE>kԹ!"QRDl#]YJ ZѧzdwHJӉ?!׈WmhؿDu |EgbDje4XbpU̪/NʊӺL%5Cr!0M%1.SXZ#\{kPN'Uu]m3"21JJh)+FNB3S SɆ`#-(Jki%W.1L4ckW==(“ -ć'҄fe*q,4Q_z ]Ċ}7]fSD#/!&H2}yN bIbp`-c$1e$fvW\RoYs8$1i,-OQ²ƑLL_xF$ez1}l;2 0I9oWvwt˜-NFL8d#TwP\O! ֆb q.F'Du )ǒebDTAuI"IY_'I]|IDQLwq4,Y;/v+B䱦doKba)(bzŎf*ϬNF˸-oLmLc$JLqvv̀J5jMu|艇}P!WV炙#o>#55s-g\KeS\VMM3ï-`^NT?Rb>׭ǡW5Vk-QiBqӷj 㦴A1hc݆[ոfcńS;ƍ[3^y(bO׆=\L.FNo1yl;g:8vcZRŃ}^.w8v5ݦ4.#W& [ړD|PUF2a,ynkG00&\:u^)' Е:`?T~xY^ Zzjz\ ]!WC \v{뚔uנ֖vzx¸z*/j5t8L=s_B PX޴Z]N_o%Щ ʸV +? 93{Α׃~m)ƣu۴Pp\]%+7m8夹0їVj+ys?^FQ9qɻ]NjiKhaN%jVVg{ ޒFt"D}vQe]m}g+F*#F 0o@:!4􏥣l8Pk5Mޣǡhjte)L~1^Rjzb4f[^m˱܌Jƌ3ɆJ/8*0LEf f=IzP{8CJI8QKA 9㔃BQ;OfnjqCG\sztnP IDAT՚Qu]O<'&SmM@${{~dꞬi豀ӹ;s=qJ1MhJ{!: ܫ"jJ۞,ܑD5kGesX';J<|=ʹX*O-N]If t IZ#: s*8c"&܌@Xa+=vÄ|iLݧPV)󱤙6*\0mB`٠@Ql'tW,>ͲKɤbLU'_cNƮg𶄔 e}w+BYһ&_/&5vuJ77^E5s9NAV%prŕ4b _ M.6B F{?˒?^eڵ@r%0a~Ʃ"ji5b]CHw}zVxU-B@$#dST.޹JAq8q4g5u;Rݎ},׏oeĻ V>V)V>e͞lqf7)Ď-vt)E1U"Y*4'nH 6<=P2\4QZ3p6\*|oʗ6#¸M]gU*ү#'X!)#(KXVՇ~y^m%Ag&5.GV]'T놳ȩQDŽ~=~ KƢK ҁW8x0JW_:SP\ZI޽ۏ Jmʺvs;H\ee|΋УtCȯ,=NRVFSK ttW fsMӓp~YE[GM°͜L͊Daf)mNyi1|.OP9Ng9lN~]Z[n@+pXS:xU;s:* .qYTy]o $^~8$p f)ܳc$̉܉4Vk'Ci\#\?qR__o,F˶^_oI_Q̗8uo!P8RgdW>Ë\r7= _[Ɯ$5>+2bYS:UbSO}{iGYzm U:0sO9/R]7K?y/ەx*5Oya xQ_3fGi=ǒug0^?/=m (K%#^o|4p@maؚhGKƽSZcGw-ƉqQ~J 'cosmY~}8[NU&}[oG qfpi@1  t;5^#I3EJҴS>H?K,U4yZÿ20I Ԅ ZW^x>r`L6*@ai>O?=^x5[W1Tj3W[,؁ܡ -5&rJfkF]: P,Ss~ݍox&ʴP6ëMvLt!(ͣ~Ti:%ƪw?lNSVpۏ7{~`-sƝ~i3ekv!Mʵ45: {ss+}>Q.[Ŭ p.EͶ}\܏O`׻b={/$'EE]M{p'E*~\jO\Hug?'vbWf $għ[+~s8biMf9HWW}#7|-g>wXI$qcwbч\k]9on"F<CTa2s)RqiT҅ݓg`ԧutLAISO Kf@эOF6y9fa574.Yk%dJnB kB=^ӳ4k"6sZjeSSxc4{7#~#O iO*_|=}YK+yz~R?0/־DJnxж_'*VSs?z/ 9lm$=Уsl޳9{V#^oDI$I$IENoU_+U'&8 ?8I$I$V I$I$IEHJ$I$I"$I$IRi )˫И6K׳\ &i7(Vy-XVBш_dz(p꽝*ezW)P(>9j/VQ%>e6?۔R1t V*kώGAg(_ɲc_" [ę+]AKO3svDnqԭŲfO;wWҩ2׏GnBKZ[~-t֏7atќ\! ݊>d, f)=Ӱ?o!{zjŗzq ōlZU$i#팚Zlbl"K_1p.CiǫBA>~V-L╺8ïFE܊\+ɞ=Wӏ(AܖaTx ڳ+ٖu[+5vO|ezY3W4Ek`)ri ҍL{7i9jˉ1Ջ;P{Qp~9ПHeEIL~:SSzġo7phRBknL!4vŌە  'z '-$]ADP۞7ag?‡9-4m ̮%`O|B  Z /HLgBlsx)1Ӎ4(Te >ܢp8‘RKA~-%nSgm^?`= e ^9boɟl?V5{rJ9Q Co'̈Mk|ƫ̨ҫBOtuhA}څN 4NwZQx堭 o?QL@^]{wZZM툯6)=-mÖk /5,F@F ~vZJֿ%_g/?VZ(p%1].==[E BomX?4Eu |EgbDje4XbpU̪/Nʊ:!D83P;5l)1ܒv!=-ӝIׯ+zN^/E]BH6?%5CrgYDm F~J MiĢ^m",)T,l=׊/;ᇈ3~Mcq%Lo%' ItR!|[2VI7HxRU|qa^&&$&Pv񛻉-fbldža ks"~j%s;~fw3Uצ-p9m։GW[AOl/HBiҭs"Z^Y%UN7slab/El P?bܩGR.r*_[~(ʈO-B?D䟯֟o賂[GĒ/;LVb{(e/pvʿ맕=7]f3.=Kvgom9XRq*!k1(-ݢ%v킨6 [Vhz 1!D85O8Ԟ) ;//ZILվ "#Qc깜~y8#%KBXD܎AۡQ!MBbtY bq؃O9(6O.adΟ[-?-]m"fD.asҿ۫ʑmg~feSť߉y{"1})rlHyףbcC֙`"jp@͒u) *J??3K./S ׹_P(Phj0񲉤$^}RS~yBw]?e`FTqõ,Bѓl <[c ]x 2/A푃w1@G_l}Ũ IQ6\z/S)6}jk5.~{4+g@7F/8N\k 8q'Gl4#p?cl, 7hs4e[;=LNLWx:mlJӃΚ?پuO|JK6s.>Wbvj_n3=WqT`ҙrh].= y ?J5FtƬUġd5|ꍇ PkLJ/O۸v|!kaﲨ~Ph{DY+)%ky ̟͊0|BK"#Ǘ<"'G G5R 쥥>6T:8㈑4Cޚ`A?S_!Ȝ?N,[?7vJOGnpկ)X:-C7>oiu[Yo`q wa>>Zt*{ttW fsMӓp~Y<pb]דH{ f0Jw}64,+(s^4-eE$vXwW ')+ƍf%RGM⪵O#BGTjK=P۩FR^rjGSv-?E£SmsQgA]s)X}Yw3=)[p 7.ta#|{Z=3{>7 +.< \ }B;ZUxmB4a\KГv,kb$Gz9eM '(q#ۣ_AKOG^HfKvq-, bZ1@!*|CthZ<}?U0 Yh(^xwƗ#1:q~r5bȞx<ь9.CZ»f/1ygd<gh[k/jΑB/BVMK D8sͿ2^ֈ꣧7[VΨw@O1yGy4V?}'sfm[ω9Q\\ҶR_ri L/fY=~6. Dӥ,"fPQ9p*bgEasi5u6SDCǢuMVH>-m!}KlZK(@VN5N,69sZ9~1~CnLB \B٦PR`b'c_JBC+郼V}K.̖ 4 ̏'u O 0l_-s{w0f4O7Hyc 9į,^񇆳jP=P ;VuZWPNJ[$A[Cfh=%I'ɾg$E!GbڋzųnZ'wE6/O"͕4df6r}N0A3"hݬE2{1çq [؆/&2)?Z~9>m@ QM8FCG`btT6,v-.d]haֽ%2и#d3cV-;yzN8rg?qנh[&- g%2c;ꎔpW!"EE)Yǥߏpu޳P?m+\0[u4iT֜FӞPs`aVm ,IOJЄ3ej/Fo5d撾-\rV/H Ɇط7dp,].XO^em9VB7~^m\N9†1$BiTAmk/K@I68t+}.H$\!w*&zN >9ކYkQǘi>O҂Y)G^:΋@Mgi@ѡ>߉ug,~r#%*3^{wv[hS98/v5ck[I\Apy8.:n EάQX]nm9T3⃬D2&=uXsbc{Dȯ[8;:Sטݣ5F IDATݮ sxs㷳ݍZp(}LȬZ^\2/0J8?]*ӣ+ӭlJW!\P9 YCb|y(A1V ?<{*5a$d$gɖsNXgLң :5U(T␗ ChI$ƮIKJfwz:d{h;6<:-ip.N÷y0113(1rف2*Ѷb2Gפb6'.jJ)C9t\5[=#o>#55s-g\KeS\VM13-Z0)ߩ*~p5hnPtjǸQzqpuIQ-gD^mVo(Ϟ I+O+Q-jSQ"%j 㦴A1hc݆DLj7Z̄&Joe,QJGƼ=U}ptՈjߛfP읊8< `!b%nNj@sig 8;T W7 ړDF$I*zibcCփ9:DYY5KBщ!F}uG*lusLhiPAԖy3KJGÛPf gm()QGjIJ$"f˼bVP?S*Ts0W4rJq$vnLoіu 9}c>l!ɜ]s]ù@T j2Kt/k JﵪuP;'ʞaCCڐW^,ɜwV*4 L:<#)I]J5FtFδ(8c"&܌@`Lᄷ+&OmӖBZ T˃%l3"*\0mB`٠@1hA^F)gЏoyx]׋Lug2‡ /R%K#z7f\X903?LLhowVfYn'$Izi[R;m̤@ nBKOET *WDy`| Xŋi"J"5@@H'!=LYBH0L u|>{^5>TSv$GϚɎHfx ^˃cթjNfW'.|o"sKg`by]4#nnj;2,*ɿ`N#6M7ˮ Bqm4eexrֽ:!ك+[6$4<f}S3+aVpuހ |Tnoٝ_7Oi|e uL|UoR5xV4:FBpG+@W1g _1pqfY:l_dlۀZW%sjC Bӝ9fQڰ ~a=> Ԍ70|zDmv)[ dw^*^oeu ؏{i0TJ}y(ٿ aJ ㌱wrS= Bq[PL'woFȒhZ>=NvWDPT+WN4r4B.d{>pyBP\Gl[.q ɝ;@k{5^|KzN:_nNJJE P^$~)bKMW\$f %^^bSyo&Gr\.XΆn.S/^7 l\壌x>qyTBk7K3&VhĊjb:tTrT@~IZLFL>ZrʧyԣMKl[ 9Pr#yTܞ%+I?wS ,熊x*ŴAQ9[T(M)~6pSݨV4R`Vń>kI!mߤ,t>ߔErυ-:ۃysErK7i 0-]ٌ'&L-6͒Jؤy9GyMӦjQ'4bofͻ,P-W49фgb͉pD1aJ+;]N_,bsxZ3!S:=H,*%2ujc =zoNʴ6sQ.7PF͠TNן&S츾=Qܬ[P""$)ab+srr  ~(ge_sE7eoM2" Tg42!9W=EF$/5S!#_Q֫XseD8ɴJXz=A g*#}MbJ7J̆hdɰ1ǟꈥ+RxY8XNԓld#~>T睖wIϒ6Mt PdimI\.)Yr4)J|-^&Am[SWф,1I\f!]YdQg.KbHº2%7:]rR~k_Yg1G˼n./_)siT[-"YBtcoe[$MeKW3E̖u;$63U%Ԗ?Jj+tK|zRK^ޕY6;*4IGeRYƶq9ݽ'XqF>/4XN9FʦofaYR%"e2i4~\Y,=%ڋEKÜ,},S?/;/J/ Yb[󿲦oLdzE$O-7W6(yْ̘6GL4_={7_<13$#jWQr)2eA\{=J>2K6_k){2ew9I͑ eڔO;-[(7+XHxSש lXk'ti{MoڽX+XL㏂ 'ھDk- ?fe h)]B\5M x:P%r/MGL+|xY 6)f]cwju#gl`$,d_bx3Hh~<U9.b掋w (PGդ'P Wf u{YZ 8.|f 3KXyǧn ZA~[L"S'i-6dSYZjxa{Og#]R\4Ԋ^ոwêe'r}[~{#}uWuhT-3L;]K-!5>̽9wmȜd|{--?&d]8_+-W44jS|.Պn䭳gk͎w@Ϡ*9QE7:&rbBk:{S 'ΚKeC<ҹ.^ή&tbR*MOمs1ㄫSQ$fiI" ^M]Y NłG'9#9'hCӪ3`%}zEҼl;@MyCwp5WD=żEt$ t EY#1 ln:嚻&sl Voep&db<+uFo˧N0|3 gZL?9y|4.Mq2ux30rF!_:ɂ]yKjbq/d$ (6a'g i-_=gk{_i\ll鿢7*=GR\ĘBJ.\2i[ʕ9d:|,'rWvWopFX,V,ԏmveve: LM&\qLrA>I4#].KDv.$|K/MJg&0 lN9/bntLvAߩ]rӑXx$<zp5R-_kOzg |9eԧ'dM<᷂Ǿ_::kV̛ М'2xSsHV^=ǥ/L§ew_wؙwջj:_C?~Ms^e =ͪp>!Y8p}ؔgLlX ~,;VhB_pt |a|a2n6nUhKM\}u/3kbZ̞-]cT.L]uקZt^wߎY3lOƕ| gglM ՟Ti'9a&/)iv)O dF1݅pBqCC9 l!/)8_QR 1q1#)Nıfb*|O:~>Wayh,W7﮼5ʤGI%~V|k(̓ 6Fd4 ]`Oh5CS( "zm31I=j߲LgYt_YX jot 7㪤qw;,~} k]xuHcdpi؃6nѬX&"8g4b4|coe!wGݲ {{u1l鿢aI>b_:)ˋK=@lK dƘˉGIg1+EW@4NFf`Jbt}KkWn;4e%x|:{{ekzUO[=SZLxnP{n=8ǐ?pozѻI2l:Y>0 o|Z{3634~/tu8= {y(=62~,ʶJIWg¿aPG8փ9.?Щ\] #l0+SZwMۑj=[o8h7y.clMӛ7'bqo[_G]\߻h5.>a1rE>}U: t퉳A/ត~۾~7OGIs%?_H@6%S[΋ g6.@=g<Ev8cFZneo;U6K2v1etp;!O &lI)rw bM聸bb+8Qdz<ۻ*'/fGT*vۛWThAmouWqùIcNuDf oϕ]M[eXUDf }( f쟯m $f&l :]̟m鿢~;kl:~}H?W`O [PL@pᇓ^?j$b͚\]BBP( ͊Xzu 6FéM1M P( B^P( BuPBP( \@RP( BQ.n@ҒΉbt/0簹^M1W6yKCKIV-XCC݅_Ԟ{յZ"- +xB.M~/jCUo* d+X̑j6`=ťauu?;v°QEwe_P܆d.v,gC\ Z7+x՛XXF S~$i1]1hq\9NwkFbZXzHAkMLƘF;/rb}hhSۖm"2"QH%W%q -tN榈S)~6pwns+&+B+JŔE @^6\OkA,K.{'Bk"CZO ٙnMPsy~r%2u'c˾*;]sI!jtMl^&m`3EHQÈhdaF'\B'gFj[hEү@ZLD<Ƈ562R&Y>6/qLr+&y忒uOpUg4ӰG&H ;2f0E0#w`Ifatᄦix6yFjn- Mx&Fٱ#KtW4 z&{mh|hBa[.c?ܕ4 ʳ*~/ytED,ra.GVΒ< 9"u-"]"9^VNe߅7.\ Bt^}rj<[K/M&ߓvDD2w<'Uh(o{_R>(U]$gɷb%%f,x@=y5eK>k L% ZMyB" IDAT*fWjk W}.+V6}3K~˒N)Ö쳏寨}y,g˾*;]Ͱ{Ċt`I#g URnhBiKn]-WKF59#1Y}$J<]˔Vn Nɗ&H_5[ڡ.![ZS~]$WC\dȡ7SOTm'¤ౕ{BwK?H@N;*%=B>9IdLʥ OKN2IDrM鮩r,WDɘZ\{xɓ3D$Ywey)P  'R@Ҷ+M]SP~֮ $m??tR X(@]tվl9x|%N6g}(EV~e?[U =m5m5b W³4<◓Et"hlj\ؑSK_5=zo5 ִ!aN^60RH>)-t.z?WL~K '?4.ץy5H8@zjCFژ50'iΤCf\uiʤf23::in:gK1c <է=Ml䒙g4|t rsO= g=." g"3m",+_1L$PF>7fM_F↡R̢a6˘dG緡mP6e_PyVk7t1rzK uۃR8}FᎭ{Ǎ*|%}W>8U"K>D\ g@kOzל?8o3zڀZO}{B'ɽaU'@Dф hN#  'ȇ4+|K3^؅߲{"ؙ1qzq`NU ._jJ[\P?;Θ+#W_|I%*68`E'\ e^ Sҟ_ߝe?[U ŝHzT_Nl5K'==n,\XͫRl/gJ1${3ȱs>C]jb zc!GR0◉cYmwH=09j_塱_5f]ykL3N;IˏKv1ae_A@8d'Er6yEPw!Hf=}?0z|{.t-zC"Gh1%rѴ;ҰmܢY`3Md'Ep2h3xOǩ^X{6Ԉ̘ {)> cN#6M7 {[ %Mk%_Q_&e_P܁V$iVJxɅ X *^4v!]QS3nga&^ :[sHt`RI3p_0({VͿ#o?Wӻ4AG`Wŧ';nc`vH5wW|ჭg,&el-7uzD,xQ](u<=љ<{o|?i\KRUW"PCf%[쫟.?_&py8ٰ,=4mˍs0cW.ЇU4B`0%qXޣSԟ_ ߝe?[U ŝnByp3d4,W̪LYM˧Щי[]1qzF;}ه='g1}c8$7mov׏qn>]<*SnCt!}܃5۝rزNW(nCl[.z$<Ğ5q܁VxrsHEmʫ.CDE'qQi& .ϿA;-@q{ְ=.tW;e_Pܹv$Pc Йc2q_ |mw~*?SE6`Nh|?I_g44fOTnz$+C>t?+2(xNlWe+w2жBP( 3V/45P( Bqqm+ BP(*T( BP H* BP(ʅ $ BP(B BP(rIBP( EPBP( \@RP( BQ.T P( B(*T( BP H* BP(ʅ $ BP(B BP(rIBP( EPBP( \@RP( BQ.T P( B(G""(FP( Bq z$ BP(B BP(rIBP( E@ҒΉbt%; ڟ-t>o`qmOr*" ^L KQ|{y̋e@<.e؟^, /] >\OEq+Mk/ʲ[+*]7 I?O^C }mi1ɬVn֓~eNdAu>oo(ešy;3ao\^c?vordyKCKI\SWh YlS\.XΆ< WlϽwAZ/^b`jlbV_Fxå<[ ML?*V":пK] ]WofH"?[]TĿ5ze65/ ݴJၤ)~6pSݨW527XHؙ>0U:U@ P xc 13ZM`j\O)eשPc+䳅#LwFɐ$RH68*N?h2UȌ_b5Mۆ}@ZrȲ˨s ہWU\.ܟn!sǵdUqlyMӦjQ4MC ݒa\&9/k#;e#xy89{^᝟1ّyٿ1lYٕw-MO2n~'^qNbKxa'^e+ #t"bfBC;Һm%t҉哿w巯Ex7/Ę/|Dۿ4z\]X9>S>ޗ[ ):me 999ʪ/r`6~dD@(Y1i?eCȅidY:K$&䈼K\-ǚ+w^/#{'JvSe~L:GmvD^c=n1e˦ev%I4I}2e~Ĝ%G,7G$#!I6XWkɒM'>+זc͖mO~'c+DeIE2m~dʹʠc/#$Zeft(驲sҿo!"bJՏ̕!.m:sPF5],!'"bs~G[ͩc[䙖eğqM˨Gi_FIEedIJv!AK*7_Gȩ=OyVR|m=lY[dH|$E.,Y--ɾ!ce?%淡W%x_,'KvIY6~|e;-щ %7lțF;.lue{Kdot׾8#AuFt\0;*4IGfF nᒒ,GC.du5_+unԶ< M e2n%$"l4fɒ,';Iv%I^n9PF,;3" yEGYiIK#/ʫ% WTyܒ&ɮ5eo[>^|}4TRM:,KGϑC7JTfFʮͽeWe_vaL(n]" Y_)_)[~sce7,)#VVnBqh5+7|7[ذBO޴{ S/'LjA;QspCz4d{0ϼ拏֤6FN[lYϲrCxVJ'k lbL8e@B>spl}.?7g߄dq:dGFք,=fW ^>tיNZ +Vc6x@XU7n}yο{BPTOھV3=yzԫb?G5|u`Ȇ4 tˏ#jnZ@AQ pq]qVJ'8W;>M WSW_4§N]mI`WcKOw|%/L_J>VmOԀ'_FlOHX<"fLQ|5 :էC&>G^օnI(&-wOyA! |Ys \)hQ@=t)44͛[ºۃZQݫw.bXr#p Se8/3]~M1r@g7  BԯSYZjxa{Ogb^'ky} jPnHK>G5XkF7 OB8Ic'ziˆ3/Z#vAں$z-aͲq m'Z$r.=AWQ<>y܀riTAg6 W~! RoܛΑs1ㄫSч%1thPkZ0y'/O.h;г}=`1.ݒF*c_-5:gCp|yllw4KжP5WOV9ůgKڿvСWdFN\&Zcbʕ9:zP4ҐL,?ΦͱO#!ل9Ѿ5Skr(ض,ÚP p*}_ۜ\~7~l JpoC^`ۉhJ~x|1~G1oQ<>IC;@}ł[{$ Xp'3⑎%-3>.ܟj$^pyYms[{f]f]̉ɟP)P\kDP ,GavMm‮Q|ҹ\OLI 4)\Ŷ8ǾbсڮOFn4hqտ ti)XBu;C1o.u}ޅ+˃4O>s$`ŕ\ˍh ^O[A@Ts'8kġF@$+I Q&<.a09Zи~1}< D3B𭁆.߱*>K\trŘdm|j8ve󌼼#}m_n%obK26Cvd@k?N38wd g w_O.Ӗ~\nlr.!N"KL 9Ճ h=yIo3;Yѓ/Բ}ф h}֩9usgw&;Θ+z'9VP?t;!Y8ê,٬_'aLT<uȂ5GW_RF($x6 j60؁5Zo2HB]os<9W9r5ӹbƢw-`MM1nhz:fw͉: VY~E\ϒlX ~rx:󨎿>ԢzF;gdG$qb<1${3ȱs>Cgk% CܒDbRdq)8^_=Z9!_#V} x}e TvFM 27`P_gfaKx.yil7K-p%0qɿ?zeDaނ6~Ƞa~ʢ)-d%{Ie+I~S&'u >թjNfW'.|o"sK8V,]?7~lQ]jb zc!GR0◉cYmw?8<09j_塱_SfQ0|=1o+. {- 6s>DvR'㌈wWӌSe$v~?+]L=';1vǒ|ůa i@ҸSfo9Gڵ۬_&jELi4m(~gX [~gIXό) xUi[_8ɣ;}[4ǔI2>J[/AľYIIǔw39"q݂fUI17>㈵5=.H7x>H13^ >;fЦ%bMlr޵sOYO qU@6Ngg!=h4h'V1"HΦY*g]:ӈM rH'cWm;WY-+Qq^ٚ^w$-C;={pf&oⵠC5L;ٝ_7S﷙wdfa >ɗ__H>/CCIۊF7C@Q_/O,_9{nta5|"ﴊ5>uՄPq@ @W1}/_Ű6Fq 0hR3l`x}A,jޚW QAt6sdž%_Ià$>Y7qs\_} 4AG`Wqo[_G]\߻lc|2g^(WsʙIӦ\i`Oϱҿy50xzs~߳,MjC}>U\2 ( IDAT3{ymhF\ݛw1ӷc?`$ ӵy]z"|3yO.ͪn*Fsd nG޼>K>,ٿǔc5rS=-[(zԓһ\]Flm,CTwP+WN4R/s8ˁ9YjFIXهi1_? ?zyjBnD{|Ttӄ[k [Vd|Իzz٧5Х 3s#i+ۺv7p MYstT̀`3z_Iͩ3ˏX77-dcE#y{iC.c,aID8DT ) 1v}6|i;otV>#=k؞v}׻cH{\1pLM׮$+//և8f8_o\ZGȒT3F9!Y$M|;{tl? "І3U|ˍnߊڧ=HV"}1~AkqжBP( Ǟ˓"m,YQ2) BP(n*ah[P( Bq'IBP( EPBP( \)tV4,'Mw̪όzm`tL|T54̀WٖvVFP( -݁dqc\ر q5h1]^чo=(NīddىkߢEŭ:jsHBP(鶞0~ Bk?!q7/H6Dl*9BP( #8:(Cv!IwT-%ac,~q_fs[mb8&m`]$ޭp-&"fm`LՈ9?zc#dRM#KtW\+ԭ^/Ưr 6@0d'G9X"KDNZ"ʵ`gc/̒ΙT Ml .g=Z,M54͍ߝ+A#ʕfoGih>-ըBP(-e92  / :굨K3[~(^l/. c}=,|O'e|Փ7vbf,}0+x^|ޝ׿AAɍ9Ŧx9Ǚ>O[/zXXtאs5qn  ; tX5ёÑǤS8)Yy njB[E2!9g0eSu 1>3=ɟc0imBP(kHrFltъ0֬R,u*W~}`y5ImD޿6A57GL,ƌ[]gtN!.Ӊצ?GXLVi9$C䝼9ٝsggnQZ` 2NQ(}QQkV2=^*(i0yB3EiW??L`~zn9%KΊU2>UNV5fjj{ѡM<}uu}^̔(Td=!B}ɕJS\ϭ'gQnCDSw\?FDMxzҢ܍3 F;5<'5ϩ%NtZ=DD0Pʂ$t3[ctY>}1A=r- r#YGrt(S095c*\яIM%q~_A8r!R~>v h62w $BT'gn(T0rBd ڞߕe>uˌщ,`Q3 mbX淏Q^cgFTxO˸YŸ2&0h\a%yez/SQnNmFanda‚xo~EX!u]k|b)fC֌\Jԙv*qxL}mq׈L,Hk>J0*:ӶgXwB!D}r)44ǏVosyϴM\.?U] !1m_|tmgyԿfe4XSz-{t(ch1B!ċh|aK>}4!.UuLrB! KZ$-7u,`3LzB!x$[פ?\9sk*4 !B1FR!B9H !B<@R!BɋH⹸W6Ǣ7U쭱cx.F6-a/=(fk1 󂣿 :$>2ş>T)P((^kL/^.-'o6Bd*7gmwjVp,;߱ kLQl)՝Q[0d )w8j,u.~)spUB!^ ERtyƊ5.s/+/8"ȔȥQFű+o8*-\\LhtÞu!/"qIcgIkA@T%'cx &1,YVYσMmR9q&~挻KWQt~uwbNqK zHìsj &eᢤ`~ݖJ%QXRPDyC'>.p(I~ ( :0qK8iw/UYA{(vXR#qg0o3*8+Q(Գ 3 %gyw}R'Kuz/8A J;+u0UQAi@{{B,E`n?hvya__ ZTCyUR!D{ɴ(n*|-+O3O):(i!VïlH^I |Ӛ) U;O#3oR4ˤV|c=N;(F#qTy>~C5ڒ|/@>w0=6n@ ;FU]%0.rvKtK.p/)KGGeU~Л_Ǖ$R⮱CڬFnv!m=ͼ7!҈Mշc]83Gڬ~5lX ?ʠ4/1[*b %B*4&Eq:(R1GBCq颎ؿIqE>Ϊ]es]I C JMF챷WSW9ZM$p}'UJ~04%kٟ?Ogn>%4uYօgRZUǠ*6O8MI?1Zɼ[6ʻ];6Gl"@QiB~Hs۸WS{S .F xUow|e+#7 ʩʕx4 64L ֓p'!Caw-/KSJ{~@vu8PKI%1(pi!#|3oERS凫Tk.o>hguk7. $D[u=VOKBBgIe ):d.W26Gw >!Q&Jz(i0yBf^[w\شJ| wt%7EV}Év(ZMg/413_ZA>2(e}2 jx* ؔype{Vi>y>MIaM ֊X[AZrF@` ,DJRLXZ=sDŽB^IeWs+VyC1*U0qsm ʦT-Ik9y]OmkBD8Ϧ$hhosjI$ ?Vݙݙ#c{]f1l2~_1:%̩FW~LZhm*q7M([SgwhWgN½`uk4˧/&(ӏUxt?3bķë rr` s>f}SF/ }!hj9hv*FoF8n)p8fd ! $.M#/D6gEPp=[*eܬb\{?kO,ү*MG{4*]|t%g6=*x,+vYcd5ISgϪ1qſ _#217mivԙ=cż0~ u`8ޛ@Ů_`m27*pwNBѭ)&3* lթ)S2QǪ1mzS?ÿDDAtY Gʿl>J=ER!DSl_ԡ{t[b.+քSoo(z=E=92UiG`\=`q^cΝ7Oc]ByZ$k|E E=Y3K3|(jJYҸqiGH!O H ^&SWwUJQO1MFo/,)::Ӳ{[KBB!k[!B<H !B<@R!BB!"O$̊!;~ecsy-K {B!xLHN A#0#6hz)cB!ytyƊ}c'pOKrԔfXTB~~/Bܑ@2#Β%3g}vf $+MhF%xP{7 !LACL`d;ΆXmGPV_Vc'[1"9¨wMJ%1D'([ҔlQYN~+s=vÎ.kGl0F nܰvSnrd*zt^Tƛ9ofoJJ߉lQ*J5.M4mBeo+WY??5eVg%qRYpB$(-J|:cikǾ XFs C@beoV/?qk[كV],7+ɡs4^ F"fgާJڭn¨Į9ـU,`OK耳\WpՓFivOYΛޤfh~ gN)ЎvTjtu z58.I^~[{J7q4 }-ƹX ʠ40>fû5IZq#٧)=!"+r=.'(Fq/sq;Q{[O:~P5IjgM,kJ<.AmGݱm '+"[ՋU_$PjR5:f2Ѳl"kY빋wO~>C0VS(b 7f`67G%pmZVfRhJvᔲTv(Sa?jQ;֧TİdQD.8½k}`漟U4WW)%e78&e4Ge4wrte*4T1R˝x|w'g޲&;gzlGO{x-[ qfoY&훕J-pyBF6I"+UR ._LŀJ/(lTNH!";Hf ):<9FiW??L`~znG9?MW\Q8mްEwdBqzuy$lG H؄AQZ55 @Vb ]Z'Pm48:5W=w15UL)ܺN!B!DHvb)VSuZ=DD0P HKiN=iW]ǦvQ;^r`ɅqMIވԒHn'[KgU8^v)){&Ңmׯ= 'jE͊!:Έ.:S3/uJtnŕ.q]\2&^⌱8m|.B!ЌKS z{?pRS+ļ$JDzYBD^s KP*゙iVUHG+,S09JC=x" X^?Ǫ(ٸ4Wr!"O-7u?/ֶ L"bM8A Bo5ҵ$k|Zh!B $fN+ m!BlHmVTTЇ:B!1+UV=t!B":Cd6meZB!Dw^@H !B<@1xr*hJB!x6 /ԅaT Gg퇰"$ qlA S ݸSxr5[}|ޯ 5~So8-^ݼAy_oXh4hpbiyMʢK3(UTʷ!zjrߵܒ"xJ<Λ\qs 5By<H7xxmt@ =3ݯ].%nH c^4,AN I~ pvCӊU5oKWU[ \`TdPծT]iky&Ǘé!uShlyˏHd$Ǧ5=? Q6c0Ѡ?z"3ׄ:h4^x)gqFl2&Oͣ 4迾xk4h+来{PwʓiO:zߥWK4ZL=ˀp$>?o=ޱg^M)\6ѠIwXɄhh;M1O>X//{l_6g`h@5yURNMfެ :4H"ogaݼnH?,gy gȼhpn(?cIKThx֠è8z(%7U5h^ZZ`NO/@2W\n˘e P ŵ]5rN+S+X!+ ^wwAm4 C29հl <*v '{mfC=wD)YQS)ɵݛIDATwz\ӹ]ycpY ']=>4E4.[Fb䃣>6hV5z7oȲ|˜vY_W¸tpUG7ҭ'#3;2p2}|L-ivCŢ#ANK_OpFubjWin #trNȼ*p>Kz˩AʷߍESsb0@Nubݕ ~ilZHr: '#eHTDҙyt0ʎek\I HS7aA~8۬3/|hMCDXT^,_,WhاzHc7o%2RVz}bo?"H9Pk ]{*SZk7W(x}mwmjЏ_MbuYzOզl.YmLV OFoVGƻA߁xؽz 5h*=9>F-8F6{xQ%\H.6-=sӺJ4 u0~e jϖ$8Pc2eOƔ~kBy4N"*b5Tv ݱ8̮|Vcܦ|vc<lpؑ}t?aYti0rAo/C@zS6dĬ/=,MC[z2bHC\kwTiY̝ u%,oG}ZYciZ\ ,lD캝ÖKWObc~+G8t/wE#>ػTڋߪ,/O_Uxapti`Jיmwo5¨os[ga gH:DPћ|}Z0(-3zӨƒ.,ٛd ҈3!mkѠq3f6ev0Ќ  YB4F|w-Vu#$o~|*Oaŧ=fmt ? $+LƟXa˥לf?cT#iK|0mJW-9/ٱc6YP|~ͦ*e<>,iA!L >L<ˆUU'3jM_w_^^L>jDJZ\ @~/2=>b⳹WA{slWtLzd^+%c]=^xpeMuF ͂;-8g3+ˏFnQg} }nN] d^EV3t7}.6Bjˁ|u.NcC4;&Q={ {LIῩ;5_ב3Q7yay4%sR *7_?ni7Duɐ\\sJ`-Urvr#k䐺uJt}2gQS='ZsV.LjC40VV>MpŇ1o }qFE_;T9RtI%b(!I*{JS=*ܻ.o:m S6b._u'sƇ>FNG䃿2웵+iC0s~xPA|iMV#Xmf3t\gn;SRb5Vhc3@fӟ{28lntdcdd_JՃקbL$@^TrϴRtZDÿ(~n#yU!9ĺ_è4ՠrpEqbc&̂G<BJoiTM5)~JqړiŲi |01] SPggstwh;m~Sfxo5f4?MEd`_>\8G{S5s3(߶^s7((ɎRm5:Rtٜyly0wG923mܙ=&\ 9Ҟxp~vS9z] *LM$: پG3ns.܈oilҭ eYJh<2vgKj_oHYxS%!1aʳ(ߎ`B▿+s;)ث'8m 71iBU[l0Zژ\J}tv29[8Lo(y+h ֌Ex'q@6} 5"W`֋Ĥqm?8%ڗ_Go~ŧ/'T"& X+YwA߅ mʶ|XT=[5 \8_!&>ǨW}땵ԈۋO3X>E][#^h6njPnHi3w+qT,jub܂_9qc~\УSqٕ|o>-Ci48X;6Lo~Rٕϸ}2qnN=㸺l07PXp(吹t͝|߷ÏDq%|c Fٰ\ـVx#T ̷}Yr8~ODϦ|)gv~*ITj 7^ɢwXܕ,23S֋r_gOMiMj2j/Z:?>}vx~GMXpwy3ח'H>|*\a{%l_ߡqEo|3;(,_2Ϙh4 4;k=]8=U*a҉ʼb;a0Q'O(T85`D\>6Q(p7[gR73^OW|97~T/p>ZE_eøTPFCa;lL%-_r?9aPRk{3BkXip}+[nM6MjOMe#ݹQ9bL-Gn K!{xו~Q =&gA0m9SK踺͗dѩxZc"]|ZA2?w^\usCo0o%Y81:fr" Ϭ|Lޯ "| [jl]Z '~࣯h< R WnL^ )hje;"޻=L]9J>BϨ|Bg^]1Usך$[y{TYӣ-jO{)2݊G]BQLL\MPB|r=)֭[_}mB!KIIqkΤf!B|@R!BB!"O$B!y"B!ȑvv}B!"GZ탷?LJ )B!*@R!Bdav%B!y"B!ȖV} B!B!"GYV"1B!x2|HZ$B!DH )B!DI!B'H !B<}B!KCiB!y"B! $B!DH )B!DI!B'H !B<ر~ųNB!(bqYIENDB`diff-hl-1.8.8/screenshot-dired.png0000644000175000017500000016037313767516414016673 0ustar dogslegdogslegPNG  IHDR HsBIT|dtEXtSoftwaregnome-screenshot> IDATxwx].ɥW&&7EEQEP.6DDtTDPz5 -znG $Kyy`owf33=%.椰X Ki$I$I$)P^WKgڰڬs\<@^UQWuZϞX a_T6ȦJy:RŲy>VPÁ@ٷwd%]VZa$I$IϦՋQ}퍲cq8]x%I$I$m Ct!\$I$I$f٢sJ@@u:BހQA(hZtZ"םI$I$U5Af#v;vsF DHZP< (Ϡ*xlf1cp,^x轼:|y(΁d¡jŁdĉO7*N͞,VaCSvy;.vgI$IHǏFvJG 1Fia5IŒtT7 (1=1Sv!GB酇݆j!;#ԋX:r CJNGY9Gv$+OX`߲N?9gؽr'O ?1ճطb0yy^O"'wZ}$I$I*36 qxVPU/ňHn/tz/CEdֹZWjV&hZv1VV%J$9?^_NT{O&P%g8t7}r[9R/fib{i8BqWrH$I$]IսIAv5o-/h^itS1Eb5 @b.KrOr!8*V/O̞=6sԘMxxjK#n2l' . =|LNQ "o ˼7Ww/~4r]cz:ż7p^aoߗwˉbf)%I$I*5BKఁFC/;r_& $!-;qWPUcՌXĜC՚upmA,n@\Qtحql^>Ŧi+WNϿlsZH6WÞɖ^4 E,>G?,ɜ8oLX/wҒ$I$I H U2iI:QZa~:EG-6~{SӎȝLFs&٬=~~^xxjު+NrژQ|I$It-ITvK* 8k"Qxێkػ*j` Fa1! !bp:U@( c{؁cv&{׌n˽tD1_#t:H,,Sͽ\-??%m/.RRSW/DqJ$I$U3 bNBDZcaޕ Bz˺AU"_P:=fS6 TՉѐF;˙GUUQ@*)t SUHLuBgap96n:JT;JIwQ_ݻ9OMzY%(`bih5#K$ItIgH$EJEAeo.D83HGU3^d} " >>dnG侴ZBHZ-1!`wPъ~E:eZ# V c+wq9GYŒ.f9شtl&o $I$rSQ{5f'Ȗ#'3w4T_0laZiɉx vEQhh4_;̝QjuX-f6+!!%3h4ʕ$Ia|>GXf.Qw0u,R5TmEsʻ&A:ZK$I$I).-gɎ;LP2QMY%#aG6Y^Nv&!Lz*ԼDFCVEC6\t<==Q9- n}|SɽLw9+_H K͸cۦ}N8 R$I[N_DMTZB}1a"vPUhP4:OoIjM@DM|BR⪟?NxP*Nq7{fbpU*ld:'yIw4s6r$-I$I26Lb@zxNf/ƠNCkLVD4j愆W'(QA!dg '&aaQk)SY1xpec[$I$I*L3/Hkdt4\*ywRS#m| > 1dc6#TE?|r/!2s+?TRI$I$Iq9ۭ(CP(!k]<$Нt@ͻfYHI$I3 M.ē$I$Ik$%I$I$ *8#)I$I$U5$I$Io:jQW)$I$In ٥^4!I$I$I%II$I$\@R$I$I*4d: /y `|o0{΋1r<[Y?o1}N#޼5R9? 4x#rT2k~ofT[Zcp#*%>v9wfNJݜ <;0^l$~Ǥ?Wb2v3zO=Nv~}fisF}=2IFJٲ;C$-'/J}[VJ|qH앉8Hd7>%In iyӬU_]{g 95KHa F?cRV^_8Yݜ7Ȯw^ MwΫmC5eX|jw|vN̈́F ɞǦqWrḑu1 c>Gy!bY4.O3}dO_ɂjߢYAd-_#=d_ϑgne0Sw R>`3?jOU C ٷi ͑8:v KnOuE[W-E"{GgTϐYܾEڌ[_1oEtYnķB\Ͻ8{_~v,:~|>t귫Ҳ S狛f|t<d3Ef/SOT}U u9wWa!ksWXb"+'/lݎole|U !uwOϺ:!9~W2jN퍯K8-? rOm=z3mH:0#Lo`D8MyBٷT,8{٣՜gMwɽ=1e Jjp3~%}݅=: g&&6%I/mgwX|F'ÕcXֳ@7Cub5Œ?]} FG5`{j*suZrE 7ˋ%@T( X܊~,M%~@KxcܺnO33MJR+%կh| xS=, on&Y/,dyB"FIVn|6<ڨv^+9~fPz| nI W|Q$If$9@fQ*默ɛavLQ/~X\%MN k >zNzh]ϋFM{]_ڪn@NQz W=_N&p޾eN/Q$7ʸu׉QNfCz_>}@y1W+ f|4 /4Yz|\>ZOהzOߠA?-\[ks&BA0J0o˶=xhS<|ЧLޮP0Ubь?o{i? ݋RZlnYIH|?4mus 7/}=? 2n<s?wS(=7lPl#IGslKϯaONKm IA)l4!G:hǴ{B=y=8vŧ]d$I.m.KVNZLB0n^>LdvgouF.&mdeE#SOMd|!(a$ITJyҤFVNfPznw(o;[2Q_35H{T$ITJ-I$I$Ks&.gPU-rFI嫬S Po܄_$fQI.Ѽ~Zbq@ر\Y<8U|_u-]|P4 FQjns{ŹtP t ZN 1}$^ CSّ&<ό6 J͍oË:ǵK_5};_ iIxT̯?}$ֽ{7 śڽ^si2C E#x45m$U@Ҟv2=hi´$Qj^˧PJ˿7rY6գîtG&D@3?lKPיx:!f18e&4n4;Mf1uGb=/S_ePgy~|7I===HAs9\ԯoW!F&8hT3k,Ȍ]<|ϧ.n$t*UQiWΌN!sT8h!讏owg[;E!]D"UV/煭pADcG] 'RܦEpmxU!#y"\[.nя HN*E |!^L.>|_SqEK{ͮg;!>n|Yl/*@|KI,{vQ Ä⢣/)|B8/x5?"GCiaw#>BXęUZE=@ѰKbiUr.RE' ?tҋD{!Ba>FTT>CDK%սEx=JP,pߵ΍yj.N+oؓn#/X*o*tSb-Z1_>Oc^/o$@T bTI_S\:g1K(MϏ.߽}XiEݷ K>iXL6q&~5i$ݴ\\:[Tʌ.Y[9 (^;`)vcd54DV#C"m|o:gHi, gb8m٠Xv2.@^^߀/faɊg7C0sx=;L1mo0g`?&3EC{1~m=>ڙ@ڱ9"=g/?ܰ7ؒh>vg ?`e?2bɌcѐ\'+FҶߧ$5})F2O+ 0*ܾ\ϧh^>83wȘ[OpƳxG\x`*cz0rp2ڈwGF=LyZ??WZl41-RYV2Zwk268Q3JdAן׶HUf"tx{2 IDAT^㯞c9WPRBxMs{ë0zCX ⼔0m O>A޷'S)ISeHg!JvRdt27`HM[) w`VcA!k6#im&M}bOYI>shs֣⃆:Qh":ω/8Q"œ bVf$}~jnsD{$ W|/f@4z\j;!>i'KAH*|B>"B<ڋB8:8T)+W3>#(ڸ*2()bɟD("=(("~n_ !b£٧͝ )}䞚Hy?.g- BTR}WzQ(~{KwM{RL"1[C":xY+~ )}8P?b˳B_[>ZV4XUܲW ;ԯQ$uHbK:_>G1ԤI8$Mĝ9a9__dmo)J2f$=i&vutM`㾌a'*83c8_ogBuFvAvR6$BkhU.oJpڝ.o_ٲcӖl׌`msu}_>Pg3bc4{f( e/Oĭwҿg;G ⎐ßgd;1b(NGK~q&3Nj;(w2L@N\ޫ%}ϼJPuA7&XC*Eu^ŷW ~Z3ifo:N;5~>}ͤ'ħ v8kL!vRKϲ>,+>%I/~0ǎV#>s26? tIPa8z8MX p#_YQ;-zL9ͦ4!Řy=уԦ/4t kE낄T@28`>wZӺGV Pڍm_lvغGԑq/"2ػJDsrr6C:?֞skJoB.auud^oç"֝?JLϿ_3Y}+Gux?ˑ0P"D4(Tŧ<.b f c,}O^.뷤ӀQoԹ%.gmL6X2ݘoMpd2fI;g[OG=9aUhD5DРIѠ)ߕW5ĻCymAV2bw 8bZ0oϪ,2b0$]W5/˰WsS ` 21|#`PPU:-y<3nYsWrL*.Q3i;om?NqS /J圠[Ǘό)L]-TSPRt3}ˆϘ Y8~utaCu/oIjfj1S9n2jc>뷤#w#q8n:GZf<G[q&̈v}yuns/eYBF%h$iM%*N/~FtP|kޟiuMzgeklJ:*N/|Jt1]xm?ߞR{gmeHYЉ]˶/:x孑tf#/k7IbgCEHܼ"EAu;X] ]dw1wEk]#Yd YDyZvJ]#}Ve5[9qG hyKG 1+rY(Co"]_~E]iqw !D:1Q} >4]1w$i+6gZ,fSZ xzKNُ5"}{h8]x€N4[K-5}U:SŖۃY#/|%!p$߻[Ak5dyhqknntCR_)IMpBYtx6=P;''񗷳dZW$I$ݰK}ˮ/IoR[ދcE"%I$IT'I.eo"OC;n )I$Iȿ_& ^rH$I FHJ$I$I"$I$IRhn`K$I$I76$I$II$%I$IrII$I$\@R$L\ΠZBzF$(9i/CxGAk}Ո 6(tYBhGQP !纖f2C E#x4 ~n%g޽~ M^/9{7L UUqs$@?B8Ld TnjO;M~7./MWYY-"=|SQot[v5hLd.aptS9qM\gc9p%/A=Y_[ ݄'gnʓl5״E2vٷfzG ;pݬj:f?~'?gQn4;zv'K te30!'aZ{g9#6_SsAsJ@?z]u=w{2Q׈VyBS=>oꓛ1V8:QcD ;NrsP" ,oAe-cSqpn=T?y.O3E(EAх7->o;[隶lY;w%L'X@ ɸidnt̜puӋ@Nκ9tM\gDfLđk.E OF1[MB"o7Lku\I>ir?w;}N$SnHb5!>ϧX2X4ZgFCMήD6[W֒ƾ0<"m?)NcDR˳qSe<^ܔDډE RսSէuQϲ*g!DK Ύ8Y13,eRQy@fqhcZd;XOEW3>_ng=ANR6U_T0.j™X }$B 6@5` £̓h_Y'Obà 04X82w&Mfdc7+! Kd|qo+#P|&y~=w=OeVD~< BUq ۈmc_8litbZX8lO9X4ƴ!P ht+yXjU]/dMYL|Uf$NՒQ"[y04>nBu~k$I*5mz:W {Qe /j iمl>y{07?gn֑KߣI,'H;~ts#»8Y6hEwݎϵC[ Y֒BlIǹ@ bIpH< -U=]ZZj/v <*+s?S} +zӟ箆AGv^/wg2Mx}~Q(Nld Rh MyhCyEY1 P4(7Xo/={;] Є;fk9j!txyT@һ4SݾmҮ峬OWuV:W ~Z3ifo:N;5~>}ͤ'լb]>'ITYn,4 RnRܵN ꠽'qC#in!6͎.XVAEVi6]Sa@@#>s26xa:$0=ʄA9ٷ2d%Ʃ{F*@((}Xal~( MŤ3v3vf%ɋc68Op`EFޗ?sYVN.əV.6Vf򑾂*UCf羣 ԀG@o:fݧ3P&!7HR[;f/CEؓ3;st G-`Խ3y\>A s,&;]>c4,'Xx~Q{3#s &yxn 橧Gg^o Qy_~ F3s0n NԿ鵽߼aoJ }0O2KME$k(H˸OSE;qz]xԣubsعk\!kk2l9nAӚ?3]_^]+Ƌ{Y8y't3,C⸮,f}]y1u9v08t O3jy)sn*a$IHzT} Oiҵ!K=ܽѦ4p8c¯m$ڠ&{MHXWA"]sUyn5nň{.@u/MM]hs~G5}A4w{|JB o>CՓg€92d> x_oZc/} l<1 0OL 2׆t`P6LA5_M?oLw남yhw.zT3(1^:BM}]WhE_fǿf=B Pf$m꼱 ۗѵQG"ص]ybx-֓~^V:_+z \%lZ#%_fYn|b|e_UssnKsnP$bߗ (u'??J*t]vB8y5 /sf]*iIB9In٥ydFR%#璉ٽәvT{6 ڗWaWKd$zt](wgX0zzz=0ԁ D6J%$IP~[2Gt%I$IB\]W^ږ$I$IK\$I$I.'g$%I$IrII$I$\@R$I$I*9$I$IE$%I$Irb =ף,$IM̴u4ULgE$o_Jf(J m2$/w4Vr7|x) &MeG~$ֽ{7 śڽ^s3g2dx^tkpF7^KEA)rj w(-Wg98 9n$^`vÛq9qbd]J~O*(JM^Shf3U/ cSٜٔ TP@N ~t?I 0e3P=:U=4v]uCxc.?q"hF#B>Zl1 8=]Vn7?7oʶ4bc>s_ɴ}Ju1aa>%)ޫ{1ΡOG뢞eUBُ#q&bdgY1n&dׁ>ƴHe7[/ѩ|w&ßj$96.no<9=U}k=Z!,]RqH`٨' ?OK^r_}} gr0o6 ^2zF{:Ϝ!Y(1G'.bRC{βT3x-IK3>Sn]w;t^JoW ')G*GQ< ovK2o7?I^ >5YiKbz|3csg?EU]A $ͻ_T ^_h1jF3G՟<#AgS{[h:Xt+QpvxV#Q)1X_ME׸>wspda40uAd0& K<g)<<?i*|2$6: lL#sgiF6vs_@#[% Eh|6)tgNif~4.EV?B^|N , ]|r[>>5WVANT, Ӊjbt:Z/C`L;E*ބVw%쑸P<[b6q!=m됿--qfY*MqH*ED vhƩYۿ;9ƖoG ʚ"&Ŋ;(%2u:a}d~5'3 97sK ƶ#nlVed瀻{Ùi1''Ρ 6pxK"כ.bǕ 4k}ͦ1_ v|;t j  oZc)Dp{a{SeLk|=Uvx?ź"7kha6,m1JVUdqpiVTPV˷Ҿ9/Qkwŕ3񠺕XOOSxH YXJ&Yg54Vdʇ 7pרR26U rWI9noH||ÇQҹ&@۲a :D6+DT5v8Dᔼ)xyV!ӯHxf6,cM뵖;,/]Il:*xUs7qNgDw9 h+wglww#Or~D3oMpw2&Qe.?NM^g ٵ/Jx[i=b[kSo΃D:u8S'~'E肽[cO<]ppu[žȠM al]Ml8M46j&,"csץb̂,=kA -xU\,V]]SFT7>%|=qͯ9؏"zf.*fX ߍba^.[h]ﶕLV,,x[`1搴'u5umN 7?CV&]L=$IGbDJ4mIn\>aݐ Chv͝Y Sh=?O9t:ɩ\$"Pi* TvܘKeSǢ ehu}yQoqfź^ۉ翍Tu%CS@yej[G&9چ[W00m} =ڑ;,3I?D5Z,:_`1ϢY҆=fw; o_g寣]Wpk!:Y9 vZV7u;.mN x!Tp=fdı4vK-iݩGѤJDT(a*(ũWSIZ.oKmÇcP ~,w-iZG'neGy(6GQQM> 8֊5ܬ8\')+pZ&y~R$v=%-coi(xňKVa]m%ޥQI7$=ߖ _㛂PmC qi~l~)㯤9W<#^뉛 HI$I*;n߶a#2")Wp/ F,\ΒSh,5C!)1xDJ$IR9DRBz}q/B<ڹQt{,aϢ?&m .Mv,I$I|-PPS$ITnѶ$B&$It/DR$I$I*HJ$I$Ie"II$I$Ld")I$I$L$%I$I2$I$IT&%իz.$I4ATPspͩUQO7ݾϴ>halȔ 7SMt-?[-#JȻrK G$"{ݗP*گu[˶ZX2w}Ŷ"M_,Սd~TPڬ&j4r|HͿ9A71y}((_žkb4fJD+bJ<%K3 uUPGFUrV$,X, R}ѝa*فt 4w$\5eaIeaz(%I[cBt:QC;ƌDҍ0ܱ,|IƜf~|NKt+!2,>#bVS| z/TSiu$I+q'xOcc# 3q~MJƸΥ۳5X/ffu֫-ǿ㮊Nߝ婂XcD'D w"v5\5*[Bu$I'~[>ONj//`-{LɳDCqlt{Q"joÚ~[D0B7H”8]Dh+ue?c8,~g0 -(5'2tBX-!E!}L{A*v,F'ljoUPؚNqbrMݣ1M597f8ih+"?, DDX}Q^ o^epnq웢_~1SSy"^ bHd6"D.1,X ;Ew`G G%\D[}׋BQa'cT ؀˷\Z _k{)77+w̙ŔO^RxRUwP/DiubǦ*ycG/;\7ֶ[aCx+揎F*.ϒ*6GrrBmr_F¹3_kω[z<%Izrrrm<,L`Ϋ/e01dei'p#>.9sK5;xm-;=~|`<'og2"0YW̘w ƻ}bda+.ٙwqz)h {}I.mmݧ014[i›Cp܏h{}G1)+^y/V]f%Qq/KF3bc_@yt4Ƒy}m6Zk&GdnnW's8VT]Y^C bs8Fϑ/͸Ӵytv}ͼxė$Q`I>FT.i.c|`[h.dG焽?.> [8@_!D&ɻ_56 pn)d gc8ts@\4副~sq|14͇Я/!y/g7'L3'eYz2=nY7 Ph[^#ЯΖ 8>6 ao1$l[Ҿj:t=ǖ0zIBP7ݜӶ}(o,6`﶐v>/ 6YGZ:_ݶjd1͘OPZ$FLf3#fB{≬VF{?d rv}Ũ5;n-<= 1> *rȷ8ᨁk g@SVgЯi2Hk-Fq/*]OoȊxVjD7O]Oә7%ݩB?̞3yVgUv&|{Ix:yQxT;qTRL"ɔsrXΥm­Z#ZRYة ^ˑpל*o4_+v"g_ _EULhP{fH >RvxvS bQʱ#5oLs#xA8 ~p˹m+oN!_ٿH]vxk |wiX}\ޑϲS+yn@sSԴIa43:F=fOlf ffRTR1enf ~D&Zؗjv% Wn.NS3ey2.Qqj਺Rg5^ ۪n&Y6 L肿řj *6碻"rK_VkxNڗq+b/ >V\q$=Il+Ѵ'qwCZ:$fڅ6wbg}7LI:\ < r,kuђSH2E:( U$NvYW*;hn̵ϋcن2q:><ݨ78]}Kb]ďEg:܎ )Vm2_WmÌ+t6ach s?WRϰh`8~n>\2.%AŇL`d/ؕkeE[sCԆDԭGxT9v6.OhS Z  ,FC.zuj`E*BR.F&w^m=Yf~~j7^y} 2]P2ֿxDMu4՗_zĿ^]-F^ʰ +o/I.JJi4~#Bbx) *Ѽ!ƣ׉Fo/j׈&99څ/<˥<$=ڔߖ _㛂PmC qi~l~)㯤9WH$I􏑛{6zDF$J.pe$1ۈŘKY{ =$I$#I fŽCkFIﱄ=6$I$ -=uO|$I$"G$%I$I2dJp}U$I$I%rDR$I$I*HJ$I$Ie"II$I$Ld")I$I$L$%I$I2$I=9 Jcn9u*j89'1BR_rJڞ7jVBݕe$2|L}{t_BQ0jbZ:Vg|l.DImh|q {,fs2?E*(mV wχ:#O gȗxas46}< HPr⃅rclŮ"z}, fsΰu@:];FeͲ\yB=dH*2|LB'*W}h՘H9Q~`>q*GOѩ4:ڠMY7,>#bVS{ޠGGa z)W ĵW"ڸḪt_1sb wߘNzeq]/81g}@RNF]?|A %wZ,Od֟OLqj{"J {G/jWUr*)XR)/I}y"''环E H!4~Ď|!LE[W3wv 0 ݂b]q"C'%y\җ=DanQb>}r }XvKQ E^^)SZD ӵn~Yx">9V SEb]{5"BK pؓ"V[&?KcE0⵭7S'&7 AD]A,-[?t73!hJ4vy!-y"vF/V_ԯBWdxnq웢_~1SSy"^ bHd6"D.1,X ;uzN8D+j|tTɘ0UDh+A;UǷ\Z _k{)77ĆޞDR/Rsn1uEןT QxZ|]رiJd;G׍Vw=E=|DK"ﳤ\*)-Yd^">RTwS ۊw~IgbA'G|@cYQ(+b侢sgĿ֞7 "l+Z9^;w*#I>ko牿׈das^}.Y!,K?ATqɘɘX.f_ ݙkkUݡESX &=y;ɺbƜ|M0UOGrbr̻[8W=>}WMPv7;b1zg@%4T h|s ]. 7[`n Ίw}Fqȫ#RD>I.mMXƳ|t !YGo?߇`X8k N~OǨfMaHc&IId#3g/NM@dGkV0&M&5zء({7a3fk# Zxs`xѶ|H:f{+^tz_[sI*"5_`ihFl ᫽8982o cFQӤxWT% IDAT\T׍d.NJ+=sA|}/)GR{(e:ƌCL5N )џ"88i"b}<D#_>Iqi7y=:2x |e~+oRS$I [8@_!D&ɻ_56 pn)d gc8ts@\4副~sq|14͇Я/!y/g7']4;0'eYz2=nY7 Ph[^#ЯΖ 8>6 ao1$Aήƞu]?ۇb#n j'[.<`ЛmA9|>ٌzh%ld6c,0`(0b6(h)*hZl ~|c*1{E)SI!| q t:,jVgЯi2 fvyb(h=j仿b*]OoȊxVjD7Ư,]Y*?7잞μQ-Nрd+a0'+^avԤKPjV7#="ꃒwLN5tn v+⸞ٶ#o|I$LI.2+%Nv!0 /jhIe1`.O{qjK,GJ±^s/mX$d:F6~<}})hC#pt+O|W?3mC1ɒ#d'l`4"gHa).IHۍNq $RORG񜲑6afK4֋Q,L+ObO;s}n?aA :6-c;3g30*ЎTꜯx`6^]3S`y+HF\-OZ0x)%qU'CHq,Y=~d &(>\ C._y}MiHśg^ QZ3vhH/ I1]<I+.9OyzO`Ύ'.N$վ6NM˽1ꬵw=SՖ/Iҝm1 uϳ%f6bgz^젭7܁R>Oo'fUcOhlxbO˩(jRhB]/W^Gu['0/+֯&dr&!BwciPvՖ6͊ܶpW}o83>-<]'Vo6YjPD׏ۡsHPH(NxR./K4˘^Wvx?ź"_kha6,u1ʽ'z\96oI:]Rf K<%/};ԠuMl *".EJ>CkYHijݵtxB~⭧p+]D Ԛpbhe_2$C<$.a?жl@@X{.fe' ?ѹ>U%6!Q8%b;aUy+͡, ˜Eo~EhǗ$6KO Cmw<Ϫ83ɋ3;ƌb ٧Y9vXݷ&vT; `~nO==9'ѩ}z!] o+<ʹQlk0pmjۻ`jִA{뭏\\ޑϲS+yn@sSԴIa43ǢY[¢ل3Ud`TLYm7eeN]QXRdm7L`?ފT1ծ/ELz {ig;8_jǦ ǿi[_uY-s+SAXTa[|9cV}Xg5rgU&P>ȀOPxyjukſ}"cWZjCmeIx4IJ4mIn\>aݐ Chv͝Y Sh=?O9thƩ\$"Pi*'wB+47BlC8Z{Fn~.Yvo㿢3Up nЅj+u6~~Vѫ ca y`_gCB0l1j3yh6fI%ߜzeѩ x:@][_+8"= [qnsm//\ IЦ1#&X ]nIN<&'*ԥB SJ]RNZf1mWX? gT6T0C Q|:+Mm{Koߝγ 6Տ4&r^}ZXaV5_]tHK!n8W *L95_SPHjO=Ühfh]ϳ\S嗱$Bm<Ѳ};UŇetn\x;DA*oJ+iՅ!l6zf6G$I$Inno۰+al#c.ɇ~g)xz`JVL"%I$d")x=Ìo㾸!vhܨ}:=gQwFS6]n`|&;$IF>ږAB(()I$I*7h[n!HI$Il._$I$I#$I$IRDR$I$I*HJ$I$Ie"II$I$Ld")I$I$md^è$I#Ms 2ws*zUq>M'r3O8>ZE+b%2%0c 䔴=w=]o_y2ҭWJ+LCHHH>&D>=/y(U_py1-3>}YlREQh ?ilyB]őwڶd~TPڬ&j!p[s}i߁͓4EAdY\O3mWĔxT ww+r]q.^>lS_*‚blpN8Ewg18ߑ4rUTn/#h %ʪ;oA$=d"&9NT1#t?26Ǜ֥]g$afW:NگI\I׹t{v% lRs{1ߩnQ~`>q*GOѩ4:$[v ec<ׂ~oI`V'l2A}|0 nٔ[YhR>S4im</n`A0%aŲE W8ik"ih+"?TEʒ'bgaEz-D{EfùMDZo~}7LkO]{oW7_E;!CMK *Ŏ|US K$ G'#֯!~WYZOyYĦ;%G sn1uEןT QxZ|]رiJd;G׍Vw=E=|DK"ﳤ\*)]4]&Mm k<#(PSV◷$Qso牿׈das^}.Y!,K?ATqɘɘX.f_ ݙkkUݡESX &=y;ɺbƜ|M0UO#3[!'&wμ5Ky5@K؃{ew x̸#;{TBcNè̇11Х⫰?yU&ݟ!q'k:8+_eNe׉yrpdhٚHC~lmD3+;LXƳ|t !YGo?߇`X8k N~OǨfMaHc&IId3ep%t)ߟ5htƤ4ä"cǶ6s F~SVW߭x5h[Rtכ&r1]^;z/.KF3bc_@yt4Ƒy}m6i&GdnnW's8VT]Y^C {1M=G|6Nn127ztdB[e%$IߘJvr m^bQTt~߮ϧŷZdE<+5O㧮sՒ~ Hfϙ-<7"NlEʧڀ~Z~iS{\6ŨȵQL+lèK\j]emـ]DO"s |u;JdmBpJ^w<¼W$<3CY1&ϋ8,/]Il:*xUs7qNgDw9 h+wglww#Or~D3oMpw2&QscG'n1@G/c'`i=b[kSo8wH:)[ϓqa?uV_'ػ`jִA{Ӱ߹>#e0gW)5\#*2姨i®iXg0uW'E Z3E3y K)gu27`u?suOrOSBv-K5VD ^+x7~WW~ߜ7/Ɍo~͙~i}fmN 7?CV&]L]t߂Lpbs]Nl~VkxNڗq+b/ >V\qK=?Ŀ#IĈ$hܸؓ|ZUѻ!-H3FB;ó$zesށ=4"e>qjIH'E!|Z.Je͍P6>yqz,:P8Vާ˼oiV5qLUg;\1ta< t_櫶pj˜mun#?z mz]tL,u/msav@&uV:%~2ÿ`Wq mEzQzQR^^>M'kcF&/LKc'q ݒ֝xM4NT KŚyh6fI%ߜ'ze% 2]Yw޾;z7_6iC%'m8LhňKVa]m%ޥQIߚ#bDH /\%7XptD7kD—RYuV◷$Bm<;)8Fz8t{ݰ&>hQnA;Jsuac! =ﵞ߀$IrͽmV="#}% 8~2mb%,=VR =~WߊI$I$L$%g1m"O',cxz*݆ odǒ$IG?@_=%I$I&mK-d)I$I 3Np}U$I$I%rDR$I$I*HJ$I$Ie"II$I$Ld")I$I$L$%I$I2$I=9 Jcn9u*j89'1BR_rJڞ7jVB]Y1?I*H>&D>=/y(U_py1-3>l"u$6 AQP4>8=Y,Oފb[NgYM=n@oM[ޯgȗxas"ilyB]őwW}],6(\r{ RBlΰu@:];FeͲ\yB=twq?I*H>&IGN>jH$h}(?}0ދ8'TlIbms2 _|1:߳Ek>J0,>#bVS*0 nٔ++km\`$afW:NگI\I׹t{voL`V'l2# ?殺6;w 2O`"D'D w"v5\5*[Buzܱ%I~[>O gH0b+DԴć59V 鼘AU"=w\ȳ%O%"Z~S,s$~קxsT!DowQ]mIt jHM @@R"bAnA+"4!"BO$'l9 1]@̝3s=̜_-MU62fmَwq5o>꫽ꐝ#簼w)O$e;,vy׽b[IšZT-BzJI'kM)Si,> o(_(>Ԑ7ErO'|6VHjA  ^̱}O92H\ϖ Z!Y,WnbHgn'+<,)z%ʻ]u9U.wڞĵ$7_uu)Վ}ͱ}6u,azKrE_GU$=Bq/`?\t]8f|өlLYDyo:-i'{,Nn$VWڮ? 0Dc~I9H+3;WåVAn7'rb1uۏ1y.m=J!ksCѮAUZX95362Lj/ɜ\=ǰ&,f;W{tj!33pH8vlL`n$z\ZxNDZB{x( dx'kVi[a":54DG||TՉbPl3Sp,B,)<} poӂw;'[0A&ή3$g4*$ِ՞,l>F~kwjJ Ws(5xs^my&7k+HTǯMlZY?QC;csb>ErވɏZݼD.J*F"[Kdz{HNFb09YZrr_8]?L;X'.r.J,Iǘ,\ M;뒷=f?UxmWnV#>H'03dvܞ]|$O'pgIFU-rIAOT͈,y+ +@G9B;B&Neklu5BT. j$b<'IYk,Bיyi@3b)ˬ~:xiaohWbG۝c?ofP% Պ9DŽ)njj!צE_ԑՠnFfqvSmzO BjmǞNj]I)l+nZwzT6G;f/X63/X_27vO:{ >[MϦBxe|4KSĔ g0wL*{xQ4Nf?K|Mu %N-*ugx5Bd%eRяj|/U-W}LX{Yh]rj79KV&~vuqa uyN\I";H3B3NW:>줧zX5} kCUc [Єr|S4VT*|ḚNry 8{uT 䢣r1F锕9AWΗH޾ Sƺg;gu ̶ -̮6YnXᬇ\C.W@<;Θ1^D;UC(/s$Bq42'~vbY惌xS7Cϳ\~&674D閶N֠z/~@05OfBX>>8GB^6\ YYO~X~ێ O~CN+ O]IoG=Qf*f#f}p5riۮTecb?bJ\N͟įi,^AىFa:U.zjxƙxÝ-hia9ϼ x8Blj?4 .*n0~t^5YNhlw6|GȴUa I/ܰ΀.~ i_W:'';rxVے΋.,kݩҐJ(u2Z2?ǶJ9w| `H~46=xn k(Ǭ Yksa7ԯubFTZSA^Th1_iq/1w5n4=Bx&jpo[ӇP}ՓT+W:O~/𐧣#κt74}o#|T-Sn|i.gmBqYtT7/_uG`kw}- 9 l|w`y!Y3|pjfw@*:uI;,u+"xO"v~Τ3pWzﶏ|K$rqxFV)'RK Žr$h|y൰7!=c=C'}QZ SHK ŽVD4hS BPP\r" BN8QMM6#Q( BP;BP( T(GRP( BQ*#P( B(ʑT( BP H* BP(J5dxx5BP(ǰ}045{t߭ +]Yy/G%c/_mNF7lb1(x47jFwn36~Nj4h4yz*l.ϣЃ65b)Ѯ%_a#ekFƹ2M{z8bfaٸޗ1qX]%c2$iZ^`y))ɒLAl ,hU6Qw%tA,2rݩZSΐ|. Y\sDMk߳#3Nͣ<ϲC)D F/-;v_b|dBs~#lYLH')԰"K{-Źw,MR>G,o=&%n싋/5բr{]Pl ▰v\ٳg5 @ KkYZ' .DX/A|l,șa8XeX̐0]Pz_oA;"1"|JK/1 9a0LUǾMxJFSﳲjyH9ߞx"9v4w.R/j6XEĖuT(~N[j}Aݛ&V1'AT6g՟S2N)Y6&簼w)O$e;&Ö%_}eݒftn|3ewF~kwjJ Ws("vMi{i,OFx/ʰ:Q j?ms*Ξ%p#N`iAV޻˓-Πmds6& ]@0NEʬY2zzLeDCk|[l hLdϷY9z}:R4Z¤K)R;FL~E'rQR֫6rirH]:ecGrg4-4gIZ2&Pȡ;~ :̌!%;o1g&-~ !.qwʓ>QYg3}jKJÊxQЎg[nMu4 ;]#zeNApnI9Wz)\MtӖE־綑őu1h[ c@ t8~/ɎG+|$6LFy}Tj:բkf)EG"PwЉLd\vB`H5`Dˬ~:xiaohWbG۝c?ofP%YՊ9DŽ)njj!צE_tRNCBƎIYBw{Po9Lgrk ;f/X63Nl1)NryIALG4,WٚlZ6+S)^z_v\71mE'И :UY͛ x'^t>>eސ:8(kydleg=~?Qw_ZGʕT( 9{Hp^(| ݨzX5} kCUc [Єr|S4VT*|ḚNr"v_ő僨Dޙ(qvuo7Hlw057n>9֡ _͜^#+vkصKN`5GH1eI.}4/L`NF锕P]<]x:_"y6LU" $޲.D3V&;t0LgayNFr Wp]Vgs}D9UC(/s$Bq42'~vbY惌xw#A&n:|t˥lRQ,;~%pr1d]dx>%byl;*?5:g~:Ѓ"TK9jFgNJ^PRS o8ohiz"M2y t+˹IrPw1r8_P(qodmGdK~Gצ1 :QB!e? +lE^א/E/ 2$Ł4bNd׋֤eM8x9iFb(nyV9CR,.U^9v `J?qknc+Qy&N\Q< O`AL|]|7C6n{4Oy8& r<æ4xy{:7al[aTIg%'o`HmY%u#;!ɶYJxiKcd便k^_ș%HJ:DSt4/#ז#? :zA%Amw^y{R4A j_%Iq @EjDUr^X6h(u붖g|-QS W_yoS9ҹx_8:kSVJAM]+} %;瞒o;WW[`FH/G*bY_enZosm$:s-C~,xWHٽKdD*_~ M c͋fm瓟U\%ŮoD~ֶIտ%/ -|3ǯQ-3]jJb)F5*kBULZ>O5yd%_sltkH6$\P(֬]:W*jXٴi[*: y\$'ol9;;/1DP( ſ\VVϑIϙt36s&ʢ_/Qoʔ IDATBP( ʑT}罂ބx;s^$\Į{pWd( B۸+[qpfcBP(*"P( B(z>w? BP(*"P( B(ʑT( BP H* BP(Jr$ BP(B9 BP(RIBE&c5a+2I^Fo6bcj# n]בQ\yzנ_mlG=?]?.:GԞ\苢 H}?EƘ;߇q̈́;mǚȆ'ƍyݫیӿE  ?Mʮ4h).tMzJk헵yHѠqL>;ذlXm6eL#VW}ɘ h8X^JG$S[ ZM]?]?.AE$!@F;UkW>TsOe~9˕ [~H~{a{{9}~xiy4GA6Yv 菛h߽fٱO @ss6g;`B:I1㥆^h)ν`i95dq|4/tc_\|Y뒆bP(KJ Q+r'\^]'Ȓ:Ipy\%˵Ng&&ڊe[ U; &9$S,b.xI1.̗M!$g0vT{d+m;.gesbɿ=sc?&Dޏsti\^lE-,QBn|7M"b:8N /l?dJc SnmJMay/D'Sq%LWIovL-K-a IZˀ%Wf2yyTYu96._~?au~$ T.=KzF,)<} poӂw;'[0A+`lL`Y/d$.ʈǛ z*7oEfstJi&5#>II96.S^-w ፘh5͋ (O䢤Wm* 厑t<*ǎ4hā/Ɂ] 歈4Zr'fHaPrO=0r㎴3cHNf~مGrˬBp(Xb_F.=ZY*ODeu͈,y+ +@G9B;B&Neklu5BT. \و| h])3btS\ϣF$ʎ@zEV溓w~LP,"ݗDqd j9w.-nz]psuFۍ?R@͍dzuB=WDg3W3v-R_넻X<"xgRL.|K?͋+ sZ(gjw$糎sW-(/kz,2\ur]1Lv  Eٹn[[P{gSwdŦSVjCYwtZ|0U`{|Ɗ{Z?qkl[j39z5<\FuYZ'w1c̽Tr2.V>ޞo=e2ka{P8 W-vJ%Z6G#aŐu5N=BԕtaqԓQ2NΡoa.Ox˅ 4u6]oGw ]=hP.9s8q({AIO5ILSvWEå>/k93پ{Kl5:^PrIrPw1r8_௘fS(vHވr pp4&A'j^3>_g=a%㗭hU\wAc>D#8fC̉\zך G/':HY EMw4q;ϊ98g0cH%=Ë?ǎaޡL'X>n?"yhsT=Wb}l%9~F0}$S7'%~ߍ 1[p~.9 97O)gD {"; Cj1VqY-[-n0R%esV'`I}-O^M2~_d ر?\dv3Ů]k٩F Ob; +ġş1;تS'Ja b1yBowj5+X!)t>6-?dDʺ[X^ٖF,$cbBn~ .WKN`𽄣NkҊ)͒<φLAW 2EgK˪Fw[HQ9.HVBmvE)>kd[%RH]}Cmʕ.@#mKK׼ȑ3K^t\ui^F-+F~)u|Kiꜟ]kn^4k;bm*)vW~#] {2e~KM8^,ň,~<qKDyiw@ lHeOHֶfҹڣmfAuUuvݹTs;MBg6d "Wڏ/`&><nJǼ {|\\ }HBj#26#gŵlS -O y38386mhH9A&1. nStl_r&ƖCG'[cFр 5CP8]HZ/fn Q!yQv_ʻ|L6V~}?J/ֳ_s>Gn(X^ۅ+R >h*b/7qS4L,֖E"0~~{kY㣩Gr}I  .uqG\ 7 c8!;"3cr"/n)1E=_Jvc%+) W cZ&x<"ni?;UNƞ۵wfeYY?cC;4y(b'TydG˼?>w }>6k/?y~OYXa;ÛbuJ^\N 'XzOQ= m0Ke>nx֊d`P8s:i[ZFE^ PlוK6N'?uULgDDu7o&>}?Wp;~S~M+ѠPX35Ś/Тr!2nyr :PB%ܸVՉZn4 WKzGj^_9ȚQ"86rدy[}<54^ 3}/~%ye_t w# @n>rCT6,~"h8;s-G "8UAkM`[بw0ܶ'sZpÚ$_ѩ̌!i,d%fbIZ!h4.TI!11vټ9~G9ِ򅦈%/=ʻy8esl(̧1#R,IHrr 'UZ?9}r*=ӕL ĜʅgIj˒ӗ1~֟eƲ`l?ZD0g]):ϏŭYX9E:~=Xz*l>F~kwjJ Ws(1c;ɛQL;)"[KM3.:+ +Ѭg$>d~Wj鋗{kCwtCJv2;cn.L> vL*Ͷ+iш_ &G,;Է38b귈 l#2~U/$ʶ)B]:W222Jʌa DU^zo˅%އbELp{B&4naU/r? yOMqQ7YU%IrLu,< H̯:$#,8lä2UeMJe?ZDD$[v }tߜK~̍ěy?&@J֖ď t̐hͼx͖Zz u><"9bڋKsMDlMq39{S$ :YM ʴ}Hw""6Ɋ }-yiMB2)o tA&6O[)ʴ|3w;-๟Kea{RElVX zn*$ʖM;䚌b4%e<^~J_'ūFMPЏ;Ax̳i'4J(:-rqa7Jdnni0IXs_ߒ ۆ*d2>H'>>&vnj=L}֑~Wʾx=!6@7W⚒^z{"9"30|TW/uޏ{X>ĩO?WZ@ ?s$Yo;њa]Mү-TGv) ڥsD$™z9+E 'TƵE~amjak>a_oЖ׊j^e W RǐjGŶd B źk&k \‡ ςHƽ: *BrQӬ 2F&ȩ탎 0gƫg7[t0&/5_K?e <4Vr-tѠл7䝣uy&Dd)8kMZ|8޷ 6koL[ωd#Tm7[˾Be aÉJu8X/![h7c + պzS^g$Fȹ8G$gZ{c..4s"gpZUqûnRm@n<>|K<QbMTP?o[\AR,d&fkjTU>Hh]F锕9AWΗH޾ Sƺg;g#m\5fLhw`vw`z5] ם:cS:ɸb8GL"T[g@ {{׿qj,e>讁b6bo7-hFdZ3WNڏyvQZ-> blln&Q@#޿N `|ݞi/ѵnh'l'i3zXV#u%mXlj5'B;N^Yrޱ[w)}z_-ks.O״d@ѠJ h.!QG(Lt K;v-; zcl?GvI Ë&qDJpiWMjS4SV۩Ȝ0Yz$, ~@cgS(sO8GdK~Gצ1 :QB!e? +lE^א/E/)+ mL"YH!D MkZ5DI?c(yV9CR,.U^9v `J?qk/hsT=Wb}lߚiMXKhZ/ַMa}ɀ%7g2>R-\_¶&~b6x;Pq3n IDATha mfw|:5D_@hZxE׀s0=ˆ!hs0&blW0l[#s_M1s{X1s!G v;4of\_>x2cXHVY0`I;kBp;rFӚpe~gC頌@kɱ-%ϖU޽\ڱasqܒE6) QQr⮔"1)81C;qc`k&îkm{>>~|/u[ݖbY[c:__̜'E-.R֭SZ._ JXϪtѾC~RYɍcV=,˪rHm5˻FҲҭCZ+yZ,7ZmJ,˙˚d /K2V[3~8m݌};ɒXܖl֖) ,d'juYG^d>oΊɴ.l:}~GyGK5Yߞu*/9cyI=%okpֲC76ZLk-j nS֤M'Z81<x{wQfm?:u~րȂ-58a};}e=<zYomYaX1}5:Vle&zJC +dIV6Y+s1fu{oySM;d7j߰!Y n~结,ƜoEMcY/oYM{fm8prk XHVqVrg_thj^^=6\՜a׹Fc9Vv[lm%IWŽv $+6S?k-?V bPR8&uBu:[JPwsG:m\hƭ_',?0 KB2000Ƴg^pX# #D0B #D0B #D0B #D0B #D0B #D0B #D0B #^D, 6mOm6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6m6xIR@@bccGWA(٪T")޽{ip}اYwYOh#ݮǖjۭtI`[9fL+A# PuzlZCWt&j+jɳX=P󭧾Sfk\TG5[G*:v\zq})G"VԵq+4T\w>򌜣%-o6yxRp== ՉR6+.FlQfs\k}gw~[tm+ݮG{{ńn=1X5$/S.{?jI>Vo\ 'CX-}~=. N;%ɩ0 odHvRI~~]]>߿JN.'yg-?P]f^5q:iF|ʪvzC"*EϏ8\+ejWhߏty>y֕ IFjwgYJ5V&]Vv(uT Uj׽r*S%?ghp:'HG*JO} /$oEFFUj C&ѫш[:M|J%gH#V[Ūf$LD雫]ICT7Ta.Yi:~lATƝ}~U[ vx5eh3yƷ_0ا}׫r3jiwU]=d?نW_:kjƵ(OQ1kWhF@}y-:쐜 |}~T+]crh{X[\{h1hwkݧ^aO岎o՗{)w3״l_Mj>QGLւ5'ԙ9+nh_ǿͧБbOF׾ŋ?Co>M 6)\rIBk>jV-^7RktPj%q+h۫\Vs]q{WqjWSeYim5jo?WӺ_tE`n+; _KGZTM~Y75`Y[ X*X77 ɩMl͊˫\Suoj.vڧ#Rկb)u皱[R7fgFҜ>*kdɲ,_)=)=SE!Usg)Ip7tpv{]WA Ii9|TuurXk)=~}[? +Mwj|>T謹reusjpR[(VAW(*>KC6T)~tcv=,T^5/R5զw{gGs. w<˒!O79џxkZҸSeWa?%z .GbHR@sѕWޞryfLwl#zg[w7ߵLKV|g~;NoXYSwuj)-[}Zږ&} TzRu7 ԿY):"84w&Xttv?λTe$)YREww+PS)ʒJST~BWV>RĪy3/l>~pZNbOS:锼yQY.'K., : Uh^GGjVBzURrOO+q<+Y}W>?fU^Ͽ3]w~^O/kϛMIo}] i$s1zQ|w|H ?U)PD_'UV %zGV~'NRه̙]Gz}yG{V \CiiTrkg@%t6%A%~oieVdp㘢"bTsgguyIr[}hjW%ya+_Wg+-_+)͒̈^ׇ]M?FpC V5CSf:򖔕[)[]TZJI͒o5? r3cX$[ʪ|kfqY4Y+~tT+(NBxu6$6RVT$YZ7NlU? {BcS#Wn&ޘlN, {|\Ǒ|y^V%ps}juJJ8G_JP" Ku..6:XU^^?|SN7泽JId//)~yX߲Xܬ5$ۯrJ锔%X"˩Y yU]*T\񶇟 o֎T'*6%ו.x׍q5&R5f*;eZeoKon;gyCiZKh:R:׽vlF~j`/kuZ:JMWAV,]Bյ羮(1=S){ :.yU[9sg.6U1?hGXi&/ŗSa/6ɹCq5Ե|Urhj['MkV׾W5=w-=Pû}z}"5EWcU=WS]o ɨW7Uߩ \.pBCߵ{lOik?dtBK7y&NC/;,Sʊ7+ЅrS:=oznô O졚͖i֤ 2?CT]s/|ń +PO=竛wܨ_ QaES眒׍X=ueTwo!D S4eWm{c:庢(;>+n6PaUiۋzC~iV!.%OU cUFk^?UC=V|DfM#ݯ*jzM][&o?+}2[[egFtжgn2hF(q5~\(==EQӚ>ﯺc9m޽{u[i{f;tUIRkR? Fל*4wtSlK2 ReM5ct^bt#[ZjS7r7Q:A=5D}x,.+WT!%PB5xTKgcgzC'HSWP VDZ8͌ig4擨ߒ)GfN^wƨqx\ŵLfс?u6=CGhY`Wa1J4Rj$d9IDATPH$PH$PH$Yn3;{LbIENDB`