summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagappan <nagappan>2006-09-27 07:33:09 +0000
committernagappan <nagappan>2006-09-27 07:33:09 +0000
commite9adee4383aecc21e89c5939c1c2fcfad5dc9223 (patch)
tree214120021f0d25c95a32cb77c18c901ecb48ffae
parented178d157521c1c3535fc85fd02e0330be2045e0 (diff)
Updated gedit scripts
-rwxr-xr-xgedit/AutoSave.py132
-rwxr-xr-xgedit/CreateSaveFile.py86
-rw-r--r--gedit/gedit-log.xml5231
-rw-r--r--gedit/ldt1
4 files changed, 111 insertions, 5339 deletions
diff --git a/gedit/AutoSave.py b/gedit/AutoSave.py
index 7e4f3ac..ba6e01c 100755
--- a/gedit/AutoSave.py
+++ b/gedit/AutoSave.py
@@ -5,22 +5,22 @@
# Author:
# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
#
-# Copyright 2004 - 2006 Novell, Inc.
+# Copyright 2004 - 2006 Novell, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
+# version 2 of the License, or (at your option) any later version.
#
-# This program is distributed in the hope that it will be useful,
+# 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
-# License along with this program; if not, write to the
-# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
#
#############################################################################
@@ -28,85 +28,85 @@
from ldtp import *
from ldtputils import *
from string import *
-def testAutoFileSave(filename,str,noofminutes):
+def testAutoFileSave (filename, str, noofminutes):
try:
- log('Test Auto File Save','info')
+ log ('Test Auto File Save', 'info')
#delays introduced intentionally
- time.sleep(5)
- selectmenuitem('*gedit','mnuEdit;mnuPreferences')
- time.sleep(5)
- if guiexist('dlggeditPreferences') == 1:
- selecttab ('dlggeditPreferences', 'ptl0', 'Editor')
- if check('dlggeditPreferences','chkCreateabackupcopyoffilesbeforesaving')==0:
- click('dlggeditPreferences','chkCreateabackupcopyoffilesbeforesaving')
- if check('dlggeditPreferences','chkAutosavefilesevery')==0:
- click('dlggeditPreferences','chkAutosavefilesevery')
- setvalue ('dlggeditPreferences','sbtnminutes','1')
- click('dlggeditPreferences','btnClose')
+ time.sleep (5)
+ selectmenuitem ('*gedit', 'mnuEdit;mnuPreferences')
+ time.sleep (5)
+ if guiexist ('dlggeditPreferences') == 1:
+ selecttab ('dlggeditPreferences', 'ptl0', 'Editor')
+ if check ('dlggeditPreferences', 'chkCreateabackupcopyoffilesbeforesaving')==0:
+ click ('dlggeditPreferences', 'chkCreateabackupcopyoffilesbeforesaving')
+ if check ('dlggeditPreferences', 'chkAutosavefilesevery')==0:
+ click ('dlggeditPreferences', 'chkAutosavefilesevery')
+ setvalue ('dlggeditPreferences', 'sbtnminutes', '1')
+ click ('dlggeditPreferences', 'btnClose')
#open a file
- selectmenuitem('*gedit','mnuFile;mnuClose')
- selectmenuitem('*gedit','mnuFile;mnuOpenLocation')
- waittillguiexist('dlgOpenLocation')
- if guiexist('dlgOpenLocation')==1:
- settextvalue('dlgOpenLocation','cboEnterthelocation(URI)ofthefileyouwouldliketoopen',filename)
- click('dlgOpenLocation','btnOpen')
+ selectmenuitem ('*gedit', 'mnuFile;mnuClose')
+ selectmenuitem ('*gedit', 'mnuFile;mnuOpenLocation')
+ waittillguiexist ('dlgOpenLocation')
+ if guiexist ('dlgOpenLocation')==1:
+ settextvalue ('dlgOpenLocation', 'cboEnterthelocation (URI)ofthefileyouwouldliketoopen', filename)
+ click ('dlgOpenLocation', 'btnOpen')
else:
- log('Open Location dialog does not appear','error')
- raise LdtpExecutionError(0)
- appendtext('*gedit','txt0',str)
+ log ('Open Location dialog does not appear', 'error')
+ raise LdtpExecutionError (0)
+ appendtext ('*gedit', 'txt0', str)
#calculate the noofseconds to wait
- noofseconds=(int(noofminutes))*60+10
- time.sleep(noofseconds)
- selectmenuitem('*gedit','mnuFile;mnuClose')
+ noofseconds= (int (noofminutes))*60+10
+ time.sleep (noofseconds)
+ selectmenuitem ('*gedit', 'mnuFile;mnuClose')
#check the contents of the file
- if guiexist('dlgQuestion') == 0:
- fp=open(filename,'r')
- filecontents=fp.read()
+ if guiexist ('dlgQuestion') == 0:
+ fp=open (filename, 'r')
+ filecontents=fp.read ()
if filecontents==str:
- log('Test Auto File Save Success','info')
+ log ('Test Auto File Save Success', 'info')
else:
- log('Test Auto File Save Failed','error')
- raise LdtpExecutionError(0)
+ log ('Test Auto File Save Failed', 'error')
+ raise LdtpExecutionError (0)
return
- time.sleep(3)
+ time.sleep (3)
else:
- log('Preferences dialog does not appear','error')
- raise LdtpExecutionError(0)
+ log ('Preferences dialog does not appear', 'error')
+ raise LdtpExecutionError (0)
except:
- log('Test Auto File Save Failed ','error')
- raise LdtpExecutionError(0)
+ log ('Test Auto File Save Failed ', 'error')
+ raise LdtpExecutionError (0)
return
- log('Test Auto File Save Success','info')
+ log ('Test Auto File Save Success', 'info')
try:
- log('Test Auto File Save','teststart')
- launchapp('gedit',1)
- waittillguiexist('*gedit')
+ log ('Test Auto File Save', 'teststart')
+ launchapp ('gedit', 1)
+ waittillguiexist ('*gedit')
#get the data from the data xml
- obj = LdtpDataFileParser(datafilename)
- filename = obj.gettagvalue('file0')[0]
- text=obj.gettagvalue('text')[0]
- sampletext=obj.gettagvalue('sampletext')[0]
- noofminutes=obj.gettagvalue('noofminutes')[0]
- strlist=rsplit(text,':')
+ obj = LdtpDataFileParser (datafilename)
+ filename = obj.gettagvalue ('file0')[0]
+ text = obj.gettagvalue ('text')[0]
+ sampletext=obj.gettagvalue ('sampletext')[0]
+ noofminutes=obj.gettagvalue ('noofminutes')[0]
+ strlist=rsplit (text, ':')
#Create the files if they dont exist
- if os.path.exists(os.getcwd() + '/' + filename) == False:
- a=open(filename,'w')
+ if os.path.exists (os.getcwd () + '/' + filename) == False:
+ a = open (filename, 'w')
i=0
- length=len(strlist)
+ length=len (strlist)
while i<length:
- a.write(strlist[i]+'\n')
+ a.write (strlist[i]+'\n')
i=i+1
- a.close()
- testAutoFileSave(filename,sampletext,noofminutes)
+ a.close ()
+ testAutoFileSave (os.getcwd () + '/' + filename, sampletext, noofminutes)
except:
- log('Test Auto File Save Failed','error')
- raise LdtpExecutionError(0)
-time.sleep(5)
-selectmenuitem('*gedit','mnuFile;mnuQuit')
-time.sleep(5)
-if guiexist('dlgQuestion'):
- click('dlgQuestion','btnClosewithoutSaving')
-log('Test Auto File Save','testend')
+ log ('Test Auto File Save Failed', 'error')
+ raise LdtpExecutionError (0)
+time.sleep (5)
+selectmenuitem ('*gedit', 'mnuFile;mnuQuit')
+time.sleep (5)
+if guiexist ('dlgQuestion'):
+ click ('dlgQuestion', 'btnClosewithoutSaving')
+log ('Test Auto File Save', 'testend')
diff --git a/gedit/CreateSaveFile.py b/gedit/CreateSaveFile.py
index 9436b18..44231c6 100755
--- a/gedit/CreateSaveFile.py
+++ b/gedit/CreateSaveFile.py
@@ -23,52 +23,56 @@
from ldtp import *
from ldtputils import *
+
+import os
+
try:
- obj = LdtpDataFileParser(datafilename)
- fname = obj.gettagvalue('newfile')[0]
+ obj = LdtpDataFileParser (datafilename)
+ fname = obj.gettagvalue ('newfile')[0]
new_text = 'LDTP Testing'
- log('Gedit-create-file','teststart')
- launchapp('gedit',1)
- waittillguiexist('*gedit')
- selectmenuitem('*gedit','mnuFile;mnuNew')
- if selecttabindex('*gedit','ptl1',getrowcount('*gedit','tbl*') - 1) == 1:
- log('New,unsaved document exists','info')
+ log ('Gedit-create-file', 'teststart')
+ launchapp ('gedit', 1)
+ waittillguiexist ('*gedit')
+ selectmenuitem ('*gedit', 'mnuFile;mnuNew')
+ default_dir = os.getcwd ()
+ if selecttabindex ('*gedit', 'ptl1', getrowcount ('*gedit', 'tbl*') - 1) == 1:
+ log ('New, unsaved document exists', 'info')
#insert some txt into the now opened tab
- settextvalue('*gedit',
- 'txt' + str(getrowcount('*gedit','tbl0')-1),
+ settextvalue ('*gedit',
+ 'txt' + str (getrowcount ('*gedit', 'tbl0')-1),
new_text)
- log('Inserted some text','info')
- selectmenuitem('*gedit','mnuFile;mnuSaveAs')
- if waittillguiexist('dlgSaveAs...') == 0:
- log('Save as dialog does not appear','error')
- raise LdtpExecutionError(0);
+ log ('Inserted some text', 'info')
+ selectmenuitem ('*gedit', 'mnuFile;mnuSaveAs')
+ if waittillguiexist ('dlgSaveAs...') == 0:
+ log ('Save as dialog does not appear', 'error')
+ raise LdtpExecutionError (0);
else:
- settextvalue('dlgSaveAs...','txtName',fname)
- click('dlgSaveAs...','btnSave')
- time.sleep(2)
- if guiexist('dlgQuestion') == 1:
- log('File already exists.. Replacing','warning')
- log('Change file name in gedit-data.xml to prevent this','info')
- click('dlgQuestion','btnReplace')
- waittillguinotexist('dlgQuestion')
- time.sleep(5)
- if guiexist('dlgSaveAs...') == 0:
- log('File Saved','info')
+ settextvalue ('dlgSaveAs...', 'txtName', default_dir + '/' + fname)
+ click ('dlgSaveAs...', 'btnSave')
+ time.sleep (2)
+ if guiexist ('dlgQuestion') == 1:
+ log ('File already exists.. Replacing', 'warning')
+ log ('Change file name in gedit-data.xml to prevent this', 'info')
+ click ('dlgQuestion', 'btnReplace')
+ waittillguinotexist ('dlgQuestion')
+ time.sleep (5)
+ if guiexist ('dlgSaveAs...') == 0:
+ log ('File Saved', 'info')
else:
- raise LdtpExecutionError(0)
- selectmenuitem('*gedit','mnuDocuments;mnuCloseAll')
- log('Checking if file was created','info')
- f = open('ldt','r')
- a = f.read()
- if a.find(new_text) >= 0:
- log('File was created, containing entered text','info')
+ raise LdtpExecutionError (0)
+ selectmenuitem ('*gedit', 'mnuDocuments;mnuCloseAll')
+ log ('Checking if file was created', 'info')
+ f = open (default_dir + '/' + fname, 'r')
+ a = f.read ()
+ print 'Junk ', a, a.find (new_text)
+ if a.find (new_text) >= 0:
+ log ('File was created, containing entered text', 'info')
else:
- log('File was not created or has invalid data','error')
- raise LdtpExecutionError(0)
-except:
- log('Gedit-create-file failed','error')
- raise LdtpExecutionError(0)
-selectmenuitem('*gedit','mnuFile;mnuQuit')
-time.sleep(5)
-log('Gedit-create-file','testend')
+ log ('File was not created or has invalid data', 'error')
+ raise LdtpExecutionError (0)
+ selectmenuitem ('*gedit', 'mnuFile;mnuQuit')
+except LdtpExecutionError, msg:
+ log ('Gedit-create-file failed', 'error')
+ raise LdtpExecutionError (str (msg))
+log ('Gedit-create-file', 'testend')
diff --git a/gedit/gedit-log.xml b/gedit/gedit-log.xml
deleted file mode 100644
index e064360..0000000
--- a/gedit/gedit-log.xml
+++ /dev/null
@@ -1,5231 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<!-- XML Logging -->
-<ldtp>
-<warning>testcaseid entry not present - skipping</warning>
-<warning>comment entry not present - skipping</warning>
-<group name="Executing-group1">
-<script name="CreateSaveFile.py">
-<datafilename>CreateSaveFile.xml</datafilename>
-<test name="Gedit-create-file">
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
-<error>Unable to update context: *gedit in appmap</error>
-<debug>Object definition *gedit not found in appmap</debug>
diff --git a/gedit/ldt b/gedit/ldt
deleted file mode 100644
index c57aa6f..0000000
--- a/gedit/ldt
+++ /dev/null
@@ -1 +0,0 @@
-LDTP Testing