From b5f5fdc19ca3942b9e90a5bef35e5c0f8b6934fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Mon, 4 Sep 2017 17:37:42 +0200 Subject: [PATCH 01/30] Fix Layout in Synchronise Contacts Dialog --- data/gui/synchronise_select_account_dialog.ui | 4 ++-- data/gui/synchronise_select_contacts_dialog.ui | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/data/gui/synchronise_select_account_dialog.ui b/data/gui/synchronise_select_account_dialog.ui index c186fe98a..58d066d46 100644 --- a/data/gui/synchronise_select_account_dialog.ui +++ b/data/gui/synchronise_select_account_dialog.ui @@ -1,5 +1,5 @@ - + @@ -89,7 +89,7 @@ - False + True True 3 diff --git a/data/gui/synchronise_select_contacts_dialog.ui b/data/gui/synchronise_select_contacts_dialog.ui index 0be24b090..7bc2abb29 100644 --- a/data/gui/synchronise_select_contacts_dialog.ui +++ b/data/gui/synchronise_select_contacts_dialog.ui @@ -1,5 +1,5 @@ - + @@ -89,7 +89,7 @@ - False + True True 3 From 16fcb3a3fcf7bdf9b742f055ffff0c5e9fa532e0 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 6 Sep 2017 14:26:30 +0200 Subject: [PATCH 02/30] fix typo --- data/gui/shortcuts_window.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/gui/shortcuts_window.ui b/data/gui/shortcuts_window.ui index b93ec815f..16144e31c 100644 --- a/data/gui/shortcuts_window.ui +++ b/data/gui/shortcuts_window.ui @@ -103,7 +103,7 @@ 1 <shift>Page_Down - Sroll down + Scroll down From 1a0b7ee163f00e7742dc54f6c2a0eefce68fe0b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Wed, 6 Sep 2017 21:24:12 +0200 Subject: [PATCH 03/30] Dont lose own JID from bind _registered_name is None on a smacks resume. Gajim creates on every connection attempt a new nbxmpp.NonBlockingClient instance. This is why _registered_name is None when we go through a smacks resume, because there is no bind event, and the new NonBlockingClient instance has no knowledge of the previous successful bind. --- gajim/common/connection.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gajim/common/connection.py b/gajim/common/connection.py index a1c529003..9a06f173f 100644 --- a/gajim/common/connection.py +++ b/gajim/common/connection.py @@ -1451,7 +1451,9 @@ class Connection(CommonConnection, ConnectionHandlers): return if hasattr(con, 'Resource'): self.server_resource = con.Resource - self.registered_name = con._registered_name + if con._registered_name is not None: + log.info('Bound JID: %s', con._registered_name) + self.registered_name = con._registered_name if app.config.get_per('accounts', self.name, 'anonymous_auth'): # Get jid given by server old_jid = app.get_jid_from_account(self.name) From 995ade8a1145d53d7ce279cc46db517f0c12f577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Thu, 7 Sep 2017 16:42:51 +0200 Subject: [PATCH 04/30] Only log for GC Message for one account --- gajim/common/connection_handlers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gajim/common/connection_handlers.py b/gajim/common/connection_handlers.py index c0532eb85..159f95346 100644 --- a/gajim/common/connection_handlers.py +++ b/gajim/common/connection_handlers.py @@ -1155,6 +1155,8 @@ class ConnectionHandlersBase: return True def _nec_gc_message_received(self, obj): + if obj.conn.name != self.name: + return if app.config.should_log(obj.conn.name, obj.jid) and not \ obj.timestamp < obj.conn.last_history_time[obj.jid] and obj.msgtxt and \ obj.nick: From f569084b2da324b928720ba40029e187adeacdb2 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 7 Sep 2017 18:03:20 +0200 Subject: [PATCH 05/30] fix XDG path in man pages. Fixes #8507 --- data/gajim-history-manager.1 | 2 +- data/gajim.1 | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/data/gajim-history-manager.1 b/data/gajim-history-manager.1 index b30a19309..e9f3e6505 100644 --- a/data/gajim-history-manager.1 +++ b/data/gajim-history-manager.1 @@ -27,7 +27,7 @@ Where to look for logs file .El .Sh FILES .Bl -tag -width Ds -.It $XDG_DATA_DIR/gajim/logs.db +.It $XDG_DATA_HOME/gajim/logs.db The history database log file used when .Op Fl c is not specified. diff --git a/data/gajim.1 b/data/gajim.1 index 06521f3d5..c5d4c5990 100644 --- a/data/gajim.1 +++ b/data/gajim.1 @@ -66,19 +66,19 @@ Where to look for configuration files .El .Sh FILES .Bl -tag -width Ds -.It $XDG_CACHE_DIR/gajim/cache.db +.It $XDG_CACHE_HOME/gajim/cache.db Cache database file of transports, caps, roster entry, and roster group. -.It $XDG_CACHE_DIR/gajim/avatars/ +.It $XDG_CACHE_HOME/gajim/avatars/ Cache directory of avatars. -.It $XDG_CACHE_DIR/gajim/vcards/ +.It $XDG_CACHE_HOME/gajim/vcards/ Cache directory of vCards (virtual cards). -.It $XDG_CONFIG_DIR/gajim/ +.It $XDG_CONFIG_HOME/gajim/ The config-path used when .Op Fl c is not specified. -.It $XDG_DATA_DIR/gajim/certs/ +.It $XDG_DATA_HOME/gajim/certs/ Directory where certificates are stored. -.It $XDG_DATA_DIR/gajim/logs.db +.It $XDG_DATA_HOME/gajim/logs.db The history database log file. For more information on database logs see . From 3c31574cf967dd7b01b86884bd821589e693d371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= Date: Sun, 10 Sep 2017 12:21:10 +0200 Subject: [PATCH 06/30] Unittest: replace deprecated functions --- test/integration/test_gui_event_integration.py | 2 +- test/integration/test_roster.py | 14 +++++++------- test/test_pluginmanager.py | 8 ++++---- test/unit/test_account.py | 2 +- test/unit/test_caps_cache.py | 4 ++-- test/unit/test_sessions.py | 12 ++++++------ test/unit/test_socks5.py | 8 ++++---- 7 files changed, 25 insertions(+), 25 deletions(-) diff --git a/test/integration/test_gui_event_integration.py b/test/integration/test_gui_event_integration.py index f7600d8ce..150f2102a 100644 --- a/test/integration/test_gui_event_integration.py +++ b/test/integration/test_gui_event_integration.py @@ -101,7 +101,7 @@ class TestStatusChange(unittest.TestCase): break if not still_exists: - self.assert_(contact is None) + self.assertTrue(contact is None) return self.assertEqual('offline', contact.show) diff --git a/test/integration/test_roster.py b/test/integration/test_roster.py index 8c0e322de..3b5859d65 100644 --- a/test/integration/test_roster.py +++ b/test/integration/test_roster.py @@ -74,13 +74,13 @@ class TestRosterWindow(unittest.TestCase): c_model = self.roster.model[titerC] # name can be stricked if contact or group is blocked -# self.assertEquals(contact.get_shown_name(), c_model[self.C_NAME], +# self.assertEqual(contact.get_shown_name(), c_model[self.C_NAME], # msg='Contact name missmatch') - self.assertEquals(contact.jid, c_model[self.C_JID], + self.assertEqual(contact.jid, c_model[self.C_JID], msg='Jid missmatch') if not self.roster.regroup: - self.assertEquals(account, c_model[self.C_ACCOUNT], + self.assertEqual(account, c_model[self.C_ACCOUNT], msg='Account missmatch') # Check for correct nesting @@ -111,15 +111,15 @@ class TestRosterWindow(unittest.TestCase): msg='Account iter is invalid') acc_model = self.roster.model[titerA] - self.assertEquals(acc_model[self.C_TYPE], 'account', + self.assertEqual(acc_model[self.C_TYPE], 'account', msg='No account found') if not self.roster.regroup: - self.assertEquals(acc_model[self.C_ACCOUNT], acc, + self.assertEqual(acc_model[self.C_ACCOUNT], acc, msg='Account not found') self_jid = app.get_jid_from_account(acc) - self.assertEquals(acc_model[self.C_JID], self_jid, + self.assertEqual(acc_model[self.C_JID], self_jid, msg='Account JID not found in account row') def assert_model_is_in_sync(self): @@ -139,7 +139,7 @@ class TestRosterWindow(unittest.TestCase): # Contacts kept their info contact = instances[0] - self.assertEquals(sorted(contact.groups), sorted(contacts[acc][jid]['groups']), + self.assertEqual(sorted(contact.groups), sorted(contacts[acc][jid]['groups']), msg='Group Missmatch') groups = contacts[acc][jid]['groups'] or ['General',] diff --git a/test/test_pluginmanager.py b/test/test_pluginmanager.py index fa990b64d..24f2046aa 100644 --- a/test/test_pluginmanager.py +++ b/test/test_pluginmanager.py @@ -77,10 +77,10 @@ class PluginManagerTestCase(unittest.TestCase): self.pluginmanager.test_arg = 1 secondPluginManager = PluginManager() - self.failUnlessEqual(id(secondPluginManager), id(self.pluginmanager), - 'Different IDs in references to PluginManager objects (not a singleton)') - self.failUnlessEqual(secondPluginManager.test_arg, 1, - 'References point to different PluginManager objects (not a singleton') + self.assertEqual(id(secondPluginManager), id(self.pluginmanager), + 'Different IDs in references to PluginManager objects (not a singleton)') + self.assertEqual(secondPluginManager.test_arg, 1, + 'References point to different PluginManager objects (not a singleton') def suite(): suite = unittest.TestLoader().loadTestsFromTestCase(PluginManagerTestCase) diff --git a/test/unit/test_account.py b/test/unit/test_account.py index 40c8d223c..60c6eca96 100644 --- a/test/unit/test_account.py +++ b/test/unit/test_account.py @@ -13,7 +13,7 @@ class Test(unittest.TestCase): def testInstantiate(self): account = Account(name='MyAcc', contacts=None, gc_contacts=None) - self.assertEquals('MyAcc', account.name) + self.assertEqual('MyAcc', account.name) self.assertTrue(account.gc_contacts is None) self.assertTrue(account.contacts is None) diff --git a/test/unit/test_caps_cache.py b/test/unit/test_caps_cache.py index 8ddb7d76f..a0bbdd545 100644 --- a/test/unit/test_caps_cache.py +++ b/test/unit/test_caps_cache.py @@ -44,8 +44,8 @@ class TestCapsCache(CommonCapsTest): self.cc[self.client_caps].identities = self.identities self.cc[self.client_caps].features = self.features - self.assert_(NS_MUC in self.cc[self.client_caps].features) - self.assert_(NS_PING not in self.cc[self.client_caps].features) + self.assertTrue(NS_MUC in self.cc[self.client_caps].features) + self.assertTrue(NS_PING not in self.cc[self.client_caps].features) identities = self.cc[self.client_caps].identities diff --git a/test/unit/test_sessions.py b/test/unit/test_sessions.py index d7ea32b7a..d2662dee1 100644 --- a/test/unit/test_sessions.py +++ b/test/unit/test_sessions.py @@ -39,15 +39,15 @@ class TestStanzaSession(unittest.TestCase): def test_generate_thread_id(self): # thread_id is a string - self.assert_(isinstance(self.sess.thread_id, str)) + self.assertTrue(isinstance(self.sess.thread_id, str)) # it should be somewhat long, to avoid clashes - self.assert_(len(self.sess.thread_id) >= 32) + self.assertTrue(len(self.sess.thread_id) >= 32) def test_is_loggable(self): # by default a session should be loggable # (unless the no_log_for setting says otherwise) - self.assert_(self.sess.is_loggable()) + self.assertTrue(self.sess.is_loggable()) def test_terminate(self): # termination is sent by default @@ -127,7 +127,7 @@ class TestChatControlSession(unittest.TestCase): self.assert_new_message_notification() notif = notify.notifications[-1] first = notif.first_unread - self.assert_(first, + self.assertTrue(first, 'message should have been treated as a first message') def assert_not_first_message_notification(self): @@ -135,7 +135,7 @@ class TestChatControlSession(unittest.TestCase): self.assert_new_message_notification() notif = notify.notifications[-1] first = notif.first_unread - self.assert_(not first, + self.assertTrue(not first, 'message was unexpectedly treated as a first message') # ----- tests ----- @@ -148,7 +148,7 @@ class TestChatControlSession(unittest.TestCase): self.receive_chat_msg(fjid, msgtxt) # session is created - self.assert_((jid in self.conn.sessions) and ( + self.assertTrue((jid in self.conn.sessions) and ( '123' in self.conn.sessions[jid]), 'session is not created') sess = self.conn.sessions[jid]['123'] diff --git a/test/unit/test_socks5.py b/test/unit/test_socks5.py index 63ba1d240..c7f85aa0f 100644 --- a/test/unit/test_socks5.py +++ b/test/unit/test_socks5.py @@ -114,10 +114,10 @@ class TestSocks5(unittest.TestCase): s.connect(server) s.send(mocksock.outgoing.pop(0)) - self.assertEquals(s.recv(64), mocksock.incoming.pop(0)) + self.assertEqual(s.recv(64), mocksock.incoming.pop(0)) s.send(mocksock.outgoing.pop(0)) - self.assertEquals(s.recv(64), mocksock.incoming.pop(0)) + self.assertEqual(s.recv(64), mocksock.incoming.pop(0)) def test_connection_client(self): @@ -138,12 +138,12 @@ class TestSocks5(unittest.TestCase): (s, address) = s.accept() - self.assertEquals(s.recv(64), mocksock.incoming.pop(0)) + self.assertEqual(s.recv(64), mocksock.incoming.pop(0)) s.send(mocksock.outgoing.pop(0)) buff = s.recv(64) inco = mocksock.incoming.pop(0) - #self.assertEquals(s.recv(64), mocksock.incoming.pop(0)) + #self.assertEqual(s.recv(64), mocksock.incoming.pop(0)) s.send(mocksock.outgoing.pop(0)) def test_client_negoc(self): From 40770843ae04dd7d51028cd3b489d72ca4e72a8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= Date: Sun, 10 Sep 2017 12:22:49 +0200 Subject: [PATCH 07/30] test_pluginmanager: fix imports --- test/test_pluginmanager.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/test_pluginmanager.py b/test/test_pluginmanager.py index 24f2046aa..71f99d987 100644 --- a/test/test_pluginmanager.py +++ b/test/test_pluginmanager.py @@ -38,8 +38,8 @@ configdir = gajim_root + '/test/tmp' import time # define _ for i18n -import __builtin__ -__builtin__._ = lambda x: x +import builtins +builtins._ = lambda x: x # wipe config directory import os @@ -54,7 +54,6 @@ gajim.common.configpaths.gajimpaths.init(configdir) # for some reason common.app needs to be imported before xmpppy? from gajim.common import app -from gajim.common import xmpp app.DATA_DIR = gajim_root + '/data' From eca11d2498b6c6af8b63d5b3d5b32d5bc14d8e18 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Mon, 11 Sep 2017 12:18:00 +0200 Subject: [PATCH 08/30] fix plugins_translate script --- scripts/dev/plugins_translate | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dev/plugins_translate b/scripts/dev/plugins_translate index dc9233cb4..c9e73e527 100755 --- a/scripts/dev/plugins_translate +++ b/scripts/dev/plugins_translate @@ -58,7 +58,7 @@ make_mo() install_mo() { if [ -L community_plugins ]; then - cp $1.mo community_plugins/plugins_translate/ + cp $1.mo community_plugins/plugins_translations/ fi mkdir -p ~/.local/share/gajim/plugins/locale/$1/LC_MESSAGES/ cp $1.mo ~/.local/share/gajim/plugins/locale/$1/LC_MESSAGES/gajim_plugins.mo @@ -77,7 +77,7 @@ case "$1" in make_mo $2 ;; install_mo) - install_mo + install_mo $2 ;; all) check_args $@ From 1b4e856d80aa00c20cc043ec825dd46010d4b44b Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 13 Sep 2017 14:25:36 +0200 Subject: [PATCH 09/30] fix reading secrets file --- gajim/secrets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/secrets.py b/gajim/secrets.py index 7c3f6a02a..9594752b6 100644 --- a/gajim/secrets.py +++ b/gajim/secrets.py @@ -106,7 +106,7 @@ def load_secrets(filename): if type(secret) is str: secrets.srs[acct][jid].remove((secret, verified)) secrets.srs[acct][jid].append((secret.encode('latin1'), verified)) - except (KeyError, EOFError): + except (KeyError, EOFError, ImportError): f.close() secrets = Secrets(filename) From f6e754727c752fb85f2563ce221fbb0c92ce7b88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Wed, 13 Sep 2017 20:41:34 +0200 Subject: [PATCH 10/30] Differentiate upper/lower case string emojis --- gajim/conversation_textview.py | 3 +-- gajim/emoticons.py | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/gajim/conversation_textview.py b/gajim/conversation_textview.py index 4b6f9ac3c..e493bb359 100644 --- a/gajim/conversation_textview.py +++ b/gajim/conversation_textview.py @@ -918,13 +918,12 @@ class ConversationTextview(GObject.GObject): if special_text.startswith(scheme): text_is_valid_uri = True - possible_emot_ascii_caps = special_text.upper() # emoticons keys are CAPS if iter_: end_iter = iter_ else: end_iter = buffer_.get_end_iter() - pixbuf = emoticons.get_pixbuf(possible_emot_ascii_caps) + pixbuf = emoticons.get_pixbuf(special_text) if app.config.get('emoticons_theme') and pixbuf and graphics: # it's an emoticon anchor = buffer_.create_child_anchor(end_iter) diff --git a/gajim/emoticons.py b/gajim/emoticons.py index 8fa0b4903..f37142494 100644 --- a/gajim/emoticons.py +++ b/gajim/emoticons.py @@ -87,9 +87,9 @@ def load(path): def add_emoticon(codepoint_, sub, mod_list=None): pix = sub.get_pixbuf() for alternate in codepoint_: - codepoints[alternate.upper()] = pix + codepoints[alternate] = pix if pix not in pixbufs: - pixbufs[pix] = alternate.upper() + pixbufs[pix] = alternate if mod_list is not None: mod_list.append(pix) else: From 9ac03824b619d4adf46f42b15eadb8f5358c93eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Wed, 13 Sep 2017 21:17:06 +0200 Subject: [PATCH 11/30] Update string emojis --- data/emoticons/noto-emoticons/emoticons_theme.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/emoticons/noto-emoticons/emoticons_theme.py b/data/emoticons/noto-emoticons/emoticons_theme.py index 257eb7a08..00d2d438b 100644 --- a/data/emoticons/noto-emoticons/emoticons_theme.py +++ b/data/emoticons/noto-emoticons/emoticons_theme.py @@ -10,7 +10,7 @@ emoticons = OrderedDict([ ('u263a.png', None), # Category image # subgroup: face-positive - ('u1f600.png', [u'\U0001f600']), + ('u1f600.png', [u'\U0001f600', ':>']), ('u1f601.png', [u'\U0001f601']), ('u1f602.png', [u'\U0001f602', ':\'-)', ':\')']), ('u1f923.png', [u'\U0001f923']), @@ -40,9 +40,9 @@ emoticons = OrderedDict([ ('u1f60f.png', [u'\U0001f60f']), ('u1f623.png', [u'\U0001f623']), ('u1f625.png', [u'\U0001f625']), - ('u1f62e.png', [u'\U0001f62e']), + ('u1f62e.png', [u'\U0001f62e', '=-O', ':-O', ':O']), ('u1f910.png', [u'\U0001f910']), - ('u1f62f.png', [u'\U0001f62f']), + ('u1f62f.png', [u'\U0001f62f', ':o']), ('u1f62a.png', [u'\U0001f62a']), ('u1f62b.png', [u'\U0001f62b']), ('u1f634.png', [u'\U0001f634']), @@ -57,7 +57,7 @@ emoticons = OrderedDict([ ('u1f615.png', [u'\U0001f615']), ('u1f643.png', [u'\U0001f643']), ('u1f911.png', [u'\U0001f911']), - ('u1f632.png', [u'\U0001f632', '=-O', ':-O', ':O']), + ('u1f632.png', [u'\U0001f632']), # subgroup: face-negative ('u2639.png', [u'\u2639', ':-/', ':/', ':-\\', ':\\', ':-S', ':S', ':-[', ':[']), From ef75e93c707609997d757d96ad79db0bfdc96ea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Wed, 13 Sep 2017 21:52:18 +0200 Subject: [PATCH 12/30] Change License in AboutDialog --- gajim/dialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/dialogs.py b/gajim/dialogs.py index c30ee3e08..3ae5d6301 100644 --- a/gajim/dialogs.py +++ b/gajim/dialogs.py @@ -1294,7 +1294,7 @@ class AboutDialog(Gtk.AboutDialog): self.set_name('Gajim') self.set_version(app.version) self.set_copyright('Copyright © 2003-2017 Gajim Team') - self.set_license_type(Gtk.License.GPL_3_0) + self.set_license_type(Gtk.License.GPL_3_0_ONLY) self.set_website('https://gajim.org/') gtk_ver = '%i.%i.%i' % ( From 5c0538a202d3750686bd50d8d66c84637c28ec3b Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 15 Sep 2017 15:11:55 +0200 Subject: [PATCH 13/30] Fix running make test --- plugins/roster_buttons/plugin.py | 4 ++-- test/integration/test_roster.py | 8 ++++++++ test/lib/__init__.py | 4 ++++ test/lib/gajim_mocks.py | 4 ++-- test/runtests.py | 10 ++++++++++ test/unit/test_gui_interface.py | 5 +++++ test/unit/test_sessions.py | 6 ++++-- 7 files changed, 35 insertions(+), 6 deletions(-) diff --git a/plugins/roster_buttons/plugin.py b/plugins/roster_buttons/plugin.py index 2a62a1595..f6f14c92a 100644 --- a/plugins/roster_buttons/plugin.py +++ b/plugins/roster_buttons/plugin.py @@ -38,13 +38,13 @@ class RosterButtonsPlugin(GajimPlugin): def init(self): self.description = _('Adds quick action buttons to roster window.') self.GTK_BUILDER_FILE_PATH = self.local_file_path('roster_buttons.ui') - self.roster_vbox = app.interface.roster.xml.get_object('roster_vbox2') - self.show_offline_contacts_menuitem = app.interface.roster.xml.get_object('show_offline_contacts_menuitem') self.config_dialog = None @log_calls('RosterButtonsPlugin') def activate(self): + self.roster_vbox = app.interface.roster.xml.get_object('roster_vbox2') + self.show_offline_contacts_menuitem = app.interface.roster.xml.get_object('show_offline_contacts_menuitem') self.xml = gtk.Builder() self.xml.set_translation_domain('gajim_plugins') self.xml.add_objects_from_file(self.GTK_BUILDER_FILE_PATH, diff --git a/test/integration/test_roster.py b/test/integration/test_roster.py index 3b5859d65..02ee7fe15 100644 --- a/test/integration/test_roster.py +++ b/test/integration/test_roster.py @@ -35,6 +35,14 @@ class TestRosterWindow(unittest.TestCase): app.connections[acc] = MockConnection(acc) app.contacts.add_account(acc) + def tearDown(self): + self.roster.window.destroy() + # Clean main loop + from gi.repository import GLib + mc = GLib.main_context_default() + while mc.pending(): + mc.iteration() + ### Custom assertions def assert_all_contacts_are_in_roster(self, acc): for jid in contacts[acc]: diff --git a/test/lib/__init__.py b/test/lib/__init__.py index 9c10673c6..b8c60c8fe 100644 --- a/test/lib/__init__.py +++ b/test/lib/__init__.py @@ -26,6 +26,8 @@ pluginsconfigdir = configdir + '/pluginsconfig' import builtins builtins._ = lambda x: x +from gajim.common.contacts import LegacyContactsAPI + def setup_env(): # wipe config directory if os.path.isdir(configdir): @@ -46,6 +48,8 @@ def setup_env(): app.DATA_DIR = gajim_root + '/data' app.use_x = use_x + app.contacts = LegacyContactsAPI() + app.connections = {} if use_x: from gajim import gtkgui_helpers diff --git a/test/lib/gajim_mocks.py b/test/lib/gajim_mocks.py index dd528cfc7..812aac724 100644 --- a/test/lib/gajim_mocks.py +++ b/test/lib/gajim_mocks.py @@ -107,7 +107,7 @@ class MockInterface(Mock): self.msg_win_mgr = Mock() self.roster = Mock() app.ged = ged.GlobalEventsDispatcher() - import plugins + from gajim import plugins app.plugin_manager = plugins.PluginManager() self.remote_ctrl = None @@ -119,7 +119,7 @@ class MockInterface(Mock): self.jabber_state_images = {'16': {}, '24': {}, '32': {}, 'opened': {}, 'closed': {}} - import gtkgui_helpers + from gajim import gtkgui_helpers gtkgui_helpers.make_jabber_state_images() else: self.jabber_state_images = {'16': Mock(), '24': Mock(), diff --git a/test/runtests.py b/test/runtests.py index 59d5e0a62..c6fc503a3 100755 --- a/test/runtests.py +++ b/test/runtests.py @@ -53,8 +53,18 @@ nb_errors = 0 nb_failures = 0 for mod in modules: + print("Now running: %s" % mod) suite = unittest.defaultTestLoader.loadTestsFromName(mod) result = unittest.TextTestRunner(verbosity=verbose).run(suite) + if use_x: + # Wait 1s to be sure all timeout_add will be called before we cleanup main loop + import time + time.sleep(0.5) + # Clean main loop + from gi.repository import GLib + mc = GLib.main_context_default() + while mc.pending(): + mc.iteration() nb_errors += len(result.errors) nb_failures += len(result.failures) diff --git a/test/unit/test_gui_interface.py b/test/unit/test_gui_interface.py index 4f7d97ffc..31db50624 100644 --- a/test/unit/test_gui_interface.py +++ b/test/unit/test_gui_interface.py @@ -16,10 +16,15 @@ app.logger = MockLogger() from gajim.gui_interface import Interface +from gi.repository import GLib + class TestInterface(unittest.TestCase): def test_instantiation(self): ''' Test that we can proper initialize and do not fail on globals ''' + def close_app(): + app.app.quit() + GLib.idle_add(close_app) app.app.run() def test_links_regexp_entire(self): diff --git a/test/unit/test_sessions.py b/test/unit/test_sessions.py index d2662dee1..032c62349 100644 --- a/test/unit/test_sessions.py +++ b/test/unit/test_sessions.py @@ -22,12 +22,13 @@ from gajim.roster_window import RosterWindow from mock import Mock, expectParams from gajim_mocks import * +from data import account1 app.interface = MockInterface() # name to use for the test account -account_name = 'test' +account_name = account1 class TestStanzaSession(unittest.TestCase): ''' Testclass for common/stanzasession.py ''' @@ -171,7 +172,7 @@ class TestChatControlSession(unittest.TestCase): jid = 'bct@necronomicorp.com' fjid = 'bct@necronomicorp.com/Gajim' msgtxt = 'testing two' - roster = RosterWindow(app.app) + app.interface.roster = RosterWindow(app.app) sess = self.conn.sessions[jid]['123'] sess.control = MockChatControl(fjid, account_name) @@ -190,6 +191,7 @@ class TestChatControlSession(unittest.TestCase): # message was printed to the control calls = sess.control.mockGetNamedCalls('print_conversation') self.assertEqual(1, len(calls)) + app.interface.roster.window.destroy() #def test_received_3orphaned_control(self): #'''test receiving a message when a control that doesn't have a session From 41b977b91491b9acdb672cebc81081aa4be74148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Fri, 15 Sep 2017 23:22:21 +0200 Subject: [PATCH 14/30] Add option to disable ascii emoticons --- gajim/common/config.py | 1 + gajim/emoticons.py | 8 +++++++- gajim/gui_interface.py | 3 ++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/gajim/common/config.py b/gajim/common/config.py index 6fbf8570d..4b5f05ae6 100644 --- a/gajim/common/config.py +++ b/gajim/common/config.py @@ -124,6 +124,7 @@ class Config: 'print_time': [ opt_str, 'always', _('\'always\' - print time for every message.\n\'sometimes\' - print time every print_ichat_every_foo_minutes minute.\n\'never\' - never print time.')], 'print_time_fuzzy': [ opt_int, 0, _('Print time in chats using Fuzzy Clock. Value of fuzziness from 1 to 4, or 0 to disable fuzzyclock. 1 is the most precise clock, 4 the least precise one. This is used only if print_time is \'sometimes\'.') ], 'emoticons_theme': [opt_str, 'noto-emoticons', '', True ], + 'ascii_emoticons': [opt_bool, True, _('Enable ASCII emoticons'), True], 'ascii_formatting': [ opt_bool, True, _('Treat * / _ pairs as possible formatting characters.'), True], 'show_ascii_formatting_chars': [ opt_bool, True, _('If True, do not ' diff --git a/gajim/emoticons.py b/gajim/emoticons.py index f37142494..3d086c1e0 100644 --- a/gajim/emoticons.py +++ b/gajim/emoticons.py @@ -59,7 +59,7 @@ class SubPixbuf: return subpixbuf -def load(path): +def load(path, ascii_emoticons): module_name = 'emoticons_theme.py' theme_path = os.path.join(path, module_name) if sys.platform == 'win32' and not os.path.exists(theme_path): @@ -87,6 +87,12 @@ def load(path): def add_emoticon(codepoint_, sub, mod_list=None): pix = sub.get_pixbuf() for alternate in codepoint_: + if not ascii_emoticons: + try: + alternate.encode('ascii') + continue + except UnicodeEncodeError: + pass codepoints[alternate] = pix if pix not in pixbufs: pixbufs[pix] = alternate diff --git a/gajim/gui_interface.py b/gajim/gui_interface.py index dbe4f2d55..60331e942 100644 --- a/gajim/gui_interface.py +++ b/gajim/gui_interface.py @@ -1925,6 +1925,7 @@ class Interface: def init_emoticons(self): emot_theme = app.config.get('emoticons_theme') + ascii_emoticons = app.config.get('ascii_emoticons') if not emot_theme: return @@ -1944,7 +1945,7 @@ class Interface: transient_for=transient_for) app.config.set('emoticons_theme', '') return - if not emoticons.load(path): + if not emoticons.load(path, ascii_emoticons): dialogs.WarningDialog( _('Emoticons disabled'), _('Your configured emoticons theme could not be loaded.' From 3be1c2093f04ca61cafcc33e66ee2006ce1a6ba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= Date: Sat, 16 Sep 2017 12:07:31 +0200 Subject: [PATCH 15/30] Move data files to module --- {data => gajim/data}/activities/Makefile.am | 0 .../default/doing_chores/buying_groceries.png | Bin .../activities/default/doing_chores/category.png | Bin .../activities/default/doing_chores/cleaning.png | Bin .../activities/default/doing_chores/cooking.png | Bin .../default/doing_chores/doing_maintenance.png | Bin .../default/doing_chores/doing_the_dishes.png | Bin .../default/doing_chores/doing_the_laundry.png | Bin .../activities/default/doing_chores/gardening.png | Bin .../default/doing_chores/running_an_errand.png | Bin .../default/doing_chores/walking_the_dog.png | Bin .../data}/activities/default/drinking/category.png | Bin .../activities/default/drinking/having_a_beer.png | Bin .../activities/default/drinking/having_coffee.png | Bin .../activities/default/drinking/having_tea.png | Bin .../data}/activities/default/eating/category.png | Bin .../activities/default/eating/having_a_snack.png | Bin .../activities/default/eating/having_breakfast.png | Bin .../activities/default/eating/having_dinner.png | Bin .../activities/default/eating/having_lunch.png | Bin .../activities/default/exercising/category.png | Bin .../data}/activities/default/exercising/cycling.png | Bin .../data}/activities/default/exercising/dancing.png | Bin .../data}/activities/default/exercising/hiking.png | Bin .../data}/activities/default/exercising/jogging.png | Bin .../default/exercising/playing_sports.png | Bin .../data}/activities/default/exercising/running.png | Bin .../data}/activities/default/exercising/skiing.png | Bin .../activities/default/exercising/swimming.png | Bin .../activities/default/exercising/working_out.png | Bin .../activities/default/grooming/at_the_spa.png | Bin .../activities/default/grooming/brushing_teeth.png | Bin .../data}/activities/default/grooming/category.png | Bin .../default/grooming/getting_a_haircut.png | Bin .../data}/activities/default/grooming/shaving.png | Bin .../activities/default/grooming/taking_a_bath.png | Bin .../activities/default/grooming/taking_a_shower.png | Bin .../default/having_appointment/category.png | Bin .../data}/activities/default/inactive/category.png | Bin .../data}/activities/default/inactive/day_off.png | Bin .../activities/default/inactive/hanging_out.png | Bin .../data}/activities/default/inactive/hiding.png | Bin .../activities/default/inactive/on_vacation.png | Bin .../data}/activities/default/inactive/praying.png | Bin .../default/inactive/scheduled_holiday.png | Bin .../data}/activities/default/inactive/sleeping.png | Bin .../data}/activities/default/inactive/thinking.png | Bin .../data}/activities/default/relaxing/category.png | Bin .../data}/activities/default/relaxing/fishing.png | Bin .../data}/activities/default/relaxing/gaming.png | Bin .../data}/activities/default/relaxing/going_out.png | Bin .../data}/activities/default/relaxing/partying.png | Bin .../data}/activities/default/relaxing/reading.png | Bin .../activities/default/relaxing/rehearsing.png | Bin .../data}/activities/default/relaxing/shopping.png | Bin .../data}/activities/default/relaxing/smoking.png | Bin .../activities/default/relaxing/socializing.png | Bin .../activities/default/relaxing/sunbathing.png | Bin .../default/relaxing/watching_a_movie.png | Bin .../activities/default/relaxing/watching_tv.png | Bin .../data}/activities/default/talking/category.png | Bin .../activities/default/talking/in_real_life.png | Bin .../activities/default/talking/on_the_phone.png | Bin .../activities/default/talking/on_video_phone.png | Bin .../data}/activities/default/traveling/category.png | Bin .../activities/default/traveling/commuting.png | Bin .../data}/activities/default/traveling/cycling.png | Bin .../data}/activities/default/traveling/driving.png | Bin .../data}/activities/default/traveling/in_a_car.png | Bin .../data}/activities/default/traveling/on_a_bus.png | Bin .../activities/default/traveling/on_a_plane.png | Bin .../activities/default/traveling/on_a_train.png | Bin .../activities/default/traveling/on_a_trip.png | Bin .../data}/activities/default/traveling/walking.png | Bin .../data}/activities/default/unknown/category.png | Bin .../data}/activities/default/working/category.png | Bin .../data}/activities/default/working/coding.png | Bin .../activities/default/working/in_a_meeting.png | Bin .../data}/activities/default/working/studying.png | Bin .../data}/activities/default/working/writing.png | Bin {data => gajim/data}/emoticons/Makefile.am | 0 .../emoticons/font-emoticons/emoticons_theme.py | 0 .../data}/emoticons/noto-emoticons/LICENSE | 0 .../data}/emoticons/noto-emoticons/README.md | 0 .../data}/emoticons/noto-emoticons/emoticons.png | Bin .../emoticons/noto-emoticons/emoticons_theme.py | 0 .../data}/emoticons/noto-emoticons/png/u0023.png | Bin .../emoticons/noto-emoticons/png/u0023_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u002a.png | Bin .../emoticons/noto-emoticons/png/u002a_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0030.png | Bin .../emoticons/noto-emoticons/png/u0030_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0031.png | Bin .../emoticons/noto-emoticons/png/u0031_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0032.png | Bin .../emoticons/noto-emoticons/png/u0032_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0033.png | Bin .../emoticons/noto-emoticons/png/u0033_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0034.png | Bin .../emoticons/noto-emoticons/png/u0034_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0035.png | Bin .../emoticons/noto-emoticons/png/u0035_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0036.png | Bin .../emoticons/noto-emoticons/png/u0036_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0037.png | Bin .../emoticons/noto-emoticons/png/u0037_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0038.png | Bin .../emoticons/noto-emoticons/png/u0038_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u0039.png | Bin .../emoticons/noto-emoticons/png/u0039_20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u00a9.png | Bin .../data}/emoticons/noto-emoticons/png/u00ae.png | Bin .../data}/emoticons/noto-emoticons/png/u1f004.png | Bin .../data}/emoticons/noto-emoticons/png/u1f0cf.png | Bin .../data}/emoticons/noto-emoticons/png/u1f170.png | Bin .../data}/emoticons/noto-emoticons/png/u1f171.png | Bin .../data}/emoticons/noto-emoticons/png/u1f17e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f17f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f18e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f191.png | Bin .../data}/emoticons/noto-emoticons/png/u1f192.png | Bin .../data}/emoticons/noto-emoticons/png/u1f193.png | Bin .../data}/emoticons/noto-emoticons/png/u1f194.png | Bin .../data}/emoticons/noto-emoticons/png/u1f195.png | Bin .../data}/emoticons/noto-emoticons/png/u1f196.png | Bin .../data}/emoticons/noto-emoticons/png/u1f197.png | Bin .../data}/emoticons/noto-emoticons/png/u1f198.png | Bin .../data}/emoticons/noto-emoticons/png/u1f199.png | Bin .../data}/emoticons/noto-emoticons/png/u1f19a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1e6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1e7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1e8.png | Bin .../emoticons/noto-emoticons/png/u1f1e8_1f1f3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1e9.png | Bin .../emoticons/noto-emoticons/png/u1f1e9_1f1ea.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1ea.png | Bin .../emoticons/noto-emoticons/png/u1f1ea_1f1f8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1eb.png | Bin .../emoticons/noto-emoticons/png/u1f1eb_1f1f7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1ec.png | Bin .../emoticons/noto-emoticons/png/u1f1ec_1f1e7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1ed.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1ee.png | Bin .../emoticons/noto-emoticons/png/u1f1ee_1f1f9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1ef.png | Bin .../emoticons/noto-emoticons/png/u1f1ef_1f1f5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f0.png | Bin .../emoticons/noto-emoticons/png/u1f1f0_1f1f7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f7.png | Bin .../emoticons/noto-emoticons/png/u1f1f7_1f1fa.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1f9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1fa.png | Bin .../emoticons/noto-emoticons/png/u1f1fa_1f1f8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1fb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1fc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1fd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1fe.png | Bin .../data}/emoticons/noto-emoticons/png/u1f1ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f201.png | Bin .../data}/emoticons/noto-emoticons/png/u1f202.png | Bin .../data}/emoticons/noto-emoticons/png/u1f21a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f22f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f232.png | Bin .../data}/emoticons/noto-emoticons/png/u1f233.png | Bin .../data}/emoticons/noto-emoticons/png/u1f234.png | Bin .../data}/emoticons/noto-emoticons/png/u1f235.png | Bin .../data}/emoticons/noto-emoticons/png/u1f236.png | Bin .../data}/emoticons/noto-emoticons/png/u1f237.png | Bin .../data}/emoticons/noto-emoticons/png/u1f238.png | Bin .../data}/emoticons/noto-emoticons/png/u1f239.png | Bin .../data}/emoticons/noto-emoticons/png/u1f23a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f250.png | Bin .../data}/emoticons/noto-emoticons/png/u1f251.png | Bin .../data}/emoticons/noto-emoticons/png/u1f300.png | Bin .../data}/emoticons/noto-emoticons/png/u1f301.png | Bin .../data}/emoticons/noto-emoticons/png/u1f302.png | Bin .../data}/emoticons/noto-emoticons/png/u1f303.png | Bin .../data}/emoticons/noto-emoticons/png/u1f304.png | Bin .../data}/emoticons/noto-emoticons/png/u1f305.png | Bin .../data}/emoticons/noto-emoticons/png/u1f306.png | Bin .../data}/emoticons/noto-emoticons/png/u1f307.png | Bin .../data}/emoticons/noto-emoticons/png/u1f308.png | Bin .../data}/emoticons/noto-emoticons/png/u1f309.png | Bin .../data}/emoticons/noto-emoticons/png/u1f30a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f30b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f30c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f30d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f30e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f30f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f310.png | Bin .../data}/emoticons/noto-emoticons/png/u1f311.png | Bin .../data}/emoticons/noto-emoticons/png/u1f312.png | Bin .../data}/emoticons/noto-emoticons/png/u1f313.png | Bin .../data}/emoticons/noto-emoticons/png/u1f314.png | Bin .../data}/emoticons/noto-emoticons/png/u1f315.png | Bin .../data}/emoticons/noto-emoticons/png/u1f316.png | Bin .../data}/emoticons/noto-emoticons/png/u1f317.png | Bin .../data}/emoticons/noto-emoticons/png/u1f318.png | Bin .../data}/emoticons/noto-emoticons/png/u1f319.png | Bin .../data}/emoticons/noto-emoticons/png/u1f31a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f31b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f31c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f31d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f31e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f31f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f320.png | Bin .../data}/emoticons/noto-emoticons/png/u1f321.png | Bin .../data}/emoticons/noto-emoticons/png/u1f324.png | Bin .../data}/emoticons/noto-emoticons/png/u1f325.png | Bin .../data}/emoticons/noto-emoticons/png/u1f326.png | Bin .../data}/emoticons/noto-emoticons/png/u1f327.png | Bin .../data}/emoticons/noto-emoticons/png/u1f328.png | Bin .../data}/emoticons/noto-emoticons/png/u1f329.png | Bin .../data}/emoticons/noto-emoticons/png/u1f32a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f32b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f32c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f32d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f32e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f32f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f330.png | Bin .../data}/emoticons/noto-emoticons/png/u1f331.png | Bin .../data}/emoticons/noto-emoticons/png/u1f332.png | Bin .../data}/emoticons/noto-emoticons/png/u1f333.png | Bin .../data}/emoticons/noto-emoticons/png/u1f334.png | Bin .../data}/emoticons/noto-emoticons/png/u1f335.png | Bin .../data}/emoticons/noto-emoticons/png/u1f336.png | Bin .../data}/emoticons/noto-emoticons/png/u1f337.png | Bin .../data}/emoticons/noto-emoticons/png/u1f338.png | Bin .../data}/emoticons/noto-emoticons/png/u1f339.png | Bin .../data}/emoticons/noto-emoticons/png/u1f33a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f33b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f33c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f33d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f33e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f33f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f340.png | Bin .../data}/emoticons/noto-emoticons/png/u1f341.png | Bin .../data}/emoticons/noto-emoticons/png/u1f342.png | Bin .../data}/emoticons/noto-emoticons/png/u1f343.png | Bin .../data}/emoticons/noto-emoticons/png/u1f344.png | Bin .../data}/emoticons/noto-emoticons/png/u1f345.png | Bin .../data}/emoticons/noto-emoticons/png/u1f346.png | Bin .../data}/emoticons/noto-emoticons/png/u1f347.png | Bin .../data}/emoticons/noto-emoticons/png/u1f348.png | Bin .../data}/emoticons/noto-emoticons/png/u1f349.png | Bin .../data}/emoticons/noto-emoticons/png/u1f34a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f34b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f34c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f34d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f34e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f34f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f350.png | Bin .../data}/emoticons/noto-emoticons/png/u1f351.png | Bin .../data}/emoticons/noto-emoticons/png/u1f352.png | Bin .../data}/emoticons/noto-emoticons/png/u1f353.png | Bin .../data}/emoticons/noto-emoticons/png/u1f354.png | Bin .../data}/emoticons/noto-emoticons/png/u1f355.png | Bin .../data}/emoticons/noto-emoticons/png/u1f356.png | Bin .../data}/emoticons/noto-emoticons/png/u1f357.png | Bin .../data}/emoticons/noto-emoticons/png/u1f358.png | Bin .../data}/emoticons/noto-emoticons/png/u1f359.png | Bin .../data}/emoticons/noto-emoticons/png/u1f35a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f35b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f35c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f35d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f35e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f35f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f360.png | Bin .../data}/emoticons/noto-emoticons/png/u1f361.png | Bin .../data}/emoticons/noto-emoticons/png/u1f362.png | Bin .../data}/emoticons/noto-emoticons/png/u1f363.png | Bin .../data}/emoticons/noto-emoticons/png/u1f364.png | Bin .../data}/emoticons/noto-emoticons/png/u1f365.png | Bin .../data}/emoticons/noto-emoticons/png/u1f366.png | Bin .../data}/emoticons/noto-emoticons/png/u1f367.png | Bin .../data}/emoticons/noto-emoticons/png/u1f368.png | Bin .../data}/emoticons/noto-emoticons/png/u1f369.png | Bin .../data}/emoticons/noto-emoticons/png/u1f36a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f36b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f36c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f36d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f36e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f36f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f370.png | Bin .../data}/emoticons/noto-emoticons/png/u1f371.png | Bin .../data}/emoticons/noto-emoticons/png/u1f372.png | Bin .../data}/emoticons/noto-emoticons/png/u1f373.png | Bin .../data}/emoticons/noto-emoticons/png/u1f374.png | Bin .../data}/emoticons/noto-emoticons/png/u1f375.png | Bin .../data}/emoticons/noto-emoticons/png/u1f376.png | Bin .../data}/emoticons/noto-emoticons/png/u1f377.png | Bin .../data}/emoticons/noto-emoticons/png/u1f378.png | Bin .../data}/emoticons/noto-emoticons/png/u1f379.png | Bin .../data}/emoticons/noto-emoticons/png/u1f37a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f37b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f37c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f37d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f37e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f37f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f380.png | Bin .../data}/emoticons/noto-emoticons/png/u1f381.png | Bin .../data}/emoticons/noto-emoticons/png/u1f382.png | Bin .../data}/emoticons/noto-emoticons/png/u1f383.png | Bin .../data}/emoticons/noto-emoticons/png/u1f384.png | Bin .../data}/emoticons/noto-emoticons/png/u1f385.png | Bin .../emoticons/noto-emoticons/png/u1f385_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f385_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f385_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f385_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f385_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f386.png | Bin .../data}/emoticons/noto-emoticons/png/u1f387.png | Bin .../data}/emoticons/noto-emoticons/png/u1f388.png | Bin .../data}/emoticons/noto-emoticons/png/u1f389.png | Bin .../data}/emoticons/noto-emoticons/png/u1f38a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f38b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f38c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f38d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f38e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f38f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f390.png | Bin .../data}/emoticons/noto-emoticons/png/u1f391.png | Bin .../data}/emoticons/noto-emoticons/png/u1f392.png | Bin .../data}/emoticons/noto-emoticons/png/u1f393.png | Bin .../data}/emoticons/noto-emoticons/png/u1f396.png | Bin .../data}/emoticons/noto-emoticons/png/u1f397.png | Bin .../data}/emoticons/noto-emoticons/png/u1f399.png | Bin .../data}/emoticons/noto-emoticons/png/u1f39a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f39b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f39e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f39f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3a9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3aa.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ab.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ac.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ad.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ae.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3af.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3b9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ba.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3bb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3bc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3bd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3be.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3bf.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c3.png | Bin .../emoticons/noto-emoticons/png/u1f3c3_1f3fb.png | Bin .../noto-emoticons/png/u1f3c3_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f3c3_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3c3_1f3fc.png | Bin .../noto-emoticons/png/u1f3c3_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f3c3_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3c3_1f3fd.png | Bin .../noto-emoticons/png/u1f3c3_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f3c3_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3c3_1f3fe.png | Bin .../noto-emoticons/png/u1f3c3_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f3c3_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3c3_1f3ff.png | Bin .../noto-emoticons/png/u1f3c3_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f3c3_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f3c3_200d_2640.png | Bin .../noto-emoticons/png/u1f3c3_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c4.png | Bin .../emoticons/noto-emoticons/png/u1f3c4_1f3fb.png | Bin .../noto-emoticons/png/u1f3c4_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f3c4_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3c4_1f3fc.png | Bin .../noto-emoticons/png/u1f3c4_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f3c4_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3c4_1f3fd.png | Bin .../noto-emoticons/png/u1f3c4_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f3c4_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3c4_1f3fe.png | Bin .../noto-emoticons/png/u1f3c4_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f3c4_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3c4_1f3ff.png | Bin .../noto-emoticons/png/u1f3c4_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f3c4_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f3c4_200d_2640.png | Bin .../noto-emoticons/png/u1f3c4_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3c9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ca.png | Bin .../emoticons/noto-emoticons/png/u1f3ca_1f3fb.png | Bin .../noto-emoticons/png/u1f3ca_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f3ca_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3ca_1f3fc.png | Bin .../noto-emoticons/png/u1f3ca_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f3ca_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3ca_1f3fd.png | Bin .../noto-emoticons/png/u1f3ca_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f3ca_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3ca_1f3fe.png | Bin .../noto-emoticons/png/u1f3ca_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f3ca_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3ca_1f3ff.png | Bin .../noto-emoticons/png/u1f3ca_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f3ca_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f3ca_200d_2640.png | Bin .../noto-emoticons/png/u1f3ca_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3cb.png | Bin .../emoticons/noto-emoticons/png/u1f3cb_1f3fb.png | Bin .../noto-emoticons/png/u1f3cb_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f3cb_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3cb_1f3fc.png | Bin .../noto-emoticons/png/u1f3cb_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f3cb_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3cb_1f3fd.png | Bin .../noto-emoticons/png/u1f3cb_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f3cb_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3cb_1f3fe.png | Bin .../noto-emoticons/png/u1f3cb_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f3cb_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f3cb_1f3ff.png | Bin .../noto-emoticons/png/u1f3cb_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f3cb_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f3cb_200d_2640.png | Bin .../noto-emoticons/png/u1f3cb_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3cc.png | Bin .../noto-emoticons/png/u1f3cc_200d_2640.png | Bin .../noto-emoticons/png/u1f3cc_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3cd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ce.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3cf.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3d9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3da.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3db.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3dc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3dd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3de.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3df.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3e9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ea.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3eb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ec.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ed.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ee.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ef.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3f0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3f3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3f4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3f5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3f7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3f8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3f9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3fa.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3fb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3fc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3fd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3fe.png | Bin .../data}/emoticons/noto-emoticons/png/u1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f400.png | Bin .../data}/emoticons/noto-emoticons/png/u1f401.png | Bin .../data}/emoticons/noto-emoticons/png/u1f402.png | Bin .../data}/emoticons/noto-emoticons/png/u1f403.png | Bin .../data}/emoticons/noto-emoticons/png/u1f404.png | Bin .../data}/emoticons/noto-emoticons/png/u1f405.png | Bin .../data}/emoticons/noto-emoticons/png/u1f406.png | Bin .../data}/emoticons/noto-emoticons/png/u1f407.png | Bin .../data}/emoticons/noto-emoticons/png/u1f408.png | Bin .../data}/emoticons/noto-emoticons/png/u1f409.png | Bin .../data}/emoticons/noto-emoticons/png/u1f40a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f40b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f40c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f40d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f40e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f40f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f410.png | Bin .../data}/emoticons/noto-emoticons/png/u1f411.png | Bin .../data}/emoticons/noto-emoticons/png/u1f412.png | Bin .../data}/emoticons/noto-emoticons/png/u1f413.png | Bin .../data}/emoticons/noto-emoticons/png/u1f414.png | Bin .../data}/emoticons/noto-emoticons/png/u1f415.png | Bin .../data}/emoticons/noto-emoticons/png/u1f416.png | Bin .../data}/emoticons/noto-emoticons/png/u1f417.png | Bin .../data}/emoticons/noto-emoticons/png/u1f418.png | Bin .../data}/emoticons/noto-emoticons/png/u1f419.png | Bin .../data}/emoticons/noto-emoticons/png/u1f41a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f41b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f41c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f41d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f41e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f41f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f420.png | Bin .../data}/emoticons/noto-emoticons/png/u1f421.png | Bin .../data}/emoticons/noto-emoticons/png/u1f422.png | Bin .../data}/emoticons/noto-emoticons/png/u1f423.png | Bin .../data}/emoticons/noto-emoticons/png/u1f424.png | Bin .../data}/emoticons/noto-emoticons/png/u1f425.png | Bin .../data}/emoticons/noto-emoticons/png/u1f426.png | Bin .../data}/emoticons/noto-emoticons/png/u1f427.png | Bin .../data}/emoticons/noto-emoticons/png/u1f428.png | Bin .../data}/emoticons/noto-emoticons/png/u1f429.png | Bin .../data}/emoticons/noto-emoticons/png/u1f42a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f42b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f42c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f42d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f42e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f42f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f430.png | Bin .../data}/emoticons/noto-emoticons/png/u1f431.png | Bin .../data}/emoticons/noto-emoticons/png/u1f432.png | Bin .../data}/emoticons/noto-emoticons/png/u1f433.png | Bin .../data}/emoticons/noto-emoticons/png/u1f434.png | Bin .../data}/emoticons/noto-emoticons/png/u1f435.png | Bin .../data}/emoticons/noto-emoticons/png/u1f436.png | Bin .../data}/emoticons/noto-emoticons/png/u1f437.png | Bin .../data}/emoticons/noto-emoticons/png/u1f438.png | Bin .../data}/emoticons/noto-emoticons/png/u1f439.png | Bin .../data}/emoticons/noto-emoticons/png/u1f43a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f43b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f43c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f43d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f43e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f43f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f440.png | Bin .../data}/emoticons/noto-emoticons/png/u1f441.png | Bin .../noto-emoticons/png/u1f441_200d_1f5e8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f442.png | Bin .../emoticons/noto-emoticons/png/u1f442_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f442_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f442_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f442_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f442_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f443.png | Bin .../emoticons/noto-emoticons/png/u1f443_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f443_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f443_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f443_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f443_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f444.png | Bin .../data}/emoticons/noto-emoticons/png/u1f445.png | Bin .../data}/emoticons/noto-emoticons/png/u1f446.png | Bin .../emoticons/noto-emoticons/png/u1f446_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f446_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f446_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f446_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f446_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f447.png | Bin .../emoticons/noto-emoticons/png/u1f447_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f447_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f447_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f447_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f447_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f448.png | Bin .../emoticons/noto-emoticons/png/u1f448_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f448_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f448_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f448_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f448_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f449.png | Bin .../emoticons/noto-emoticons/png/u1f449_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f449_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f449_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f449_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f449_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f44a.png | Bin .../emoticons/noto-emoticons/png/u1f44a_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f44a_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f44a_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f44a_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f44a_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f44b.png | Bin .../emoticons/noto-emoticons/png/u1f44b_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f44b_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f44b_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f44b_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f44b_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f44c.png | Bin .../emoticons/noto-emoticons/png/u1f44c_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f44c_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f44c_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f44c_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f44c_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f44d.png | Bin .../emoticons/noto-emoticons/png/u1f44d_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f44d_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f44d_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f44d_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f44d_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f44e.png | Bin .../emoticons/noto-emoticons/png/u1f44e_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f44e_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f44e_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f44e_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f44e_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f44f.png | Bin .../emoticons/noto-emoticons/png/u1f44f_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f44f_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f44f_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f44f_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f44f_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f450.png | Bin .../emoticons/noto-emoticons/png/u1f450_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f450_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f450_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f450_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f450_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f451.png | Bin .../data}/emoticons/noto-emoticons/png/u1f452.png | Bin .../data}/emoticons/noto-emoticons/png/u1f453.png | Bin .../data}/emoticons/noto-emoticons/png/u1f454.png | Bin .../data}/emoticons/noto-emoticons/png/u1f455.png | Bin .../data}/emoticons/noto-emoticons/png/u1f456.png | Bin .../data}/emoticons/noto-emoticons/png/u1f457.png | Bin .../data}/emoticons/noto-emoticons/png/u1f458.png | Bin .../data}/emoticons/noto-emoticons/png/u1f459.png | Bin .../data}/emoticons/noto-emoticons/png/u1f45a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f45b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f45c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f45d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f45e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f45f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f460.png | Bin .../data}/emoticons/noto-emoticons/png/u1f461.png | Bin .../data}/emoticons/noto-emoticons/png/u1f462.png | Bin .../data}/emoticons/noto-emoticons/png/u1f463.png | Bin .../data}/emoticons/noto-emoticons/png/u1f464.png | Bin .../data}/emoticons/noto-emoticons/png/u1f465.png | Bin .../data}/emoticons/noto-emoticons/png/u1f466.png | Bin .../emoticons/noto-emoticons/png/u1f466_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f466_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f466_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f466_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f466_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f467.png | Bin .../emoticons/noto-emoticons/png/u1f467_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f467_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f467_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f467_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f467_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f468.png | Bin .../emoticons/noto-emoticons/png/u1f468_1f3fb.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f33e.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f373.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f393.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f527.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f52c.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f680.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_1f692.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_2695.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_2696.png | Bin .../noto-emoticons/png/u1f468_1f3fb_200d_2708.png | Bin .../emoticons/noto-emoticons/png/u1f468_1f3fc.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f33e.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f373.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f393.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f527.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f52c.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f680.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_1f692.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_2695.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_2696.png | Bin .../noto-emoticons/png/u1f468_1f3fc_200d_2708.png | Bin .../emoticons/noto-emoticons/png/u1f468_1f3fd.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f33e.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f373.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f393.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f527.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f52c.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f680.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_1f692.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_2695.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_2696.png | Bin .../noto-emoticons/png/u1f468_1f3fd_200d_2708.png | Bin .../emoticons/noto-emoticons/png/u1f468_1f3fe.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f33e.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f373.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f393.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f527.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f52c.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f680.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_1f692.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_2695.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_2696.png | Bin .../noto-emoticons/png/u1f468_1f3fe_200d_2708.png | Bin .../emoticons/noto-emoticons/png/u1f468_1f3ff.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f33e.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f373.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f393.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f527.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f52c.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f680.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_1f692.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_2695.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_2696.png | Bin .../noto-emoticons/png/u1f468_1f3ff_200d_2708.png | Bin .../noto-emoticons/png/u1f468_200d_1f33e.png | Bin .../noto-emoticons/png/u1f468_200d_1f373.png | Bin .../noto-emoticons/png/u1f468_200d_1f393.png | Bin .../noto-emoticons/png/u1f468_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f468_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f468_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f468_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f468_200d_1f466.png | Bin .../png/u1f468_200d_1f466_200d_1f466.png | Bin .../noto-emoticons/png/u1f468_200d_1f467.png | Bin .../png/u1f468_200d_1f467_200d_1f466.png | Bin .../png/u1f468_200d_1f467_200d_1f467.png | Bin .../png/u1f468_200d_1f468_200d_1f466.png | Bin .../png/u1f468_200d_1f468_200d_1f466_200d_1f466.png | Bin .../png/u1f468_200d_1f468_200d_1f467.png | Bin .../png/u1f468_200d_1f468_200d_1f467_200d_1f466.png | Bin .../png/u1f468_200d_1f468_200d_1f467_200d_1f467.png | Bin .../png/u1f468_200d_1f469_200d_1f466.png | Bin .../png/u1f468_200d_1f469_200d_1f466_200d_1f466.png | Bin .../png/u1f468_200d_1f469_200d_1f467.png | Bin .../png/u1f468_200d_1f469_200d_1f467_200d_1f466.png | Bin .../png/u1f468_200d_1f469_200d_1f467_200d_1f467.png | Bin .../noto-emoticons/png/u1f468_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f468_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f468_200d_1f527.png | Bin .../noto-emoticons/png/u1f468_200d_1f52c.png | Bin .../noto-emoticons/png/u1f468_200d_1f680.png | Bin .../noto-emoticons/png/u1f468_200d_1f692.png | Bin .../noto-emoticons/png/u1f468_200d_2695.png | Bin .../noto-emoticons/png/u1f468_200d_2696.png | Bin .../noto-emoticons/png/u1f468_200d_2708.png | Bin .../png/u1f468_200d_2764_200d_1f468.png | Bin .../png/u1f468_200d_2764_200d_1f48b_200d_1f468.png | Bin .../data}/emoticons/noto-emoticons/png/u1f469.png | Bin .../emoticons/noto-emoticons/png/u1f469_1f3fb.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f33e.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f373.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f393.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f527.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f52c.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f680.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_1f692.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_2695.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_2696.png | Bin .../noto-emoticons/png/u1f469_1f3fb_200d_2708.png | Bin .../emoticons/noto-emoticons/png/u1f469_1f3fc.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f33e.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f373.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f393.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f527.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f52c.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f680.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_1f692.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_2695.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_2696.png | Bin .../noto-emoticons/png/u1f469_1f3fc_200d_2708.png | Bin .../emoticons/noto-emoticons/png/u1f469_1f3fd.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f33e.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f373.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f393.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f527.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f52c.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f680.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_1f692.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_2695.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_2696.png | Bin .../noto-emoticons/png/u1f469_1f3fd_200d_2708.png | Bin .../emoticons/noto-emoticons/png/u1f469_1f3fe.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f33e.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f373.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f393.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f527.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f52c.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f680.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_1f692.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_2695.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_2696.png | Bin .../noto-emoticons/png/u1f469_1f3fe_200d_2708.png | Bin .../emoticons/noto-emoticons/png/u1f469_1f3ff.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f33e.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f373.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f393.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f527.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f52c.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f680.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_1f692.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_2695.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_2696.png | Bin .../noto-emoticons/png/u1f469_1f3ff_200d_2708.png | Bin .../noto-emoticons/png/u1f469_200d_1f33e.png | Bin .../noto-emoticons/png/u1f469_200d_1f373.png | Bin .../noto-emoticons/png/u1f469_200d_1f393.png | Bin .../noto-emoticons/png/u1f469_200d_1f3a4.png | Bin .../noto-emoticons/png/u1f469_200d_1f3a8.png | Bin .../noto-emoticons/png/u1f469_200d_1f3eb.png | Bin .../noto-emoticons/png/u1f469_200d_1f3ed.png | Bin .../noto-emoticons/png/u1f469_200d_1f466.png | Bin .../png/u1f469_200d_1f466_200d_1f466.png | Bin .../noto-emoticons/png/u1f469_200d_1f467.png | Bin .../png/u1f469_200d_1f467_200d_1f466.png | Bin .../png/u1f469_200d_1f467_200d_1f467.png | Bin .../png/u1f469_200d_1f469_200d_1f466.png | Bin .../png/u1f469_200d_1f469_200d_1f466_200d_1f466.png | Bin .../png/u1f469_200d_1f469_200d_1f467.png | Bin .../png/u1f469_200d_1f469_200d_1f467_200d_1f466.png | Bin .../png/u1f469_200d_1f469_200d_1f467_200d_1f467.png | Bin .../noto-emoticons/png/u1f469_200d_1f4bb.png | Bin .../noto-emoticons/png/u1f469_200d_1f4bc.png | Bin .../noto-emoticons/png/u1f469_200d_1f527.png | Bin .../noto-emoticons/png/u1f469_200d_1f52c.png | Bin .../noto-emoticons/png/u1f469_200d_1f680.png | Bin .../noto-emoticons/png/u1f469_200d_1f692.png | Bin .../noto-emoticons/png/u1f469_200d_2695.png | Bin .../noto-emoticons/png/u1f469_200d_2696.png | Bin .../noto-emoticons/png/u1f469_200d_2708.png | Bin .../png/u1f469_200d_2764_200d_1f468.png | Bin .../png/u1f469_200d_2764_200d_1f469.png | Bin .../png/u1f469_200d_2764_200d_1f48b_200d_1f468.png | Bin .../png/u1f469_200d_2764_200d_1f48b_200d_1f469.png | Bin .../data}/emoticons/noto-emoticons/png/u1f46a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f46b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f46c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f46d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f46e.png | Bin .../emoticons/noto-emoticons/png/u1f46e_1f3fb.png | Bin .../noto-emoticons/png/u1f46e_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f46e_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f46e_1f3fc.png | Bin .../noto-emoticons/png/u1f46e_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f46e_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f46e_1f3fd.png | Bin .../noto-emoticons/png/u1f46e_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f46e_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f46e_1f3fe.png | Bin .../noto-emoticons/png/u1f46e_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f46e_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f46e_1f3ff.png | Bin .../noto-emoticons/png/u1f46e_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f46e_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f46e_200d_2640.png | Bin .../noto-emoticons/png/u1f46e_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f46f.png | Bin .../noto-emoticons/png/u1f46f_200d_2640.png | Bin .../noto-emoticons/png/u1f46f_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f470.png | Bin .../emoticons/noto-emoticons/png/u1f470_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f470_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f470_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f470_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f470_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f471.png | Bin .../emoticons/noto-emoticons/png/u1f471_1f3fb.png | Bin .../noto-emoticons/png/u1f471_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f471_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f471_1f3fc.png | Bin .../noto-emoticons/png/u1f471_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f471_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f471_1f3fd.png | Bin .../noto-emoticons/png/u1f471_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f471_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f471_1f3fe.png | Bin .../noto-emoticons/png/u1f471_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f471_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f471_1f3ff.png | Bin .../noto-emoticons/png/u1f471_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f471_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f471_200d_2640.png | Bin .../noto-emoticons/png/u1f471_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f472.png | Bin .../emoticons/noto-emoticons/png/u1f472_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f472_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f472_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f472_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f472_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f473.png | Bin .../emoticons/noto-emoticons/png/u1f473_1f3fb.png | Bin .../noto-emoticons/png/u1f473_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f473_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f473_1f3fc.png | Bin .../noto-emoticons/png/u1f473_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f473_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f473_1f3fd.png | Bin .../noto-emoticons/png/u1f473_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f473_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f473_1f3fe.png | Bin .../noto-emoticons/png/u1f473_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f473_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f473_1f3ff.png | Bin .../noto-emoticons/png/u1f473_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f473_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f473_200d_2640.png | Bin .../noto-emoticons/png/u1f473_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f474.png | Bin .../emoticons/noto-emoticons/png/u1f474_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f474_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f474_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f474_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f474_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f475.png | Bin .../emoticons/noto-emoticons/png/u1f475_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f475_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f475_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f475_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f475_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f476.png | Bin .../emoticons/noto-emoticons/png/u1f476_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f476_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f476_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f476_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f476_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f477.png | Bin .../emoticons/noto-emoticons/png/u1f477_1f3fb.png | Bin .../noto-emoticons/png/u1f477_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f477_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f477_1f3fc.png | Bin .../noto-emoticons/png/u1f477_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f477_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f477_1f3fd.png | Bin .../noto-emoticons/png/u1f477_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f477_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f477_1f3fe.png | Bin .../noto-emoticons/png/u1f477_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f477_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f477_1f3ff.png | Bin .../noto-emoticons/png/u1f477_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f477_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f477_200d_2640.png | Bin .../noto-emoticons/png/u1f477_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f478.png | Bin .../emoticons/noto-emoticons/png/u1f478_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f478_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f478_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f478_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f478_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f479.png | Bin .../data}/emoticons/noto-emoticons/png/u1f47a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f47b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f47c.png | Bin .../emoticons/noto-emoticons/png/u1f47c_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f47c_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f47c_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f47c_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f47c_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f47d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f47e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f47f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f480.png | Bin .../data}/emoticons/noto-emoticons/png/u1f481.png | Bin .../emoticons/noto-emoticons/png/u1f481_1f3fb.png | Bin .../noto-emoticons/png/u1f481_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f481_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f481_1f3fc.png | Bin .../noto-emoticons/png/u1f481_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f481_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f481_1f3fd.png | Bin .../noto-emoticons/png/u1f481_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f481_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f481_1f3fe.png | Bin .../noto-emoticons/png/u1f481_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f481_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f481_1f3ff.png | Bin .../noto-emoticons/png/u1f481_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f481_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f481_200d_2640.png | Bin .../noto-emoticons/png/u1f481_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f482.png | Bin .../emoticons/noto-emoticons/png/u1f482_1f3fb.png | Bin .../noto-emoticons/png/u1f482_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f482_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f482_1f3fc.png | Bin .../noto-emoticons/png/u1f482_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f482_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f482_1f3fd.png | Bin .../noto-emoticons/png/u1f482_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f482_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f482_1f3fe.png | Bin .../noto-emoticons/png/u1f482_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f482_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f482_1f3ff.png | Bin .../noto-emoticons/png/u1f482_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f482_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f482_200d_2640.png | Bin .../noto-emoticons/png/u1f482_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f483.png | Bin .../emoticons/noto-emoticons/png/u1f483_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f483_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f483_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f483_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f483_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f484.png | Bin .../data}/emoticons/noto-emoticons/png/u1f485.png | Bin .../emoticons/noto-emoticons/png/u1f485_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f485_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f485_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f485_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f485_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f486.png | Bin .../emoticons/noto-emoticons/png/u1f486_1f3fb.png | Bin .../noto-emoticons/png/u1f486_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f486_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f486_1f3fc.png | Bin .../noto-emoticons/png/u1f486_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f486_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f486_1f3fd.png | Bin .../noto-emoticons/png/u1f486_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f486_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f486_1f3fe.png | Bin .../noto-emoticons/png/u1f486_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f486_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f486_1f3ff.png | Bin .../noto-emoticons/png/u1f486_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f486_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f486_200d_2640.png | Bin .../noto-emoticons/png/u1f486_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f487.png | Bin .../emoticons/noto-emoticons/png/u1f487_1f3fb.png | Bin .../noto-emoticons/png/u1f487_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f487_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f487_1f3fc.png | Bin .../noto-emoticons/png/u1f487_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f487_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f487_1f3fd.png | Bin .../noto-emoticons/png/u1f487_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f487_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f487_1f3fe.png | Bin .../noto-emoticons/png/u1f487_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f487_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f487_1f3ff.png | Bin .../noto-emoticons/png/u1f487_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f487_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f487_200d_2640.png | Bin .../noto-emoticons/png/u1f487_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f488.png | Bin .../data}/emoticons/noto-emoticons/png/u1f489.png | Bin .../data}/emoticons/noto-emoticons/png/u1f48a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f48b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f48c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f48d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f48e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f490.png | Bin .../data}/emoticons/noto-emoticons/png/u1f492.png | Bin .../data}/emoticons/noto-emoticons/png/u1f493.png | Bin .../data}/emoticons/noto-emoticons/png/u1f494.png | Bin .../data}/emoticons/noto-emoticons/png/u1f495.png | Bin .../data}/emoticons/noto-emoticons/png/u1f496.png | Bin .../data}/emoticons/noto-emoticons/png/u1f497.png | Bin .../data}/emoticons/noto-emoticons/png/u1f498.png | Bin .../data}/emoticons/noto-emoticons/png/u1f499.png | Bin .../data}/emoticons/noto-emoticons/png/u1f49a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f49b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f49c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f49d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f49e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f49f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4a9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4aa.png | Bin .../emoticons/noto-emoticons/png/u1f4aa_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f4aa_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f4aa_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f4aa_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f4aa_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ab.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ac.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ad.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ae.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4af.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4b9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ba.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4bb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4bc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4bd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4be.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4bf.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4c9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ca.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4cb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4cc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4cd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ce.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4cf.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4d9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4da.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4db.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4dc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4dd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4de.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4df.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4e9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ea.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4eb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ec.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ed.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ee.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ef.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4f9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4fa.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4fb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4fc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4fd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f4ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f500.png | Bin .../data}/emoticons/noto-emoticons/png/u1f501.png | Bin .../data}/emoticons/noto-emoticons/png/u1f502.png | Bin .../data}/emoticons/noto-emoticons/png/u1f503.png | Bin .../data}/emoticons/noto-emoticons/png/u1f504.png | Bin .../data}/emoticons/noto-emoticons/png/u1f505.png | Bin .../data}/emoticons/noto-emoticons/png/u1f506.png | Bin .../data}/emoticons/noto-emoticons/png/u1f507.png | Bin .../data}/emoticons/noto-emoticons/png/u1f508.png | Bin .../data}/emoticons/noto-emoticons/png/u1f509.png | Bin .../data}/emoticons/noto-emoticons/png/u1f50a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f50b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f50c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f50d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f50e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f50f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f510.png | Bin .../data}/emoticons/noto-emoticons/png/u1f511.png | Bin .../data}/emoticons/noto-emoticons/png/u1f512.png | Bin .../data}/emoticons/noto-emoticons/png/u1f513.png | Bin .../data}/emoticons/noto-emoticons/png/u1f514.png | Bin .../data}/emoticons/noto-emoticons/png/u1f515.png | Bin .../data}/emoticons/noto-emoticons/png/u1f516.png | Bin .../data}/emoticons/noto-emoticons/png/u1f517.png | Bin .../data}/emoticons/noto-emoticons/png/u1f518.png | Bin .../data}/emoticons/noto-emoticons/png/u1f519.png | Bin .../data}/emoticons/noto-emoticons/png/u1f51a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f51b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f51c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f51d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f51e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f51f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f520.png | Bin .../data}/emoticons/noto-emoticons/png/u1f521.png | Bin .../data}/emoticons/noto-emoticons/png/u1f522.png | Bin .../data}/emoticons/noto-emoticons/png/u1f523.png | Bin .../data}/emoticons/noto-emoticons/png/u1f524.png | Bin .../data}/emoticons/noto-emoticons/png/u1f525.png | Bin .../data}/emoticons/noto-emoticons/png/u1f526.png | Bin .../data}/emoticons/noto-emoticons/png/u1f527.png | Bin .../data}/emoticons/noto-emoticons/png/u1f528.png | Bin .../data}/emoticons/noto-emoticons/png/u1f529.png | Bin .../data}/emoticons/noto-emoticons/png/u1f52a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f52b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f52c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f52d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f52e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f52f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f530.png | Bin .../data}/emoticons/noto-emoticons/png/u1f531.png | Bin .../data}/emoticons/noto-emoticons/png/u1f532.png | Bin .../data}/emoticons/noto-emoticons/png/u1f533.png | Bin .../data}/emoticons/noto-emoticons/png/u1f534.png | Bin .../data}/emoticons/noto-emoticons/png/u1f535.png | Bin .../data}/emoticons/noto-emoticons/png/u1f536.png | Bin .../data}/emoticons/noto-emoticons/png/u1f537.png | Bin .../data}/emoticons/noto-emoticons/png/u1f538.png | Bin .../data}/emoticons/noto-emoticons/png/u1f539.png | Bin .../data}/emoticons/noto-emoticons/png/u1f53a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f53b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f53c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f53d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f549.png | Bin .../data}/emoticons/noto-emoticons/png/u1f54a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f54b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f54c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f54d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f54e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f550.png | Bin .../data}/emoticons/noto-emoticons/png/u1f551.png | Bin .../data}/emoticons/noto-emoticons/png/u1f552.png | Bin .../data}/emoticons/noto-emoticons/png/u1f553.png | Bin .../data}/emoticons/noto-emoticons/png/u1f554.png | Bin .../data}/emoticons/noto-emoticons/png/u1f555.png | Bin .../data}/emoticons/noto-emoticons/png/u1f556.png | Bin .../data}/emoticons/noto-emoticons/png/u1f557.png | Bin .../data}/emoticons/noto-emoticons/png/u1f558.png | Bin .../data}/emoticons/noto-emoticons/png/u1f559.png | Bin .../data}/emoticons/noto-emoticons/png/u1f55a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f55b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f55c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f55d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f55e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f55f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f560.png | Bin .../data}/emoticons/noto-emoticons/png/u1f561.png | Bin .../data}/emoticons/noto-emoticons/png/u1f562.png | Bin .../data}/emoticons/noto-emoticons/png/u1f563.png | Bin .../data}/emoticons/noto-emoticons/png/u1f564.png | Bin .../data}/emoticons/noto-emoticons/png/u1f565.png | Bin .../data}/emoticons/noto-emoticons/png/u1f566.png | Bin .../data}/emoticons/noto-emoticons/png/u1f567.png | Bin .../data}/emoticons/noto-emoticons/png/u1f56f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f570.png | Bin .../data}/emoticons/noto-emoticons/png/u1f573.png | Bin .../data}/emoticons/noto-emoticons/png/u1f574.png | Bin .../data}/emoticons/noto-emoticons/png/u1f575.png | Bin .../emoticons/noto-emoticons/png/u1f575_1f3fb.png | Bin .../noto-emoticons/png/u1f575_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f575_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f575_1f3fc.png | Bin .../noto-emoticons/png/u1f575_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f575_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f575_1f3fd.png | Bin .../noto-emoticons/png/u1f575_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f575_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f575_1f3fe.png | Bin .../noto-emoticons/png/u1f575_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f575_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f575_1f3ff.png | Bin .../noto-emoticons/png/u1f575_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f575_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f575_200d_2640.png | Bin .../noto-emoticons/png/u1f575_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f576.png | Bin .../data}/emoticons/noto-emoticons/png/u1f577.png | Bin .../data}/emoticons/noto-emoticons/png/u1f578.png | Bin .../data}/emoticons/noto-emoticons/png/u1f579.png | Bin .../data}/emoticons/noto-emoticons/png/u1f57a.png | Bin .../emoticons/noto-emoticons/png/u1f57a_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f57a_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f57a_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f57a_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f57a_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f587.png | Bin .../data}/emoticons/noto-emoticons/png/u1f58a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f58b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f58c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f58d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f590.png | Bin .../emoticons/noto-emoticons/png/u1f590_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f590_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f590_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f590_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f590_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f595.png | Bin .../emoticons/noto-emoticons/png/u1f595_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f595_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f595_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f595_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f595_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f596.png | Bin .../emoticons/noto-emoticons/png/u1f596_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f596_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f596_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f596_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f596_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5a4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5a5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5a8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5b1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5b2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5bc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5c2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5c3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5c4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5d1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5d2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5d3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5dc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5dd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5de.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5e1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5e3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5e8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5ef.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5f3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5fa.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5fb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5fc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5fd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5fe.png | Bin .../data}/emoticons/noto-emoticons/png/u1f5ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f600.png | Bin .../data}/emoticons/noto-emoticons/png/u1f601.png | Bin .../data}/emoticons/noto-emoticons/png/u1f602.png | Bin .../data}/emoticons/noto-emoticons/png/u1f603.png | Bin .../data}/emoticons/noto-emoticons/png/u1f604.png | Bin .../data}/emoticons/noto-emoticons/png/u1f605.png | Bin .../data}/emoticons/noto-emoticons/png/u1f606.png | Bin .../data}/emoticons/noto-emoticons/png/u1f607.png | Bin .../data}/emoticons/noto-emoticons/png/u1f608.png | Bin .../data}/emoticons/noto-emoticons/png/u1f609.png | Bin .../data}/emoticons/noto-emoticons/png/u1f60a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f60b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f60c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f60d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f60e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f60f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f610.png | Bin .../data}/emoticons/noto-emoticons/png/u1f611.png | Bin .../data}/emoticons/noto-emoticons/png/u1f612.png | Bin .../data}/emoticons/noto-emoticons/png/u1f613.png | Bin .../data}/emoticons/noto-emoticons/png/u1f614.png | Bin .../data}/emoticons/noto-emoticons/png/u1f615.png | Bin .../data}/emoticons/noto-emoticons/png/u1f616.png | Bin .../data}/emoticons/noto-emoticons/png/u1f617.png | Bin .../data}/emoticons/noto-emoticons/png/u1f618.png | Bin .../data}/emoticons/noto-emoticons/png/u1f619.png | Bin .../data}/emoticons/noto-emoticons/png/u1f61a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f61b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f61c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f61d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f61e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f61f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f620.png | Bin .../data}/emoticons/noto-emoticons/png/u1f621.png | Bin .../data}/emoticons/noto-emoticons/png/u1f622.png | Bin .../data}/emoticons/noto-emoticons/png/u1f623.png | Bin .../data}/emoticons/noto-emoticons/png/u1f624.png | Bin .../data}/emoticons/noto-emoticons/png/u1f625.png | Bin .../data}/emoticons/noto-emoticons/png/u1f626.png | Bin .../data}/emoticons/noto-emoticons/png/u1f627.png | Bin .../data}/emoticons/noto-emoticons/png/u1f628.png | Bin .../data}/emoticons/noto-emoticons/png/u1f629.png | Bin .../data}/emoticons/noto-emoticons/png/u1f62a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f62b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f62c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f62d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f62e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f62f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f630.png | Bin .../data}/emoticons/noto-emoticons/png/u1f631.png | Bin .../data}/emoticons/noto-emoticons/png/u1f632.png | Bin .../data}/emoticons/noto-emoticons/png/u1f633.png | Bin .../data}/emoticons/noto-emoticons/png/u1f634.png | Bin .../data}/emoticons/noto-emoticons/png/u1f635.png | Bin .../data}/emoticons/noto-emoticons/png/u1f636.png | Bin .../data}/emoticons/noto-emoticons/png/u1f637.png | Bin .../data}/emoticons/noto-emoticons/png/u1f638.png | Bin .../data}/emoticons/noto-emoticons/png/u1f639.png | Bin .../data}/emoticons/noto-emoticons/png/u1f63a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f63b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f63c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f63d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f63e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f63f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f640.png | Bin .../data}/emoticons/noto-emoticons/png/u1f641.png | Bin .../data}/emoticons/noto-emoticons/png/u1f642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f643.png | Bin .../data}/emoticons/noto-emoticons/png/u1f644.png | Bin .../data}/emoticons/noto-emoticons/png/u1f645.png | Bin .../emoticons/noto-emoticons/png/u1f645_1f3fb.png | Bin .../noto-emoticons/png/u1f645_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f645_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f645_1f3fc.png | Bin .../noto-emoticons/png/u1f645_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f645_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f645_1f3fd.png | Bin .../noto-emoticons/png/u1f645_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f645_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f645_1f3fe.png | Bin .../noto-emoticons/png/u1f645_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f645_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f645_1f3ff.png | Bin .../noto-emoticons/png/u1f645_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f645_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f645_200d_2640.png | Bin .../noto-emoticons/png/u1f645_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f646.png | Bin .../emoticons/noto-emoticons/png/u1f646_1f3fb.png | Bin .../noto-emoticons/png/u1f646_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f646_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f646_1f3fc.png | Bin .../noto-emoticons/png/u1f646_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f646_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f646_1f3fd.png | Bin .../noto-emoticons/png/u1f646_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f646_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f646_1f3fe.png | Bin .../noto-emoticons/png/u1f646_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f646_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f646_1f3ff.png | Bin .../noto-emoticons/png/u1f646_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f646_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f646_200d_2640.png | Bin .../noto-emoticons/png/u1f646_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f647.png | Bin .../emoticons/noto-emoticons/png/u1f647_1f3fb.png | Bin .../noto-emoticons/png/u1f647_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f647_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f647_1f3fc.png | Bin .../noto-emoticons/png/u1f647_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f647_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f647_1f3fd.png | Bin .../noto-emoticons/png/u1f647_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f647_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f647_1f3fe.png | Bin .../noto-emoticons/png/u1f647_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f647_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f647_1f3ff.png | Bin .../noto-emoticons/png/u1f647_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f647_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f647_200d_2640.png | Bin .../noto-emoticons/png/u1f647_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f648.png | Bin .../data}/emoticons/noto-emoticons/png/u1f649.png | Bin .../data}/emoticons/noto-emoticons/png/u1f64a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f64b.png | Bin .../emoticons/noto-emoticons/png/u1f64b_1f3fb.png | Bin .../noto-emoticons/png/u1f64b_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f64b_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64b_1f3fc.png | Bin .../noto-emoticons/png/u1f64b_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f64b_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64b_1f3fd.png | Bin .../noto-emoticons/png/u1f64b_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f64b_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64b_1f3fe.png | Bin .../noto-emoticons/png/u1f64b_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f64b_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64b_1f3ff.png | Bin .../noto-emoticons/png/u1f64b_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f64b_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f64b_200d_2640.png | Bin .../noto-emoticons/png/u1f64b_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f64c.png | Bin .../emoticons/noto-emoticons/png/u1f64c_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f64c_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f64c_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f64c_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f64c_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f64d.png | Bin .../emoticons/noto-emoticons/png/u1f64d_1f3fb.png | Bin .../noto-emoticons/png/u1f64d_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f64d_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64d_1f3fc.png | Bin .../noto-emoticons/png/u1f64d_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f64d_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64d_1f3fd.png | Bin .../noto-emoticons/png/u1f64d_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f64d_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64d_1f3fe.png | Bin .../noto-emoticons/png/u1f64d_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f64d_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64d_1f3ff.png | Bin .../noto-emoticons/png/u1f64d_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f64d_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f64d_200d_2640.png | Bin .../noto-emoticons/png/u1f64d_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f64e.png | Bin .../emoticons/noto-emoticons/png/u1f64e_1f3fb.png | Bin .../noto-emoticons/png/u1f64e_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f64e_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64e_1f3fc.png | Bin .../noto-emoticons/png/u1f64e_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f64e_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64e_1f3fd.png | Bin .../noto-emoticons/png/u1f64e_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f64e_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64e_1f3fe.png | Bin .../noto-emoticons/png/u1f64e_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f64e_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f64e_1f3ff.png | Bin .../noto-emoticons/png/u1f64e_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f64e_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f64e_200d_2640.png | Bin .../noto-emoticons/png/u1f64e_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f64f.png | Bin .../emoticons/noto-emoticons/png/u1f64f_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f64f_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f64f_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f64f_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f64f_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f680.png | Bin .../data}/emoticons/noto-emoticons/png/u1f681.png | Bin .../data}/emoticons/noto-emoticons/png/u1f682.png | Bin .../data}/emoticons/noto-emoticons/png/u1f683.png | Bin .../data}/emoticons/noto-emoticons/png/u1f684.png | Bin .../data}/emoticons/noto-emoticons/png/u1f685.png | Bin .../data}/emoticons/noto-emoticons/png/u1f686.png | Bin .../data}/emoticons/noto-emoticons/png/u1f687.png | Bin .../data}/emoticons/noto-emoticons/png/u1f688.png | Bin .../data}/emoticons/noto-emoticons/png/u1f689.png | Bin .../data}/emoticons/noto-emoticons/png/u1f68a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f68b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f68c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f68d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f68e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f68f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f690.png | Bin .../data}/emoticons/noto-emoticons/png/u1f691.png | Bin .../data}/emoticons/noto-emoticons/png/u1f692.png | Bin .../data}/emoticons/noto-emoticons/png/u1f693.png | Bin .../data}/emoticons/noto-emoticons/png/u1f694.png | Bin .../data}/emoticons/noto-emoticons/png/u1f695.png | Bin .../data}/emoticons/noto-emoticons/png/u1f696.png | Bin .../data}/emoticons/noto-emoticons/png/u1f697.png | Bin .../data}/emoticons/noto-emoticons/png/u1f698.png | Bin .../data}/emoticons/noto-emoticons/png/u1f699.png | Bin .../data}/emoticons/noto-emoticons/png/u1f69a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f69b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f69c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f69d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f69e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f69f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a3.png | Bin .../emoticons/noto-emoticons/png/u1f6a3_1f3fb.png | Bin .../noto-emoticons/png/u1f6a3_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f6a3_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6a3_1f3fc.png | Bin .../noto-emoticons/png/u1f6a3_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f6a3_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6a3_1f3fd.png | Bin .../noto-emoticons/png/u1f6a3_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f6a3_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6a3_1f3fe.png | Bin .../noto-emoticons/png/u1f6a3_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f6a3_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6a3_1f3ff.png | Bin .../noto-emoticons/png/u1f6a3_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f6a3_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f6a3_200d_2640.png | Bin .../noto-emoticons/png/u1f6a3_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6a9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6aa.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6ab.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6ac.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6ad.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6ae.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6af.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b4.png | Bin .../emoticons/noto-emoticons/png/u1f6b4_1f3fb.png | Bin .../noto-emoticons/png/u1f6b4_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f6b4_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b4_1f3fc.png | Bin .../noto-emoticons/png/u1f6b4_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f6b4_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b4_1f3fd.png | Bin .../noto-emoticons/png/u1f6b4_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f6b4_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b4_1f3fe.png | Bin .../noto-emoticons/png/u1f6b4_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f6b4_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b4_1f3ff.png | Bin .../noto-emoticons/png/u1f6b4_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f6b4_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f6b4_200d_2640.png | Bin .../noto-emoticons/png/u1f6b4_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b5.png | Bin .../emoticons/noto-emoticons/png/u1f6b5_1f3fb.png | Bin .../noto-emoticons/png/u1f6b5_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f6b5_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b5_1f3fc.png | Bin .../noto-emoticons/png/u1f6b5_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f6b5_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b5_1f3fd.png | Bin .../noto-emoticons/png/u1f6b5_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f6b5_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b5_1f3fe.png | Bin .../noto-emoticons/png/u1f6b5_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f6b5_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b5_1f3ff.png | Bin .../noto-emoticons/png/u1f6b5_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f6b5_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f6b5_200d_2640.png | Bin .../noto-emoticons/png/u1f6b5_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b6.png | Bin .../emoticons/noto-emoticons/png/u1f6b6_1f3fb.png | Bin .../noto-emoticons/png/u1f6b6_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f6b6_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b6_1f3fc.png | Bin .../noto-emoticons/png/u1f6b6_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f6b6_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b6_1f3fd.png | Bin .../noto-emoticons/png/u1f6b6_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f6b6_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b6_1f3fe.png | Bin .../noto-emoticons/png/u1f6b6_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f6b6_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f6b6_1f3ff.png | Bin .../noto-emoticons/png/u1f6b6_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f6b6_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f6b6_200d_2640.png | Bin .../noto-emoticons/png/u1f6b6_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b7.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b8.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6b9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6ba.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6bb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6bc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6bd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6be.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6bf.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6c0.png | Bin .../emoticons/noto-emoticons/png/u1f6c0_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f6c0_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f6c0_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f6c0_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f6c0_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6c1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6c2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6c3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6c4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6c5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6cb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6cc.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6cd.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6ce.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6cf.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6d0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6d1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6d2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6e0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6e1.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6e2.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6e3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6e4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6e5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6e9.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6eb.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6ec.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6f0.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6f3.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6f4.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6f5.png | Bin .../data}/emoticons/noto-emoticons/png/u1f6f6.png | Bin .../data}/emoticons/noto-emoticons/png/u1f910.png | Bin .../data}/emoticons/noto-emoticons/png/u1f911.png | Bin .../data}/emoticons/noto-emoticons/png/u1f912.png | Bin .../data}/emoticons/noto-emoticons/png/u1f913.png | Bin .../data}/emoticons/noto-emoticons/png/u1f914.png | Bin .../data}/emoticons/noto-emoticons/png/u1f915.png | Bin .../data}/emoticons/noto-emoticons/png/u1f916.png | Bin .../data}/emoticons/noto-emoticons/png/u1f917.png | Bin .../data}/emoticons/noto-emoticons/png/u1f918.png | Bin .../emoticons/noto-emoticons/png/u1f918_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f918_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f918_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f918_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f918_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f919.png | Bin .../emoticons/noto-emoticons/png/u1f919_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f919_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f919_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f919_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f919_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f91a.png | Bin .../emoticons/noto-emoticons/png/u1f91a_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f91a_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f91a_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f91a_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f91a_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f91b.png | Bin .../emoticons/noto-emoticons/png/u1f91b_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f91b_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f91b_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f91b_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f91b_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f91c.png | Bin .../emoticons/noto-emoticons/png/u1f91c_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f91c_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f91c_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f91c_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f91c_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f91d.png | Bin .../emoticons/noto-emoticons/png/u1f91d_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f91d_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f91d_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f91d_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f91d_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f91e.png | Bin .../emoticons/noto-emoticons/png/u1f91e_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f91e_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f91e_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f91e_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f91e_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f920.png | Bin .../data}/emoticons/noto-emoticons/png/u1f921.png | Bin .../data}/emoticons/noto-emoticons/png/u1f922.png | Bin .../data}/emoticons/noto-emoticons/png/u1f923.png | Bin .../data}/emoticons/noto-emoticons/png/u1f924.png | Bin .../data}/emoticons/noto-emoticons/png/u1f925.png | Bin .../data}/emoticons/noto-emoticons/png/u1f926.png | Bin .../emoticons/noto-emoticons/png/u1f926_1f3fb.png | Bin .../noto-emoticons/png/u1f926_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f926_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f926_1f3fc.png | Bin .../noto-emoticons/png/u1f926_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f926_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f926_1f3fd.png | Bin .../noto-emoticons/png/u1f926_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f926_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f926_1f3fe.png | Bin .../noto-emoticons/png/u1f926_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f926_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f926_1f3ff.png | Bin .../noto-emoticons/png/u1f926_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f926_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f926_200d_2640.png | Bin .../noto-emoticons/png/u1f926_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f927.png | Bin .../data}/emoticons/noto-emoticons/png/u1f930.png | Bin .../emoticons/noto-emoticons/png/u1f930_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f930_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f930_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f930_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f930_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f933.png | Bin .../emoticons/noto-emoticons/png/u1f933_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f933_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f933_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f933_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f933_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f934.png | Bin .../emoticons/noto-emoticons/png/u1f934_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f934_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f934_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f934_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f934_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f935.png | Bin .../emoticons/noto-emoticons/png/u1f935_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f935_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f935_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f935_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f935_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f936.png | Bin .../emoticons/noto-emoticons/png/u1f936_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u1f936_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u1f936_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u1f936_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u1f936_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u1f937.png | Bin .../emoticons/noto-emoticons/png/u1f937_1f3fb.png | Bin .../noto-emoticons/png/u1f937_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f937_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f937_1f3fc.png | Bin .../noto-emoticons/png/u1f937_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f937_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f937_1f3fd.png | Bin .../noto-emoticons/png/u1f937_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f937_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f937_1f3fe.png | Bin .../noto-emoticons/png/u1f937_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f937_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f937_1f3ff.png | Bin .../noto-emoticons/png/u1f937_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f937_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f937_200d_2640.png | Bin .../noto-emoticons/png/u1f937_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f938.png | Bin .../emoticons/noto-emoticons/png/u1f938_1f3fb.png | Bin .../noto-emoticons/png/u1f938_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f938_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f938_1f3fc.png | Bin .../noto-emoticons/png/u1f938_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f938_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f938_1f3fd.png | Bin .../noto-emoticons/png/u1f938_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f938_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f938_1f3fe.png | Bin .../noto-emoticons/png/u1f938_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f938_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f938_1f3ff.png | Bin .../noto-emoticons/png/u1f938_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f938_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f938_200d_2640.png | Bin .../noto-emoticons/png/u1f938_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f939.png | Bin .../emoticons/noto-emoticons/png/u1f939_1f3fb.png | Bin .../noto-emoticons/png/u1f939_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f939_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f939_1f3fc.png | Bin .../noto-emoticons/png/u1f939_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f939_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f939_1f3fd.png | Bin .../noto-emoticons/png/u1f939_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f939_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f939_1f3fe.png | Bin .../noto-emoticons/png/u1f939_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f939_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f939_1f3ff.png | Bin .../noto-emoticons/png/u1f939_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f939_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f939_200d_2640.png | Bin .../noto-emoticons/png/u1f939_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f93a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f93c.png | Bin .../emoticons/noto-emoticons/png/u1f93c_1f3fb.png | Bin .../noto-emoticons/png/u1f93c_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f93c_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93c_1f3fc.png | Bin .../noto-emoticons/png/u1f93c_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f93c_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93c_1f3fd.png | Bin .../noto-emoticons/png/u1f93c_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f93c_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93c_1f3fe.png | Bin .../noto-emoticons/png/u1f93c_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f93c_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93c_1f3ff.png | Bin .../noto-emoticons/png/u1f93c_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f93c_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f93c_200d_2640.png | Bin .../noto-emoticons/png/u1f93c_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f93d.png | Bin .../emoticons/noto-emoticons/png/u1f93d_1f3fb.png | Bin .../noto-emoticons/png/u1f93d_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f93d_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93d_1f3fc.png | Bin .../noto-emoticons/png/u1f93d_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f93d_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93d_1f3fd.png | Bin .../noto-emoticons/png/u1f93d_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f93d_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93d_1f3fe.png | Bin .../noto-emoticons/png/u1f93d_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f93d_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93d_1f3ff.png | Bin .../noto-emoticons/png/u1f93d_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f93d_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f93d_200d_2640.png | Bin .../noto-emoticons/png/u1f93d_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f93e.png | Bin .../emoticons/noto-emoticons/png/u1f93e_1f3fb.png | Bin .../noto-emoticons/png/u1f93e_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u1f93e_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93e_1f3fc.png | Bin .../noto-emoticons/png/u1f93e_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u1f93e_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93e_1f3fd.png | Bin .../noto-emoticons/png/u1f93e_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u1f93e_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93e_1f3fe.png | Bin .../noto-emoticons/png/u1f93e_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u1f93e_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u1f93e_1f3ff.png | Bin .../noto-emoticons/png/u1f93e_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u1f93e_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u1f93e_200d_2640.png | Bin .../noto-emoticons/png/u1f93e_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u1f940.png | Bin .../data}/emoticons/noto-emoticons/png/u1f941.png | Bin .../data}/emoticons/noto-emoticons/png/u1f942.png | Bin .../data}/emoticons/noto-emoticons/png/u1f943.png | Bin .../data}/emoticons/noto-emoticons/png/u1f944.png | Bin .../data}/emoticons/noto-emoticons/png/u1f945.png | Bin .../data}/emoticons/noto-emoticons/png/u1f947.png | Bin .../data}/emoticons/noto-emoticons/png/u1f948.png | Bin .../data}/emoticons/noto-emoticons/png/u1f949.png | Bin .../data}/emoticons/noto-emoticons/png/u1f94a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f94b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f950.png | Bin .../data}/emoticons/noto-emoticons/png/u1f951.png | Bin .../data}/emoticons/noto-emoticons/png/u1f952.png | Bin .../data}/emoticons/noto-emoticons/png/u1f953.png | Bin .../data}/emoticons/noto-emoticons/png/u1f954.png | Bin .../data}/emoticons/noto-emoticons/png/u1f955.png | Bin .../data}/emoticons/noto-emoticons/png/u1f956.png | Bin .../data}/emoticons/noto-emoticons/png/u1f957.png | Bin .../data}/emoticons/noto-emoticons/png/u1f958.png | Bin .../data}/emoticons/noto-emoticons/png/u1f959.png | Bin .../data}/emoticons/noto-emoticons/png/u1f95a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f95b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f95c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f95d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f95e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f980.png | Bin .../data}/emoticons/noto-emoticons/png/u1f981.png | Bin .../data}/emoticons/noto-emoticons/png/u1f982.png | Bin .../data}/emoticons/noto-emoticons/png/u1f983.png | Bin .../data}/emoticons/noto-emoticons/png/u1f984.png | Bin .../data}/emoticons/noto-emoticons/png/u1f985.png | Bin .../data}/emoticons/noto-emoticons/png/u1f986.png | Bin .../data}/emoticons/noto-emoticons/png/u1f987.png | Bin .../data}/emoticons/noto-emoticons/png/u1f988.png | Bin .../data}/emoticons/noto-emoticons/png/u1f989.png | Bin .../data}/emoticons/noto-emoticons/png/u1f98a.png | Bin .../data}/emoticons/noto-emoticons/png/u1f98b.png | Bin .../data}/emoticons/noto-emoticons/png/u1f98c.png | Bin .../data}/emoticons/noto-emoticons/png/u1f98d.png | Bin .../data}/emoticons/noto-emoticons/png/u1f98e.png | Bin .../data}/emoticons/noto-emoticons/png/u1f98f.png | Bin .../data}/emoticons/noto-emoticons/png/u1f990.png | Bin .../data}/emoticons/noto-emoticons/png/u1f991.png | Bin .../data}/emoticons/noto-emoticons/png/u1f9c0.png | Bin .../data}/emoticons/noto-emoticons/png/u203c.png | Bin .../data}/emoticons/noto-emoticons/png/u2049.png | Bin .../data}/emoticons/noto-emoticons/png/u20e3.png | Bin .../data}/emoticons/noto-emoticons/png/u2122.png | Bin .../data}/emoticons/noto-emoticons/png/u2139.png | Bin .../data}/emoticons/noto-emoticons/png/u2194.png | Bin .../data}/emoticons/noto-emoticons/png/u2195.png | Bin .../data}/emoticons/noto-emoticons/png/u2196.png | Bin .../data}/emoticons/noto-emoticons/png/u2197.png | Bin .../data}/emoticons/noto-emoticons/png/u2198.png | Bin .../data}/emoticons/noto-emoticons/png/u2199.png | Bin .../data}/emoticons/noto-emoticons/png/u21a9.png | Bin .../data}/emoticons/noto-emoticons/png/u21aa.png | Bin .../data}/emoticons/noto-emoticons/png/u231a.png | Bin .../data}/emoticons/noto-emoticons/png/u231b.png | Bin .../data}/emoticons/noto-emoticons/png/u2328.png | Bin .../data}/emoticons/noto-emoticons/png/u23cf.png | Bin .../data}/emoticons/noto-emoticons/png/u23e9.png | Bin .../data}/emoticons/noto-emoticons/png/u23ea.png | Bin .../data}/emoticons/noto-emoticons/png/u23eb.png | Bin .../data}/emoticons/noto-emoticons/png/u23ec.png | Bin .../data}/emoticons/noto-emoticons/png/u23ed.png | Bin .../data}/emoticons/noto-emoticons/png/u23ee.png | Bin .../data}/emoticons/noto-emoticons/png/u23ef.png | Bin .../data}/emoticons/noto-emoticons/png/u23f0.png | Bin .../data}/emoticons/noto-emoticons/png/u23f1.png | Bin .../data}/emoticons/noto-emoticons/png/u23f2.png | Bin .../data}/emoticons/noto-emoticons/png/u23f3.png | Bin .../data}/emoticons/noto-emoticons/png/u23f8.png | Bin .../data}/emoticons/noto-emoticons/png/u23f9.png | Bin .../data}/emoticons/noto-emoticons/png/u23fa.png | Bin .../data}/emoticons/noto-emoticons/png/u24c2.png | Bin .../data}/emoticons/noto-emoticons/png/u25aa.png | Bin .../data}/emoticons/noto-emoticons/png/u25ab.png | Bin .../data}/emoticons/noto-emoticons/png/u25b6.png | Bin .../data}/emoticons/noto-emoticons/png/u25c0.png | Bin .../data}/emoticons/noto-emoticons/png/u25fb.png | Bin .../data}/emoticons/noto-emoticons/png/u25fc.png | Bin .../data}/emoticons/noto-emoticons/png/u25fd.png | Bin .../data}/emoticons/noto-emoticons/png/u25fe.png | Bin .../data}/emoticons/noto-emoticons/png/u2600.png | Bin .../data}/emoticons/noto-emoticons/png/u2601.png | Bin .../data}/emoticons/noto-emoticons/png/u2602.png | Bin .../data}/emoticons/noto-emoticons/png/u2603.png | Bin .../data}/emoticons/noto-emoticons/png/u2604.png | Bin .../data}/emoticons/noto-emoticons/png/u260e.png | Bin .../data}/emoticons/noto-emoticons/png/u2611.png | Bin .../data}/emoticons/noto-emoticons/png/u2614.png | Bin .../data}/emoticons/noto-emoticons/png/u2615.png | Bin .../data}/emoticons/noto-emoticons/png/u2618.png | Bin .../data}/emoticons/noto-emoticons/png/u261d.png | Bin .../emoticons/noto-emoticons/png/u261d_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u261d_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u261d_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u261d_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u261d_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u2620.png | Bin .../data}/emoticons/noto-emoticons/png/u2622.png | Bin .../data}/emoticons/noto-emoticons/png/u2623.png | Bin .../data}/emoticons/noto-emoticons/png/u2626.png | Bin .../data}/emoticons/noto-emoticons/png/u262a.png | Bin .../data}/emoticons/noto-emoticons/png/u262e.png | Bin .../data}/emoticons/noto-emoticons/png/u262f.png | Bin .../data}/emoticons/noto-emoticons/png/u2638.png | Bin .../data}/emoticons/noto-emoticons/png/u2639.png | Bin .../data}/emoticons/noto-emoticons/png/u263a.png | Bin .../data}/emoticons/noto-emoticons/png/u2640.png | Bin .../data}/emoticons/noto-emoticons/png/u2642.png | Bin .../data}/emoticons/noto-emoticons/png/u2648.png | Bin .../data}/emoticons/noto-emoticons/png/u2649.png | Bin .../data}/emoticons/noto-emoticons/png/u264a.png | Bin .../data}/emoticons/noto-emoticons/png/u264b.png | Bin .../data}/emoticons/noto-emoticons/png/u264c.png | Bin .../data}/emoticons/noto-emoticons/png/u264d.png | Bin .../data}/emoticons/noto-emoticons/png/u264e.png | Bin .../data}/emoticons/noto-emoticons/png/u264f.png | Bin .../data}/emoticons/noto-emoticons/png/u2650.png | Bin .../data}/emoticons/noto-emoticons/png/u2651.png | Bin .../data}/emoticons/noto-emoticons/png/u2652.png | Bin .../data}/emoticons/noto-emoticons/png/u2653.png | Bin .../data}/emoticons/noto-emoticons/png/u2660.png | Bin .../data}/emoticons/noto-emoticons/png/u2663.png | Bin .../data}/emoticons/noto-emoticons/png/u2665.png | Bin .../data}/emoticons/noto-emoticons/png/u2666.png | Bin .../data}/emoticons/noto-emoticons/png/u2668.png | Bin .../data}/emoticons/noto-emoticons/png/u267b.png | Bin .../data}/emoticons/noto-emoticons/png/u267f.png | Bin .../data}/emoticons/noto-emoticons/png/u2692.png | Bin .../data}/emoticons/noto-emoticons/png/u2693.png | Bin .../data}/emoticons/noto-emoticons/png/u2694.png | Bin .../data}/emoticons/noto-emoticons/png/u2695.png | Bin .../data}/emoticons/noto-emoticons/png/u2696.png | Bin .../data}/emoticons/noto-emoticons/png/u2697.png | Bin .../data}/emoticons/noto-emoticons/png/u2699.png | Bin .../data}/emoticons/noto-emoticons/png/u269b.png | Bin .../data}/emoticons/noto-emoticons/png/u269c.png | Bin .../data}/emoticons/noto-emoticons/png/u26a0.png | Bin .../data}/emoticons/noto-emoticons/png/u26a1.png | Bin .../data}/emoticons/noto-emoticons/png/u26aa.png | Bin .../data}/emoticons/noto-emoticons/png/u26ab.png | Bin .../data}/emoticons/noto-emoticons/png/u26b0.png | Bin .../data}/emoticons/noto-emoticons/png/u26b1.png | Bin .../data}/emoticons/noto-emoticons/png/u26bd.png | Bin .../data}/emoticons/noto-emoticons/png/u26be.png | Bin .../data}/emoticons/noto-emoticons/png/u26c4.png | Bin .../data}/emoticons/noto-emoticons/png/u26c5.png | Bin .../data}/emoticons/noto-emoticons/png/u26c8.png | Bin .../data}/emoticons/noto-emoticons/png/u26ce.png | Bin .../data}/emoticons/noto-emoticons/png/u26cf.png | Bin .../data}/emoticons/noto-emoticons/png/u26d1.png | Bin .../data}/emoticons/noto-emoticons/png/u26d3.png | Bin .../data}/emoticons/noto-emoticons/png/u26d4.png | Bin .../data}/emoticons/noto-emoticons/png/u26e9.png | Bin .../data}/emoticons/noto-emoticons/png/u26ea.png | Bin .../data}/emoticons/noto-emoticons/png/u26f0.png | Bin .../data}/emoticons/noto-emoticons/png/u26f1.png | Bin .../data}/emoticons/noto-emoticons/png/u26f2.png | Bin .../data}/emoticons/noto-emoticons/png/u26f3.png | Bin .../data}/emoticons/noto-emoticons/png/u26f4.png | Bin .../data}/emoticons/noto-emoticons/png/u26f5.png | Bin .../data}/emoticons/noto-emoticons/png/u26f7.png | Bin .../data}/emoticons/noto-emoticons/png/u26f8.png | Bin .../data}/emoticons/noto-emoticons/png/u26f9.png | Bin .../emoticons/noto-emoticons/png/u26f9_1f3fb.png | Bin .../noto-emoticons/png/u26f9_1f3fb_200d_2640.png | Bin .../noto-emoticons/png/u26f9_1f3fb_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u26f9_1f3fc.png | Bin .../noto-emoticons/png/u26f9_1f3fc_200d_2640.png | Bin .../noto-emoticons/png/u26f9_1f3fc_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u26f9_1f3fd.png | Bin .../noto-emoticons/png/u26f9_1f3fd_200d_2640.png | Bin .../noto-emoticons/png/u26f9_1f3fd_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u26f9_1f3fe.png | Bin .../noto-emoticons/png/u26f9_1f3fe_200d_2640.png | Bin .../noto-emoticons/png/u26f9_1f3fe_200d_2642.png | Bin .../emoticons/noto-emoticons/png/u26f9_1f3ff.png | Bin .../noto-emoticons/png/u26f9_1f3ff_200d_2640.png | Bin .../noto-emoticons/png/u26f9_1f3ff_200d_2642.png | Bin .../noto-emoticons/png/u26f9_200d_2640.png | Bin .../noto-emoticons/png/u26f9_200d_2642.png | Bin .../data}/emoticons/noto-emoticons/png/u26fa.png | Bin .../data}/emoticons/noto-emoticons/png/u26fd.png | Bin .../data}/emoticons/noto-emoticons/png/u2702.png | Bin .../data}/emoticons/noto-emoticons/png/u2705.png | Bin .../data}/emoticons/noto-emoticons/png/u2708.png | Bin .../data}/emoticons/noto-emoticons/png/u2709.png | Bin .../data}/emoticons/noto-emoticons/png/u270a.png | Bin .../emoticons/noto-emoticons/png/u270a_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u270a_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u270a_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u270a_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u270a_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u270b.png | Bin .../emoticons/noto-emoticons/png/u270b_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u270b_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u270b_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u270b_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u270b_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u270c.png | Bin .../emoticons/noto-emoticons/png/u270c_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u270c_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u270c_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u270c_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u270c_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u270d.png | Bin .../emoticons/noto-emoticons/png/u270d_1f3fb.png | Bin .../emoticons/noto-emoticons/png/u270d_1f3fc.png | Bin .../emoticons/noto-emoticons/png/u270d_1f3fd.png | Bin .../emoticons/noto-emoticons/png/u270d_1f3fe.png | Bin .../emoticons/noto-emoticons/png/u270d_1f3ff.png | Bin .../data}/emoticons/noto-emoticons/png/u270f.png | Bin .../data}/emoticons/noto-emoticons/png/u2712.png | Bin .../data}/emoticons/noto-emoticons/png/u2714.png | Bin .../data}/emoticons/noto-emoticons/png/u2716.png | Bin .../data}/emoticons/noto-emoticons/png/u271d.png | Bin .../data}/emoticons/noto-emoticons/png/u2721.png | Bin .../data}/emoticons/noto-emoticons/png/u2728.png | Bin .../data}/emoticons/noto-emoticons/png/u2733.png | Bin .../data}/emoticons/noto-emoticons/png/u2734.png | Bin .../data}/emoticons/noto-emoticons/png/u2744.png | Bin .../data}/emoticons/noto-emoticons/png/u2747.png | Bin .../data}/emoticons/noto-emoticons/png/u274c.png | Bin .../data}/emoticons/noto-emoticons/png/u274e.png | Bin .../data}/emoticons/noto-emoticons/png/u2753.png | Bin .../data}/emoticons/noto-emoticons/png/u2754.png | Bin .../data}/emoticons/noto-emoticons/png/u2755.png | Bin .../data}/emoticons/noto-emoticons/png/u2757.png | Bin .../data}/emoticons/noto-emoticons/png/u2763.png | Bin .../data}/emoticons/noto-emoticons/png/u2764.png | Bin .../data}/emoticons/noto-emoticons/png/u2795.png | Bin .../data}/emoticons/noto-emoticons/png/u2796.png | Bin .../data}/emoticons/noto-emoticons/png/u2797.png | Bin .../data}/emoticons/noto-emoticons/png/u27a1.png | Bin .../data}/emoticons/noto-emoticons/png/u27b0.png | Bin .../data}/emoticons/noto-emoticons/png/u27bf.png | Bin .../data}/emoticons/noto-emoticons/png/u2934.png | Bin .../data}/emoticons/noto-emoticons/png/u2935.png | Bin .../data}/emoticons/noto-emoticons/png/u2b05.png | Bin .../data}/emoticons/noto-emoticons/png/u2b06.png | Bin .../data}/emoticons/noto-emoticons/png/u2b07.png | Bin .../data}/emoticons/noto-emoticons/png/u2b1b.png | Bin .../data}/emoticons/noto-emoticons/png/u2b1c.png | Bin .../data}/emoticons/noto-emoticons/png/u2b50.png | Bin .../data}/emoticons/noto-emoticons/png/u2b55.png | Bin .../data}/emoticons/noto-emoticons/png/u3030.png | Bin .../data}/emoticons/noto-emoticons/png/u303d.png | Bin .../data}/emoticons/noto-emoticons/png/u3297.png | Bin .../data}/emoticons/noto-emoticons/png/u3299.png | Bin .../data}/emoticons/noto-emoticons/png/ufe82b.png | Bin {data => gajim/data}/gui/Makefile.am | 0 {data => gajim/data}/gui/account_context_menu.ui | 0 .../data}/gui/account_creation_wizard_window.ui | 0 {data => gajim/data}/gui/accounts_window.ui | 0 {data => gajim/data}/gui/add_new_contact_window.ui | 0 {data => gajim/data}/gui/adhoc_commands_window.ui | 0 .../data}/gui/advanced_configuration_window.ui | 0 {data => gajim/data}/gui/application_menu.ui | 0 .../data}/gui/archiving_313_preferences_item.ui | 0 .../data}/gui/archiving_313_preferences_window.ui | 0 {data => gajim/data}/gui/atom_entry_window.ui | 0 {data => gajim/data}/gui/blocked_contacts_window.ui | 0 {data => gajim/data}/gui/change_activity_dialog.ui | 0 {data => gajim/data}/gui/change_mood_dialog.ui | 0 {data => gajim/data}/gui/change_password_dialog.ui | 0 .../data}/gui/change_status_message_dialog.ui | 0 {data => gajim/data}/gui/chat_context_menu.ui | 0 {data => gajim/data}/gui/chat_control.ui | 0 {data => gajim/data}/gui/chat_to_muc_window.ui | 0 {data => gajim/data}/gui/choose_gpg_key_dialog.ui | 0 {data => gajim/data}/gui/contact_context_menu.ui | 0 {data => gajim/data}/gui/data_form_window.ui | 0 {data => gajim/data}/gui/dubbleinput_dialog.ui | 0 {data => gajim/data}/gui/edit_groups_dialog.ui | 0 {data => gajim/data}/gui/esession_info_window.ui | 0 {data => gajim/data}/gui/exception_dialog.ui | 0 {data => gajim/data}/gui/features_window.ui | 0 {data => gajim/data}/gui/filetransfers.ui | 0 {data => gajim/data}/gui/gajim_themes_window.ui | 0 {data => gajim/data}/gui/gc_control_popup_menu.ui | 0 {data => gajim/data}/gui/gc_occupants_menu.ui | 0 {data => gajim/data}/gui/groupchat_control.ui | 0 {data => gajim/data}/gui/groups_post_window.ui | 0 {data => gajim/data}/gui/history_manager.ui | 0 {data => gajim/data}/gui/history_window.ui | 0 {data => gajim/data}/gui/input_dialog.ui | 0 {data => gajim/data}/gui/input_text_dialog.ui | 0 {data => gajim/data}/gui/join_groupchat_window.ui | 0 {data => gajim/data}/gui/manage_bookmarks_window.ui | 0 .../data}/gui/manage_pep_services_window.ui | 0 {data => gajim/data}/gui/manage_proxies_window.ui | 0 {data => gajim/data}/gui/manage_sounds_window.ui | 0 {data => gajim/data}/gui/message_window.ui | 0 {data => gajim/data}/gui/passphrase_dialog.ui | 0 {data => gajim/data}/gui/plugins_window.ui | 0 .../data}/gui/popup_notification_window.ui | 0 {data => gajim/data}/gui/preferences_window.ui | 0 {data => gajim/data}/gui/privacy_list_window.ui | 0 {data => gajim/data}/gui/privacy_lists_window.ui | 0 {data => gajim/data}/gui/profile_window.ui | 0 {data => gajim/data}/gui/progress_dialog.ui | 0 {data => gajim/data}/gui/remove_account_window.ui | 0 .../data}/gui/roster_item_exchange_window.ui | 0 {data => gajim/data}/gui/roster_window.ui | 0 {data => gajim/data}/gui/search_window.ui | 0 .../data}/gui/service_discovery_window.ui | 0 .../data}/gui/service_registration_window.ui | 0 {data => gajim/data}/gui/shortcuts_window.ui | 0 {data => gajim/data}/gui/single_message_window.ui | 0 .../data}/gui/subscription_request_popup_menu.ui | 0 .../data}/gui/subscription_request_window.ui | 0 .../data}/gui/synchronise_select_account_dialog.ui | 0 .../data}/gui/synchronise_select_contacts_dialog.ui | 0 {data => gajim/data}/gui/systray_context_menu.ui | 0 {data => gajim/data}/gui/tooltip_gc_contact.ui | 0 {data => gajim/data}/gui/tooltip_roster_contact.ui | 0 .../data}/gui/vcard_information_window.ui | 0 .../data}/gui/voip_call_received_dialog.ui | 0 {data => gajim/data}/gui/xml_console_window.ui | 0 {data => gajim/data}/gui/zeroconf_context_menu.ui | 0 .../data}/gui/zeroconf_information_window.ui | 0 {data => gajim/data}/iconsets/Makefile.am | 0 .../data}/iconsets/dcraven/16x16/away.png | Bin .../data}/iconsets/dcraven/16x16/chat.png | Bin .../data}/iconsets/dcraven/16x16/closed.png | Bin .../data}/iconsets/dcraven/16x16/connecting.png | Bin {data => gajim/data}/iconsets/dcraven/16x16/dnd.png | Bin .../data}/iconsets/dcraven/16x16/error.png | Bin .../data}/iconsets/dcraven/16x16/event.png | Bin .../data}/iconsets/dcraven/16x16/invisible.png | Bin .../data}/iconsets/dcraven/16x16/muc_active.png | Bin .../data}/iconsets/dcraven/16x16/muc_inactive.png | Bin .../data}/iconsets/dcraven/16x16/not_in_roster.png | Bin .../data}/iconsets/dcraven/16x16/offline.png | Bin .../data}/iconsets/dcraven/16x16/online.png | Bin .../data}/iconsets/dcraven/16x16/opened.png | Bin .../data}/iconsets/dcraven/16x16/requested.png | Bin {data => gajim/data}/iconsets/dcraven/16x16/xa.png | Bin .../data}/iconsets/dcraven/32x32/away.png | Bin .../data}/iconsets/dcraven/32x32/chat.png | Bin .../data}/iconsets/dcraven/32x32/closed.png | Bin .../data}/iconsets/dcraven/32x32/connecting.png | Bin {data => gajim/data}/iconsets/dcraven/32x32/dnd.png | Bin .../data}/iconsets/dcraven/32x32/error.png | Bin .../data}/iconsets/dcraven/32x32/event.png | Bin .../data}/iconsets/dcraven/32x32/invisible.png | Bin .../data}/iconsets/dcraven/32x32/muc_active.png | Bin .../data}/iconsets/dcraven/32x32/muc_inactive.png | Bin .../data}/iconsets/dcraven/32x32/not_in_roster.png | Bin .../data}/iconsets/dcraven/32x32/offline.png | Bin .../data}/iconsets/dcraven/32x32/online.png | Bin .../data}/iconsets/dcraven/32x32/opened.png | Bin .../data}/iconsets/dcraven/32x32/requested.png | Bin {data => gajim/data}/iconsets/dcraven/32x32/xa.png | Bin .../data}/iconsets/dcraven/48x48/offline.png | Bin .../data}/iconsets/dcraven/48x48/online.png | Bin {data => gajim/data}/iconsets/gnome/16x16/away.png | Bin {data => gajim/data}/iconsets/gnome/16x16/chat.png | Bin .../data}/iconsets/gnome/16x16/closed.png | Bin .../data}/iconsets/gnome/16x16/connecting.gif | Bin {data => gajim/data}/iconsets/gnome/16x16/dnd.png | Bin {data => gajim/data}/iconsets/gnome/16x16/error.png | Bin {data => gajim/data}/iconsets/gnome/16x16/event.gif | Bin .../data}/iconsets/gnome/16x16/invisible.png | Bin .../data}/iconsets/gnome/16x16/muc_active.png | Bin .../data}/iconsets/gnome/16x16/muc_inactive.png | Bin .../data}/iconsets/gnome/16x16/not_in_roster.png | Bin .../data}/iconsets/gnome/16x16/offline.png | Bin .../data}/iconsets/gnome/16x16/online.png | Bin .../data}/iconsets/gnome/16x16/opened.png | Bin .../data}/iconsets/gnome/16x16/requested.png | Bin {data => gajim/data}/iconsets/gnome/16x16/xa.png | Bin {data => gajim/data}/iconsets/gnome/32x32/away.png | Bin {data => gajim/data}/iconsets/gnome/32x32/chat.png | Bin {data => gajim/data}/iconsets/gnome/32x32/dnd.png | Bin .../data}/iconsets/gnome/32x32/muc_active.png | Bin .../data}/iconsets/gnome/32x32/muc_inactive.png | Bin .../data}/iconsets/gnome/32x32/not_in_roster.png | Bin .../data}/iconsets/gnome/32x32/offline.png | Bin .../data}/iconsets/gnome/32x32/online.png | Bin .../data}/iconsets/gnome/32x32/requested.png | Bin {data => gajim/data}/iconsets/gnome/32x32/xa.png | Bin .../data}/iconsets/gnome/48x48/offline.png | Bin .../data}/iconsets/gnome/48x48/online.png | Bin {data => gajim/data}/iconsets/goojim/16x16/away.png | Bin {data => gajim/data}/iconsets/goojim/16x16/chat.png | Bin .../data}/iconsets/goojim/16x16/closed.png | Bin .../data}/iconsets/goojim/16x16/connecting.png | Bin {data => gajim/data}/iconsets/goojim/16x16/dnd.png | Bin .../data}/iconsets/goojim/16x16/error.png | Bin .../data}/iconsets/goojim/16x16/event.png | Bin .../data}/iconsets/goojim/16x16/invisible.png | Bin .../data}/iconsets/goojim/16x16/muc_active.png | Bin .../data}/iconsets/goojim/16x16/muc_inactive.png | Bin .../data}/iconsets/goojim/16x16/not_in_roster.png | Bin .../data}/iconsets/goojim/16x16/offline.png | Bin .../data}/iconsets/goojim/16x16/online.png | Bin .../data}/iconsets/goojim/16x16/opened.png | Bin .../data}/iconsets/goojim/16x16/requested.png | Bin {data => gajim/data}/iconsets/goojim/16x16/xa.png | Bin {data => gajim/data}/iconsets/goojim/32x32/away.png | Bin {data => gajim/data}/iconsets/goojim/32x32/chat.png | Bin .../data}/iconsets/goojim/32x32/closed.png | Bin .../data}/iconsets/goojim/32x32/connecting.png | Bin {data => gajim/data}/iconsets/goojim/32x32/dnd.png | Bin .../data}/iconsets/goojim/32x32/error.png | Bin .../data}/iconsets/goojim/32x32/event.png | Bin .../data}/iconsets/goojim/32x32/invisible.png | Bin .../data}/iconsets/goojim/32x32/muc_active.png | Bin .../data}/iconsets/goojim/32x32/muc_inactive.png | Bin .../data}/iconsets/goojim/32x32/not_in_roster.png | Bin .../data}/iconsets/goojim/32x32/offline.png | Bin .../data}/iconsets/goojim/32x32/online.png | Bin .../data}/iconsets/goojim/32x32/opened.png | Bin .../data}/iconsets/goojim/32x32/requested.png | Bin {data => gajim/data}/iconsets/goojim/32x32/xa.png | Bin .../data}/iconsets/goojim/48x48/offline.png | Bin .../data}/iconsets/goojim/48x48/online.png | Bin {data => gajim/data}/iconsets/gota/16x16/away.png | Bin {data => gajim/data}/iconsets/gota/16x16/chat.png | Bin {data => gajim/data}/iconsets/gota/16x16/closed.png | Bin .../data}/iconsets/gota/16x16/connecting.gif | Bin {data => gajim/data}/iconsets/gota/16x16/dnd.png | Bin {data => gajim/data}/iconsets/gota/16x16/error.png | Bin {data => gajim/data}/iconsets/gota/16x16/event.gif | Bin .../data}/iconsets/gota/16x16/invisible.png | Bin .../data}/iconsets/gota/16x16/muc_active.png | Bin .../data}/iconsets/gota/16x16/muc_inactive.png | Bin .../data}/iconsets/gota/16x16/not_in_roster.png | Bin .../data}/iconsets/gota/16x16/offline.png | Bin {data => gajim/data}/iconsets/gota/16x16/online.png | Bin {data => gajim/data}/iconsets/gota/16x16/opened.png | Bin .../data}/iconsets/gota/16x16/requested.png | Bin {data => gajim/data}/iconsets/gota/16x16/xa.png | Bin {data => gajim/data}/iconsets/gota/32x32/away.png | Bin {data => gajim/data}/iconsets/gota/32x32/chat.png | Bin {data => gajim/data}/iconsets/gota/32x32/closed.png | Bin .../data}/iconsets/gota/32x32/connecting.gif | Bin {data => gajim/data}/iconsets/gota/32x32/dnd.png | Bin {data => gajim/data}/iconsets/gota/32x32/error.png | Bin {data => gajim/data}/iconsets/gota/32x32/event.gif | Bin .../data}/iconsets/gota/32x32/invisible.png | Bin .../data}/iconsets/gota/32x32/muc_active.png | Bin .../data}/iconsets/gota/32x32/muc_inactive.png | Bin .../data}/iconsets/gota/32x32/not_in_roster.png | Bin .../data}/iconsets/gota/32x32/offline.png | Bin {data => gajim/data}/iconsets/gota/32x32/online.png | Bin {data => gajim/data}/iconsets/gota/32x32/opened.png | Bin .../data}/iconsets/gota/32x32/requested.png | Bin {data => gajim/data}/iconsets/gota/32x32/xa.png | Bin .../data}/iconsets/gota/48x48/offline.png | Bin {data => gajim/data}/iconsets/gota/48x48/online.png | Bin .../data}/iconsets/jabberbulb/16x16/away.png | Bin .../data}/iconsets/jabberbulb/16x16/chat.png | Bin .../data}/iconsets/jabberbulb/16x16/closed.png | Bin .../data}/iconsets/jabberbulb/16x16/connecting.png | Bin .../data}/iconsets/jabberbulb/16x16/dnd.png | Bin .../data}/iconsets/jabberbulb/16x16/error.png | Bin .../data}/iconsets/jabberbulb/16x16/event.gif | Bin .../data}/iconsets/jabberbulb/16x16/invisible.png | Bin .../data}/iconsets/jabberbulb/16x16/muc_active.png | Bin .../iconsets/jabberbulb/16x16/muc_inactive.png | Bin .../iconsets/jabberbulb/16x16/not_in_roster.png | Bin .../data}/iconsets/jabberbulb/16x16/offline.png | Bin .../data}/iconsets/jabberbulb/16x16/online.png | Bin .../data}/iconsets/jabberbulb/16x16/opened.png | Bin .../data}/iconsets/jabberbulb/16x16/requested.png | Bin .../data}/iconsets/jabberbulb/16x16/xa.png | Bin .../data}/iconsets/jabberbulb/32x32/away.png | Bin .../data}/iconsets/jabberbulb/32x32/chat.png | Bin .../data}/iconsets/jabberbulb/32x32/dnd.png | Bin .../data}/iconsets/jabberbulb/32x32/error.png | Bin .../data}/iconsets/jabberbulb/32x32/invisible.png | Bin .../data}/iconsets/jabberbulb/32x32/muc_active.png | Bin .../iconsets/jabberbulb/32x32/muc_inactive.png | Bin .../iconsets/jabberbulb/32x32/not_in_roster.png | Bin .../data}/iconsets/jabberbulb/32x32/offline.png | Bin .../data}/iconsets/jabberbulb/32x32/online.png | Bin .../data}/iconsets/jabberbulb/32x32/requested.png | Bin .../data}/iconsets/jabberbulb/32x32/xa.png | Bin .../data}/iconsets/jabberbulb/48x48/offline.png | Bin .../data}/iconsets/jabberbulb/48x48/online.png | Bin {data => gajim/data}/iconsets/sun/16x16/away.png | Bin {data => gajim/data}/iconsets/sun/16x16/chat.png | Bin {data => gajim/data}/iconsets/sun/16x16/closed.png | Bin .../data}/iconsets/sun/16x16/connecting.gif | Bin {data => gajim/data}/iconsets/sun/16x16/dnd.png | Bin {data => gajim/data}/iconsets/sun/16x16/error.png | Bin {data => gajim/data}/iconsets/sun/16x16/event.gif | Bin .../data}/iconsets/sun/16x16/invisible.png | Bin .../data}/iconsets/sun/16x16/muc_active.png | Bin .../data}/iconsets/sun/16x16/muc_inactive.png | Bin .../data}/iconsets/sun/16x16/not_in_roster.png | Bin {data => gajim/data}/iconsets/sun/16x16/offline.png | Bin {data => gajim/data}/iconsets/sun/16x16/online.png | Bin {data => gajim/data}/iconsets/sun/16x16/opened.png | Bin .../data}/iconsets/sun/16x16/requested.png | Bin {data => gajim/data}/iconsets/sun/16x16/xa.png | Bin {data => gajim/data}/iconsets/sun/32x32/away.png | Bin {data => gajim/data}/iconsets/sun/32x32/chat.png | Bin {data => gajim/data}/iconsets/sun/32x32/dnd.png | Bin {data => gajim/data}/iconsets/sun/32x32/error.png | Bin .../data}/iconsets/sun/32x32/invisible.png | Bin .../data}/iconsets/sun/32x32/muc_active.png | Bin .../data}/iconsets/sun/32x32/muc_inactive.png | Bin .../data}/iconsets/sun/32x32/not_in_roster.png | Bin {data => gajim/data}/iconsets/sun/32x32/offline.png | Bin {data => gajim/data}/iconsets/sun/32x32/online.png | Bin .../data}/iconsets/sun/32x32/requested.png | Bin {data => gajim/data}/iconsets/sun/32x32/xa.png | Bin {data => gajim/data}/iconsets/sun/48x48/offline.png | Bin {data => gajim/data}/iconsets/sun/48x48/online.png | Bin .../data}/iconsets/transports/aim/16x16/away.png | Bin .../data}/iconsets/transports/aim/16x16/chat.png | Bin .../data}/iconsets/transports/aim/16x16/dnd.png | Bin .../iconsets/transports/aim/16x16/not_in_roster.png | Bin .../data}/iconsets/transports/aim/16x16/offline.png | Bin .../data}/iconsets/transports/aim/16x16/online.png | Bin .../data}/iconsets/transports/aim/16x16/xa.png | Bin .../data}/iconsets/transports/aim/32x32/away.png | Bin .../data}/iconsets/transports/aim/32x32/chat.png | Bin .../data}/iconsets/transports/aim/32x32/dnd.png | Bin .../iconsets/transports/aim/32x32/not_in_roster.png | Bin .../data}/iconsets/transports/aim/32x32/offline.png | Bin .../data}/iconsets/transports/aim/32x32/online.png | Bin .../data}/iconsets/transports/aim/32x32/xa.png | Bin .../data}/iconsets/transports/aim/48x48/offline.png | Bin .../data}/iconsets/transports/aim/48x48/online.png | Bin .../iconsets/transports/facebook/16x16/away.png | Bin .../iconsets/transports/facebook/16x16/chat.png | Bin .../iconsets/transports/facebook/16x16/dnd.png | Bin .../transports/facebook/16x16/not_in_roster.png | Bin .../iconsets/transports/facebook/16x16/offline.png | Bin .../iconsets/transports/facebook/16x16/online.png | Bin .../data}/iconsets/transports/facebook/16x16/xa.png | Bin .../iconsets/transports/facebook/32x32/away.png | Bin .../iconsets/transports/facebook/32x32/chat.png | Bin .../iconsets/transports/facebook/32x32/dnd.png | Bin .../transports/facebook/32x32/not_in_roster.png | Bin .../iconsets/transports/facebook/32x32/offline.png | Bin .../iconsets/transports/facebook/32x32/online.png | Bin .../data}/iconsets/transports/facebook/32x32/xa.png | Bin .../iconsets/transports/facebook/48x48/offline.png | Bin .../iconsets/transports/facebook/48x48/online.png | Bin .../iconsets/transports/gadu-gadu/16x16/away.png | Bin .../iconsets/transports/gadu-gadu/16x16/chat.png | Bin .../iconsets/transports/gadu-gadu/16x16/dnd.png | Bin .../transports/gadu-gadu/16x16/invisible.png | Bin .../transports/gadu-gadu/16x16/not_in_roster.png | Bin .../iconsets/transports/gadu-gadu/16x16/offline.png | Bin .../iconsets/transports/gadu-gadu/16x16/online.png | Bin .../iconsets/transports/gadu-gadu/16x16/xa.png | Bin .../iconsets/transports/gadu-gadu/32x32/away.png | Bin .../iconsets/transports/gadu-gadu/32x32/chat.png | Bin .../iconsets/transports/gadu-gadu/32x32/dnd.png | Bin .../transports/gadu-gadu/32x32/invisible.png | Bin .../transports/gadu-gadu/32x32/not_in_roster.png | Bin .../iconsets/transports/gadu-gadu/32x32/offline.png | Bin .../iconsets/transports/gadu-gadu/32x32/online.png | Bin .../iconsets/transports/gadu-gadu/32x32/xa.png | Bin .../iconsets/transports/gadu-gadu/48x48/offline.png | Bin .../iconsets/transports/gadu-gadu/48x48/online.png | Bin .../data}/iconsets/transports/icq/16x16/away.png | Bin .../data}/iconsets/transports/icq/16x16/chat.png | Bin .../data}/iconsets/transports/icq/16x16/dnd.png | Bin .../iconsets/transports/icq/16x16/not_in_roster.png | Bin .../data}/iconsets/transports/icq/16x16/offline.png | Bin .../data}/iconsets/transports/icq/16x16/online.png | Bin .../data}/iconsets/transports/icq/16x16/xa.png | Bin .../data}/iconsets/transports/icq/32x32/away.png | Bin .../data}/iconsets/transports/icq/32x32/chat.png | Bin .../data}/iconsets/transports/icq/32x32/dnd.png | Bin .../iconsets/transports/icq/32x32/not_in_roster.png | Bin .../data}/iconsets/transports/icq/32x32/offline.png | Bin .../data}/iconsets/transports/icq/32x32/online.png | Bin .../data}/iconsets/transports/icq/32x32/xa.png | Bin .../data}/iconsets/transports/icq/48x48/offline.png | Bin .../data}/iconsets/transports/icq/48x48/online.png | Bin .../data}/iconsets/transports/irc/16x16/away.png | Bin .../data}/iconsets/transports/irc/16x16/chat.png | Bin .../data}/iconsets/transports/irc/16x16/dnd.png | Bin .../iconsets/transports/irc/16x16/not_in_roster.png | Bin .../data}/iconsets/transports/irc/16x16/offline.png | Bin .../data}/iconsets/transports/irc/16x16/online.png | Bin .../data}/iconsets/transports/irc/16x16/xa.png | Bin .../data}/iconsets/transports/irc/32x32/away.png | Bin .../data}/iconsets/transports/irc/32x32/chat.png | Bin .../data}/iconsets/transports/irc/32x32/dnd.png | Bin .../iconsets/transports/irc/32x32/not_in_roster.png | Bin .../data}/iconsets/transports/irc/32x32/offline.png | Bin .../data}/iconsets/transports/irc/32x32/online.png | Bin .../data}/iconsets/transports/irc/32x32/xa.png | Bin .../data}/iconsets/transports/mrim/16x16/away.png | Bin .../data}/iconsets/transports/mrim/16x16/chat.png | Bin .../data}/iconsets/transports/mrim/16x16/dnd.png | Bin .../transports/mrim/16x16/not_in_roster.png | Bin .../iconsets/transports/mrim/16x16/offline.png | Bin .../data}/iconsets/transports/mrim/16x16/online.png | Bin .../data}/iconsets/transports/mrim/16x16/xa.png | Bin .../data}/iconsets/transports/mrim/32x32/away.png | Bin .../data}/iconsets/transports/mrim/32x32/chat.png | Bin .../data}/iconsets/transports/mrim/32x32/dnd.png | Bin .../transports/mrim/32x32/not_in_roster.png | Bin .../iconsets/transports/mrim/32x32/offline.png | Bin .../data}/iconsets/transports/mrim/32x32/online.png | Bin .../data}/iconsets/transports/mrim/32x32/xa.png | Bin .../iconsets/transports/mrim/48x48/offline.png | Bin .../data}/iconsets/transports/mrim/48x48/online.png | Bin .../data}/iconsets/transports/msn/16x16/away.png | Bin .../data}/iconsets/transports/msn/16x16/chat.png | Bin .../data}/iconsets/transports/msn/16x16/dnd.png | Bin .../iconsets/transports/msn/16x16/not_in_roster.png | Bin .../data}/iconsets/transports/msn/16x16/offline.png | Bin .../data}/iconsets/transports/msn/16x16/online.png | Bin .../data}/iconsets/transports/msn/16x16/xa.png | Bin .../data}/iconsets/transports/msn/32x32/away.png | Bin .../data}/iconsets/transports/msn/32x32/chat.png | Bin .../data}/iconsets/transports/msn/32x32/dnd.png | Bin .../iconsets/transports/msn/32x32/not_in_roster.png | Bin .../data}/iconsets/transports/msn/32x32/offline.png | Bin .../data}/iconsets/transports/msn/32x32/online.png | Bin .../data}/iconsets/transports/msn/32x32/xa.png | Bin .../data}/iconsets/transports/msn/48x48/offline.png | Bin .../data}/iconsets/transports/msn/48x48/online.png | Bin .../data}/iconsets/transports/sms/16x16/away.png | Bin .../data}/iconsets/transports/sms/16x16/chat.png | Bin .../data}/iconsets/transports/sms/16x16/dnd.png | Bin .../data}/iconsets/transports/sms/16x16/offline.png | Bin .../data}/iconsets/transports/sms/16x16/online.png | Bin .../data}/iconsets/transports/sms/16x16/xa.png | Bin .../data}/iconsets/transports/sms/32x32/away.png | Bin .../data}/iconsets/transports/sms/32x32/chat.png | Bin .../data}/iconsets/transports/sms/32x32/dnd.png | Bin .../data}/iconsets/transports/sms/32x32/offline.png | Bin .../data}/iconsets/transports/sms/32x32/online.png | Bin .../data}/iconsets/transports/sms/32x32/xa.png | Bin .../data}/iconsets/transports/tlen/16x16/away.png | Bin .../data}/iconsets/transports/tlen/16x16/chat.png | Bin .../data}/iconsets/transports/tlen/16x16/dnd.png | Bin .../transports/tlen/16x16/not_in_roster.png | Bin .../iconsets/transports/tlen/16x16/offline.png | Bin .../data}/iconsets/transports/tlen/16x16/online.png | Bin .../data}/iconsets/transports/tlen/16x16/xa.png | Bin .../data}/iconsets/transports/tlen/32x32/away.png | Bin .../data}/iconsets/transports/tlen/32x32/chat.png | Bin .../data}/iconsets/transports/tlen/32x32/dnd.png | Bin .../transports/tlen/32x32/not_in_roster.png | Bin .../iconsets/transports/tlen/32x32/offline.png | Bin .../data}/iconsets/transports/tlen/32x32/online.png | Bin .../data}/iconsets/transports/tlen/32x32/xa.png | Bin .../iconsets/transports/tlen/48x48/offline.png | Bin .../data}/iconsets/transports/tlen/48x48/online.png | Bin .../iconsets/transports/weather/16x16/away.png | Bin .../iconsets/transports/weather/16x16/chat.png | Bin .../data}/iconsets/transports/weather/16x16/dnd.png | Bin .../iconsets/transports/weather/16x16/offline.png | Bin .../iconsets/transports/weather/16x16/online.png | Bin .../data}/iconsets/transports/weather/16x16/xa.png | Bin .../iconsets/transports/weather/32x32/away.png | Bin .../iconsets/transports/weather/32x32/chat.png | Bin .../data}/iconsets/transports/weather/32x32/dnd.png | Bin .../iconsets/transports/weather/32x32/offline.png | Bin .../iconsets/transports/weather/32x32/online.png | Bin .../data}/iconsets/transports/weather/32x32/xa.png | Bin .../data}/iconsets/transports/yahoo/16x16/away.png | Bin .../data}/iconsets/transports/yahoo/16x16/chat.png | Bin .../data}/iconsets/transports/yahoo/16x16/dnd.png | Bin .../transports/yahoo/16x16/not_in_roster.png | Bin .../iconsets/transports/yahoo/16x16/offline.png | Bin .../iconsets/transports/yahoo/16x16/online.png | Bin .../data}/iconsets/transports/yahoo/16x16/xa.png | Bin .../data}/iconsets/transports/yahoo/32x32/away.png | Bin .../data}/iconsets/transports/yahoo/32x32/chat.png | Bin .../data}/iconsets/transports/yahoo/32x32/dnd.png | Bin .../transports/yahoo/32x32/not_in_roster.png | Bin .../iconsets/transports/yahoo/32x32/offline.png | Bin .../iconsets/transports/yahoo/32x32/online.png | Bin .../data}/iconsets/transports/yahoo/32x32/xa.png | Bin .../iconsets/transports/yahoo/48x48/offline.png | Bin .../iconsets/transports/yahoo/48x48/online.png | Bin {data => gajim/data}/iconsets/wroop/16x16/away.png | Bin {data => gajim/data}/iconsets/wroop/16x16/chat.png | Bin .../data}/iconsets/wroop/16x16/closed.png | Bin .../data}/iconsets/wroop/16x16/connecting.gif | Bin {data => gajim/data}/iconsets/wroop/16x16/dnd.png | Bin {data => gajim/data}/iconsets/wroop/16x16/error.png | Bin {data => gajim/data}/iconsets/wroop/16x16/event.gif | Bin .../data}/iconsets/wroop/16x16/invisible.png | Bin .../data}/iconsets/wroop/16x16/muc_active.png | Bin .../data}/iconsets/wroop/16x16/muc_inactive.png | Bin .../data}/iconsets/wroop/16x16/not_in_roster.png | Bin .../data}/iconsets/wroop/16x16/offline.png | Bin .../data}/iconsets/wroop/16x16/online.png | Bin .../data}/iconsets/wroop/16x16/opened.png | Bin .../data}/iconsets/wroop/16x16/requested.png | Bin {data => gajim/data}/iconsets/wroop/16x16/xa.png | Bin {data => gajim/data}/iconsets/wroop/32x32/away.png | Bin {data => gajim/data}/iconsets/wroop/32x32/chat.png | Bin {data => gajim/data}/iconsets/wroop/32x32/dnd.png | Bin {data => gajim/data}/iconsets/wroop/32x32/error.png | Bin .../data}/iconsets/wroop/32x32/invisible.png | Bin .../data}/iconsets/wroop/32x32/muc_active.png | Bin .../data}/iconsets/wroop/32x32/muc_inactive.png | Bin .../data}/iconsets/wroop/32x32/not_in_roster.png | Bin .../data}/iconsets/wroop/32x32/offline.png | Bin .../data}/iconsets/wroop/32x32/online.png | Bin .../data}/iconsets/wroop/32x32/requested.png | Bin {data => gajim/data}/iconsets/wroop/32x32/xa.png | Bin {data => gajim/data}/iconsets/wroop/48x48/away.png | Bin {data => gajim/data}/iconsets/wroop/48x48/chat.png | Bin {data => gajim/data}/iconsets/wroop/48x48/dnd.png | Bin {data => gajim/data}/iconsets/wroop/48x48/error.png | Bin .../data}/iconsets/wroop/48x48/invisible.png | Bin .../data}/iconsets/wroop/48x48/muc_active.png | Bin .../data}/iconsets/wroop/48x48/muc_inactive.png | Bin .../data}/iconsets/wroop/48x48/not_in_roster.png | Bin .../data}/iconsets/wroop/48x48/offline.png | Bin .../data}/iconsets/wroop/48x48/online.png | Bin .../data}/iconsets/wroop/48x48/requested.png | Bin {data => gajim/data}/iconsets/wroop/48x48/xa.png | Bin {data => gajim/data}/moods/Makefile.am | 0 {data => gajim/data}/moods/default/afraid.png | Bin {data => gajim/data}/moods/default/amazed.png | Bin {data => gajim/data}/moods/default/amorous.png | Bin {data => gajim/data}/moods/default/angry.png | Bin {data => gajim/data}/moods/default/annoyed.png | Bin {data => gajim/data}/moods/default/anxious.png | Bin {data => gajim/data}/moods/default/aroused.png | Bin {data => gajim/data}/moods/default/ashamed.png | Bin {data => gajim/data}/moods/default/bored.png | Bin {data => gajim/data}/moods/default/brave.png | Bin {data => gajim/data}/moods/default/calm.png | Bin {data => gajim/data}/moods/default/cautious.png | Bin {data => gajim/data}/moods/default/cold.png | Bin {data => gajim/data}/moods/default/confident.png | Bin {data => gajim/data}/moods/default/confused.png | Bin .../data}/moods/default/contemplative.png | Bin {data => gajim/data}/moods/default/contented.png | Bin {data => gajim/data}/moods/default/cranky.png | Bin {data => gajim/data}/moods/default/crazy.png | Bin {data => gajim/data}/moods/default/creative.png | Bin {data => gajim/data}/moods/default/curious.png | Bin {data => gajim/data}/moods/default/dejected.png | Bin {data => gajim/data}/moods/default/depressed.png | Bin {data => gajim/data}/moods/default/disappointed.png | Bin {data => gajim/data}/moods/default/disgusted.png | Bin {data => gajim/data}/moods/default/dismayed.png | Bin {data => gajim/data}/moods/default/distracted.png | Bin {data => gajim/data}/moods/default/embarrassed.png | Bin {data => gajim/data}/moods/default/envious.png | Bin {data => gajim/data}/moods/default/excited.png | Bin {data => gajim/data}/moods/default/flirtatious.png | Bin {data => gajim/data}/moods/default/frustrated.png | Bin {data => gajim/data}/moods/default/grateful.png | Bin {data => gajim/data}/moods/default/grieving.png | Bin {data => gajim/data}/moods/default/grumpy.png | Bin {data => gajim/data}/moods/default/guilty.png | Bin {data => gajim/data}/moods/default/happy.png | Bin {data => gajim/data}/moods/default/hopeful.png | Bin {data => gajim/data}/moods/default/hot.png | Bin {data => gajim/data}/moods/default/humbled.png | Bin {data => gajim/data}/moods/default/humiliated.png | Bin {data => gajim/data}/moods/default/hungry.png | Bin {data => gajim/data}/moods/default/hurt.png | Bin {data => gajim/data}/moods/default/impressed.png | Bin {data => gajim/data}/moods/default/in_awe.png | Bin {data => gajim/data}/moods/default/in_love.png | Bin {data => gajim/data}/moods/default/indignant.png | Bin {data => gajim/data}/moods/default/interested.png | Bin {data => gajim/data}/moods/default/intoxicated.png | Bin {data => gajim/data}/moods/default/invincible.png | Bin {data => gajim/data}/moods/default/jealous.png | Bin {data => gajim/data}/moods/default/lonely.png | Bin {data => gajim/data}/moods/default/lost.png | Bin {data => gajim/data}/moods/default/lucky.png | Bin {data => gajim/data}/moods/default/mean.png | Bin {data => gajim/data}/moods/default/moody.png | Bin {data => gajim/data}/moods/default/nervous.png | Bin {data => gajim/data}/moods/default/neutral.png | Bin {data => gajim/data}/moods/default/offended.png | Bin {data => gajim/data}/moods/default/outraged.png | Bin {data => gajim/data}/moods/default/playful.png | Bin {data => gajim/data}/moods/default/proud.png | Bin {data => gajim/data}/moods/default/relaxed.png | Bin {data => gajim/data}/moods/default/relieved.png | Bin {data => gajim/data}/moods/default/remorseful.png | Bin {data => gajim/data}/moods/default/restless.png | Bin {data => gajim/data}/moods/default/sad.png | Bin {data => gajim/data}/moods/default/sarcastic.png | Bin {data => gajim/data}/moods/default/satisfied.png | Bin {data => gajim/data}/moods/default/serious.png | Bin {data => gajim/data}/moods/default/shocked.png | Bin {data => gajim/data}/moods/default/shy.png | Bin {data => gajim/data}/moods/default/sick.png | Bin {data => gajim/data}/moods/default/sleepy.png | Bin {data => gajim/data}/moods/default/spontaneous.png | Bin {data => gajim/data}/moods/default/stressed.png | Bin {data => gajim/data}/moods/default/strong.png | Bin {data => gajim/data}/moods/default/surprised.png | Bin {data => gajim/data}/moods/default/thankful.png | Bin {data => gajim/data}/moods/default/thirsty.png | Bin {data => gajim/data}/moods/default/tired.png | Bin {data => gajim/data}/moods/default/undefined.png | Bin {data => gajim/data}/moods/default/unknown.png | Bin {data => gajim/data}/moods/default/weak.png | Bin {data => gajim/data}/moods/default/worried.png | Bin {data => gajim/data}/other/cacerts.pem | 0 {data => gajim/data}/other/dh4096.pem | 0 {data => gajim/data}/other/servers.xml | 0 {data => gajim/data}/sounds/attention.wav | Bin {data => gajim/data}/sounds/bounce.wav | Bin {data => gajim/data}/sounds/connected.wav | Bin {data => gajim/data}/sounds/disconnected.wav | Bin {data => gajim/data}/sounds/gc_message1.wav | Bin {data => gajim/data}/sounds/gc_message2.wav | Bin {data => gajim/data}/sounds/message1.wav | Bin {data => gajim/data}/sounds/message2.wav | Bin {data => gajim/data}/sounds/sent.wav | Bin {data => gajim/data}/style/gajim.css | 0 2818 files changed, 0 insertions(+), 0 deletions(-) rename {data => gajim/data}/activities/Makefile.am (100%) rename {data => gajim/data}/activities/default/doing_chores/buying_groceries.png (100%) rename {data => gajim/data}/activities/default/doing_chores/category.png (100%) rename {data => gajim/data}/activities/default/doing_chores/cleaning.png (100%) rename {data => gajim/data}/activities/default/doing_chores/cooking.png (100%) rename {data => gajim/data}/activities/default/doing_chores/doing_maintenance.png (100%) rename {data => gajim/data}/activities/default/doing_chores/doing_the_dishes.png (100%) rename {data => gajim/data}/activities/default/doing_chores/doing_the_laundry.png (100%) rename {data => gajim/data}/activities/default/doing_chores/gardening.png (100%) rename {data => gajim/data}/activities/default/doing_chores/running_an_errand.png (100%) rename {data => gajim/data}/activities/default/doing_chores/walking_the_dog.png (100%) rename {data => gajim/data}/activities/default/drinking/category.png (100%) rename {data => gajim/data}/activities/default/drinking/having_a_beer.png (100%) rename {data => gajim/data}/activities/default/drinking/having_coffee.png (100%) rename {data => gajim/data}/activities/default/drinking/having_tea.png (100%) rename {data => gajim/data}/activities/default/eating/category.png (100%) rename {data => gajim/data}/activities/default/eating/having_a_snack.png (100%) rename {data => gajim/data}/activities/default/eating/having_breakfast.png (100%) rename {data => gajim/data}/activities/default/eating/having_dinner.png (100%) rename {data => gajim/data}/activities/default/eating/having_lunch.png (100%) rename {data => gajim/data}/activities/default/exercising/category.png (100%) rename {data => gajim/data}/activities/default/exercising/cycling.png (100%) rename {data => gajim/data}/activities/default/exercising/dancing.png (100%) rename {data => gajim/data}/activities/default/exercising/hiking.png (100%) rename {data => gajim/data}/activities/default/exercising/jogging.png (100%) rename {data => gajim/data}/activities/default/exercising/playing_sports.png (100%) rename {data => gajim/data}/activities/default/exercising/running.png (100%) rename {data => gajim/data}/activities/default/exercising/skiing.png (100%) rename {data => gajim/data}/activities/default/exercising/swimming.png (100%) rename {data => gajim/data}/activities/default/exercising/working_out.png (100%) rename {data => gajim/data}/activities/default/grooming/at_the_spa.png (100%) rename {data => gajim/data}/activities/default/grooming/brushing_teeth.png (100%) rename {data => gajim/data}/activities/default/grooming/category.png (100%) rename {data => gajim/data}/activities/default/grooming/getting_a_haircut.png (100%) rename {data => gajim/data}/activities/default/grooming/shaving.png (100%) rename {data => gajim/data}/activities/default/grooming/taking_a_bath.png (100%) rename {data => gajim/data}/activities/default/grooming/taking_a_shower.png (100%) rename {data => gajim/data}/activities/default/having_appointment/category.png (100%) rename {data => gajim/data}/activities/default/inactive/category.png (100%) rename {data => gajim/data}/activities/default/inactive/day_off.png (100%) rename {data => gajim/data}/activities/default/inactive/hanging_out.png (100%) rename {data => gajim/data}/activities/default/inactive/hiding.png (100%) rename {data => gajim/data}/activities/default/inactive/on_vacation.png (100%) rename {data => gajim/data}/activities/default/inactive/praying.png (100%) rename {data => gajim/data}/activities/default/inactive/scheduled_holiday.png (100%) rename {data => gajim/data}/activities/default/inactive/sleeping.png (100%) rename {data => gajim/data}/activities/default/inactive/thinking.png (100%) rename {data => gajim/data}/activities/default/relaxing/category.png (100%) rename {data => gajim/data}/activities/default/relaxing/fishing.png (100%) rename {data => gajim/data}/activities/default/relaxing/gaming.png (100%) rename {data => gajim/data}/activities/default/relaxing/going_out.png (100%) rename {data => gajim/data}/activities/default/relaxing/partying.png (100%) rename {data => gajim/data}/activities/default/relaxing/reading.png (100%) rename {data => gajim/data}/activities/default/relaxing/rehearsing.png (100%) rename {data => gajim/data}/activities/default/relaxing/shopping.png (100%) rename {data => gajim/data}/activities/default/relaxing/smoking.png (100%) rename {data => gajim/data}/activities/default/relaxing/socializing.png (100%) rename {data => gajim/data}/activities/default/relaxing/sunbathing.png (100%) rename {data => gajim/data}/activities/default/relaxing/watching_a_movie.png (100%) rename {data => gajim/data}/activities/default/relaxing/watching_tv.png (100%) rename {data => gajim/data}/activities/default/talking/category.png (100%) rename {data => gajim/data}/activities/default/talking/in_real_life.png (100%) rename {data => gajim/data}/activities/default/talking/on_the_phone.png (100%) rename {data => gajim/data}/activities/default/talking/on_video_phone.png (100%) rename {data => gajim/data}/activities/default/traveling/category.png (100%) rename {data => gajim/data}/activities/default/traveling/commuting.png (100%) rename {data => gajim/data}/activities/default/traveling/cycling.png (100%) rename {data => gajim/data}/activities/default/traveling/driving.png (100%) rename {data => gajim/data}/activities/default/traveling/in_a_car.png (100%) rename {data => gajim/data}/activities/default/traveling/on_a_bus.png (100%) rename {data => gajim/data}/activities/default/traveling/on_a_plane.png (100%) rename {data => gajim/data}/activities/default/traveling/on_a_train.png (100%) rename {data => gajim/data}/activities/default/traveling/on_a_trip.png (100%) rename {data => gajim/data}/activities/default/traveling/walking.png (100%) rename {data => gajim/data}/activities/default/unknown/category.png (100%) rename {data => gajim/data}/activities/default/working/category.png (100%) rename {data => gajim/data}/activities/default/working/coding.png (100%) rename {data => gajim/data}/activities/default/working/in_a_meeting.png (100%) rename {data => gajim/data}/activities/default/working/studying.png (100%) rename {data => gajim/data}/activities/default/working/writing.png (100%) rename {data => gajim/data}/emoticons/Makefile.am (100%) rename {data => gajim/data}/emoticons/font-emoticons/emoticons_theme.py (100%) rename {data => gajim/data}/emoticons/noto-emoticons/LICENSE (100%) rename {data => gajim/data}/emoticons/noto-emoticons/README.md (100%) rename {data => gajim/data}/emoticons/noto-emoticons/emoticons.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/emoticons_theme.py (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0023.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0023_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u002a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u002a_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0030.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0030_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0031.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0031_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0032.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0032_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0033.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0033_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0034.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0034_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0035.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0035_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0036.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0036_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0037.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0037_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0038.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0038_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0039.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u0039_20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u00a9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u00ae.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f004.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f0cf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f170.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f171.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f17e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f17f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f18e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f191.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f192.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f193.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f194.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f195.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f196.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f197.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f198.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f199.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f19a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1e6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1e7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1e8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1e8_1f1f3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1e9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1e9_1f1ea.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ea.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ea_1f1f8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1eb_1f1f7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ec.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ec_1f1e7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ee.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ee_1f1f9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ef.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ef_1f1f5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f0_1f1f7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f7_1f1fa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1f9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1fa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1fa_1f1f8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f1ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f201.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f202.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f21a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f22f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f232.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f233.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f234.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f235.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f236.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f237.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f238.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f239.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f23a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f250.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f251.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f300.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f301.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f302.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f303.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f304.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f305.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f306.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f307.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f308.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f309.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f30a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f30b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f30c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f30d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f30e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f30f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f310.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f311.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f312.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f313.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f314.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f315.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f316.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f317.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f318.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f319.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f31a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f31b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f31c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f31d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f31e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f31f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f320.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f321.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f324.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f325.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f326.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f327.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f328.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f329.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f32a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f32b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f32c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f32d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f32e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f32f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f330.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f331.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f332.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f333.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f334.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f335.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f336.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f337.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f338.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f339.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f33a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f33b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f33c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f33d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f33f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f340.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f341.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f342.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f343.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f344.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f345.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f346.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f347.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f348.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f349.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f34a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f34b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f34c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f34d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f34e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f34f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f350.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f351.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f352.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f353.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f354.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f355.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f356.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f357.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f358.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f359.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f35a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f35b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f35c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f35d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f35e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f35f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f360.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f361.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f362.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f363.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f364.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f365.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f366.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f367.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f368.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f369.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f36a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f36b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f36c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f36d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f36e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f36f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f370.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f371.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f372.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f374.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f375.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f376.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f377.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f378.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f379.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f37a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f37b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f37c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f37d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f37e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f37f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f380.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f381.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f382.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f383.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f384.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f385.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f385_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f385_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f385_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f385_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f385_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f386.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f387.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f388.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f389.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f38a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f38b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f38c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f38d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f38e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f38f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f390.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f391.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f392.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f396.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f397.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f399.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f39a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f39b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f39e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f39f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3a9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3aa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ab.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ac.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ad.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ae.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3af.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3b9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ba.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3bd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3be.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3bf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c3_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c4_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3c9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ca_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ce.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3cf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3d9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3da.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3db.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3dc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3dd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3de.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3df.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3e9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ea.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ec.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ee.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ef.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3f0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3f3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3f4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3f5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3f7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3f8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3f9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3fa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f400.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f401.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f402.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f403.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f404.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f405.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f406.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f407.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f408.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f409.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f40a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f40b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f40c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f40d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f40e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f40f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f410.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f411.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f412.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f413.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f414.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f415.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f416.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f417.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f418.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f419.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f41a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f41b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f41c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f41d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f41e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f41f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f420.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f421.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f422.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f423.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f424.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f425.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f426.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f427.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f428.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f429.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f42a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f42b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f42c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f42d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f42e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f42f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f430.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f431.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f432.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f433.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f434.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f435.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f436.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f437.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f438.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f439.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f43a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f43b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f43c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f43d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f43e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f43f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f440.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f441.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f441_200d_1f5e8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f442.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f442_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f442_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f442_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f442_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f442_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f443.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f443_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f443_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f443_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f443_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f443_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f444.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f445.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f446.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f446_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f446_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f446_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f446_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f446_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f447.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f447_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f447_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f447_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f447_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f447_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f448.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f448_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f448_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f448_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f448_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f448_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f449.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f449_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f449_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f449_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f449_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f449_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44a_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44a_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44a_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44a_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44a_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44b_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44b_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44b_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44b_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44b_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44c_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44c_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44c_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44c_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44c_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44d_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44d_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44d_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44d_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44d_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44e_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44e_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44e_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44e_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44e_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44f_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44f_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44f_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44f_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f44f_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f450.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f450_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f450_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f450_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f450_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f450_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f451.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f452.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f453.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f454.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f455.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f456.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f457.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f458.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f459.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f45a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f45b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f45c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f45d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f45e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f45f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f460.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f461.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f462.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f463.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f464.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f465.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f466_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f466_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f466_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f466_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f466_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f467_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f467_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f467_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f467_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f467_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f466_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f468.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f48b_200d_1f468.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f33e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f373.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f393.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f3a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f3a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f3eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f3ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f466_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f466.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f467.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f468.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f469.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f468.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f469.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46e_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46f_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f46f_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f470.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f470_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f470_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f470_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f470_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f470_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f471_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f472.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f472_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f472_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f472_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f472_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f472_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f473_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f474.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f474_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f474_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f474_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f474_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f474_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f475.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f475_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f475_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f475_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f475_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f475_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f476.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f476_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f476_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f476_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f476_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f476_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f477_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f478.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f478_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f478_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f478_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f478_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f478_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f479.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47c_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47c_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47c_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47c_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47c_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f47f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f480.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f481_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f482_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f483.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f483_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f483_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f483_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f483_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f483_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f484.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f485.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f485_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f485_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f485_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f485_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f485_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f486_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f487_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f488.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f489.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f48a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f48b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f48c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f48d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f48e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f490.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f492.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f493.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f494.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f495.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f496.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f497.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f498.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f499.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f49a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f49b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f49c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f49d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f49e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f49f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4a9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4aa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4aa_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4aa_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4aa_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4aa_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4aa_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ab.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ac.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ad.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ae.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4af.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4b9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ba.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4bd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4be.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4bf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4c9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ca.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4cb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4cc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4cd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ce.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4cf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4d9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4da.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4db.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4dc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4dd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4de.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4df.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4e9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ea.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ec.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ee.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ef.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4f9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4fa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f4ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f500.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f501.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f502.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f503.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f504.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f505.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f506.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f507.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f508.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f509.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f50a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f50b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f50c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f50d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f50e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f50f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f510.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f511.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f512.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f513.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f514.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f515.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f516.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f517.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f518.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f519.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f51a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f51b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f51c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f51d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f51e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f51f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f520.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f521.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f522.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f523.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f524.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f525.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f526.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f527.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f528.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f529.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f52a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f52b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f52c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f52d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f52e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f52f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f530.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f531.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f532.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f533.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f534.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f535.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f536.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f537.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f538.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f539.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f53a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f53b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f53c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f53d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f549.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f54a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f54b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f54c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f54d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f54e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f550.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f551.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f552.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f553.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f554.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f555.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f556.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f557.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f558.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f559.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f55a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f55b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f55c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f55d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f55e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f55f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f560.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f561.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f562.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f563.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f564.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f565.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f566.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f567.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f56f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f570.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f573.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f574.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f575_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f576.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f577.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f578.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f579.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f57a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f57a_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f57a_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f57a_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f57a_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f57a_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f587.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f58a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f58b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f58c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f58d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f590.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f590_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f590_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f590_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f590_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f590_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f595.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f595_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f595_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f595_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f595_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f595_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f596.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f596_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f596_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f596_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f596_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f596_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5a5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5b1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5b2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5c2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5c3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5c4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5d1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5d2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5d3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5dc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5dd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5de.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5e1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5e8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5ef.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5f3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5fa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f5ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f600.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f601.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f602.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f603.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f604.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f605.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f606.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f607.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f608.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f609.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f60a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f60b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f60c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f60d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f60e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f60f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f610.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f611.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f612.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f613.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f614.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f615.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f616.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f617.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f618.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f619.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f61a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f61b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f61c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f61d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f61e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f61f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f620.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f621.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f622.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f623.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f624.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f625.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f626.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f627.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f628.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f629.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f62a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f62b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f62c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f62d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f62e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f62f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f630.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f631.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f632.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f633.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f634.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f635.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f636.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f637.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f638.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f639.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f63a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f63b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f63c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f63d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f63e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f63f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f641.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f643.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f644.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f645_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f646_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f647_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f648.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f649.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64b_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64c_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64c_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64c_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64c_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64c_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64d_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64e_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64f_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64f_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64f_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64f_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f64f_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f680.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f681.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f682.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f683.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f684.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f685.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f686.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f687.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f688.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f689.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f68a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f68b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f68c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f68d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f68e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f68f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f690.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f691.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f693.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f694.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f697.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f698.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f699.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f69a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f69b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f69c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f69d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f69e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f69f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a3_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6a9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6aa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6ab.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6ac.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6ad.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6ae.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6af.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b4_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b5_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b6_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6b9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6ba.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6bb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6bc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6bd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6be.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6bf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c0_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c0_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c0_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c0_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c0_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6c5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6cb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6cc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6cd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6ce.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6cf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6d0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6d1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6d2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6e0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6e1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6e2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6e4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6e5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6e9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6ec.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6f0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6f3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6f4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6f5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f6f6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f910.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f911.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f912.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f913.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f914.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f915.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f916.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f917.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f918.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f918_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f918_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f918_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f918_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f918_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f919.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f919_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f919_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f919_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f919_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f919_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91a_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91a_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91a_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91a_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91a_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91b_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91b_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91b_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91b_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91b_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91c_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91c_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91c_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91c_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91c_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91d_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91d_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91d_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91d_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91d_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91e_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91e_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91e_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91e_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f91e_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f920.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f921.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f922.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f923.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f924.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f925.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f926_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f927.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f930.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f930_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f930_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f930_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f930_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f930_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f933.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f933_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f933_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f933_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f933_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f933_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f934.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f934_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f934_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f934_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f934_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f934_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f935.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f935_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f935_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f935_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f935_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f935_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f936.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f936_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f936_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f936_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f936_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f936_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f937_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f938_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f939_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93c_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93d_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f93e_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f940.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f941.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f942.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f943.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f944.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f945.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f947.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f948.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f949.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f94a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f94b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f950.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f951.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f952.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f953.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f954.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f955.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f956.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f957.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f958.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f959.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f95a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f95b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f95c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f95d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f95e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f980.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f981.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f982.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f983.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f984.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f985.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f986.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f987.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f988.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f989.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f98a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f98b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f98c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f98d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f98e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f98f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f990.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f991.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u1f9c0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u203c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2049.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u20e3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2122.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2139.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2194.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2195.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2196.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2197.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2198.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2199.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u21a9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u21aa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u231a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u231b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2328.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23cf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23e9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23ea.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23eb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23ec.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23ed.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23ee.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23ef.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23f0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23f1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23f2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23f3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23f8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23f9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u23fa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u24c2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u25aa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u25ab.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u25b6.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u25c0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u25fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u25fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u25fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u25fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2600.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2601.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2602.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2603.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2604.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u260e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2611.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2614.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2615.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2618.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u261d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u261d_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u261d_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u261d_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u261d_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u261d_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2620.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2622.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2623.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2626.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u262a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u262e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u262f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2638.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2639.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u263a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2648.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2649.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u264a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u264b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u264c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u264d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u264e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u264f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2650.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2651.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2652.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2653.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2660.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2663.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2665.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2666.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2668.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u267b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u267f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2692.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2693.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2694.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2695.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2696.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2697.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2699.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u269b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u269c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26a0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26a1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26aa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26ab.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26b0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26b1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26bd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26be.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26c4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26c5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26c8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26ce.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26cf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26d1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26d3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26d4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26e9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26ea.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f2.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f3.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f4.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f5.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f7.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f8.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_200d_2640.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26f9_200d_2642.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26fa.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u26fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2702.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2705.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2708.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2709.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270a.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270a_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270a_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270a_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270a_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270a_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270b_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270b_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270b_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270b_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270b_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270c_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270c_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270c_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270c_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270c_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270d_1f3fb.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270d_1f3fc.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270d_1f3fd.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270d_1f3fe.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270d_1f3ff.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u270f.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2712.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2714.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2716.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u271d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2721.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2728.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2733.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2734.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2744.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2747.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u274c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u274e.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2753.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2754.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2755.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2757.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2763.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2764.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2795.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2796.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2797.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u27a1.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u27b0.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u27bf.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2934.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2935.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2b05.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2b06.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2b07.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2b1b.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2b1c.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2b50.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u2b55.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u3030.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u303d.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u3297.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/u3299.png (100%) rename {data => gajim/data}/emoticons/noto-emoticons/png/ufe82b.png (100%) rename {data => gajim/data}/gui/Makefile.am (100%) rename {data => gajim/data}/gui/account_context_menu.ui (100%) rename {data => gajim/data}/gui/account_creation_wizard_window.ui (100%) rename {data => gajim/data}/gui/accounts_window.ui (100%) rename {data => gajim/data}/gui/add_new_contact_window.ui (100%) rename {data => gajim/data}/gui/adhoc_commands_window.ui (100%) rename {data => gajim/data}/gui/advanced_configuration_window.ui (100%) rename {data => gajim/data}/gui/application_menu.ui (100%) rename {data => gajim/data}/gui/archiving_313_preferences_item.ui (100%) rename {data => gajim/data}/gui/archiving_313_preferences_window.ui (100%) rename {data => gajim/data}/gui/atom_entry_window.ui (100%) rename {data => gajim/data}/gui/blocked_contacts_window.ui (100%) rename {data => gajim/data}/gui/change_activity_dialog.ui (100%) rename {data => gajim/data}/gui/change_mood_dialog.ui (100%) rename {data => gajim/data}/gui/change_password_dialog.ui (100%) rename {data => gajim/data}/gui/change_status_message_dialog.ui (100%) rename {data => gajim/data}/gui/chat_context_menu.ui (100%) rename {data => gajim/data}/gui/chat_control.ui (100%) rename {data => gajim/data}/gui/chat_to_muc_window.ui (100%) rename {data => gajim/data}/gui/choose_gpg_key_dialog.ui (100%) rename {data => gajim/data}/gui/contact_context_menu.ui (100%) rename {data => gajim/data}/gui/data_form_window.ui (100%) rename {data => gajim/data}/gui/dubbleinput_dialog.ui (100%) rename {data => gajim/data}/gui/edit_groups_dialog.ui (100%) rename {data => gajim/data}/gui/esession_info_window.ui (100%) rename {data => gajim/data}/gui/exception_dialog.ui (100%) rename {data => gajim/data}/gui/features_window.ui (100%) rename {data => gajim/data}/gui/filetransfers.ui (100%) rename {data => gajim/data}/gui/gajim_themes_window.ui (100%) rename {data => gajim/data}/gui/gc_control_popup_menu.ui (100%) rename {data => gajim/data}/gui/gc_occupants_menu.ui (100%) rename {data => gajim/data}/gui/groupchat_control.ui (100%) rename {data => gajim/data}/gui/groups_post_window.ui (100%) rename {data => gajim/data}/gui/history_manager.ui (100%) rename {data => gajim/data}/gui/history_window.ui (100%) rename {data => gajim/data}/gui/input_dialog.ui (100%) rename {data => gajim/data}/gui/input_text_dialog.ui (100%) rename {data => gajim/data}/gui/join_groupchat_window.ui (100%) rename {data => gajim/data}/gui/manage_bookmarks_window.ui (100%) rename {data => gajim/data}/gui/manage_pep_services_window.ui (100%) rename {data => gajim/data}/gui/manage_proxies_window.ui (100%) rename {data => gajim/data}/gui/manage_sounds_window.ui (100%) rename {data => gajim/data}/gui/message_window.ui (100%) rename {data => gajim/data}/gui/passphrase_dialog.ui (100%) rename {data => gajim/data}/gui/plugins_window.ui (100%) rename {data => gajim/data}/gui/popup_notification_window.ui (100%) rename {data => gajim/data}/gui/preferences_window.ui (100%) rename {data => gajim/data}/gui/privacy_list_window.ui (100%) rename {data => gajim/data}/gui/privacy_lists_window.ui (100%) rename {data => gajim/data}/gui/profile_window.ui (100%) rename {data => gajim/data}/gui/progress_dialog.ui (100%) rename {data => gajim/data}/gui/remove_account_window.ui (100%) rename {data => gajim/data}/gui/roster_item_exchange_window.ui (100%) rename {data => gajim/data}/gui/roster_window.ui (100%) rename {data => gajim/data}/gui/search_window.ui (100%) rename {data => gajim/data}/gui/service_discovery_window.ui (100%) rename {data => gajim/data}/gui/service_registration_window.ui (100%) rename {data => gajim/data}/gui/shortcuts_window.ui (100%) rename {data => gajim/data}/gui/single_message_window.ui (100%) rename {data => gajim/data}/gui/subscription_request_popup_menu.ui (100%) rename {data => gajim/data}/gui/subscription_request_window.ui (100%) rename {data => gajim/data}/gui/synchronise_select_account_dialog.ui (100%) rename {data => gajim/data}/gui/synchronise_select_contacts_dialog.ui (100%) rename {data => gajim/data}/gui/systray_context_menu.ui (100%) rename {data => gajim/data}/gui/tooltip_gc_contact.ui (100%) rename {data => gajim/data}/gui/tooltip_roster_contact.ui (100%) rename {data => gajim/data}/gui/vcard_information_window.ui (100%) rename {data => gajim/data}/gui/voip_call_received_dialog.ui (100%) rename {data => gajim/data}/gui/xml_console_window.ui (100%) rename {data => gajim/data}/gui/zeroconf_context_menu.ui (100%) rename {data => gajim/data}/gui/zeroconf_information_window.ui (100%) rename {data => gajim/data}/iconsets/Makefile.am (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/away.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/closed.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/connecting.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/error.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/event.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/invisible.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/muc_active.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/online.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/opened.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/requested.png (100%) rename {data => gajim/data}/iconsets/dcraven/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/away.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/closed.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/connecting.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/error.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/event.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/invisible.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/muc_active.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/online.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/opened.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/requested.png (100%) rename {data => gajim/data}/iconsets/dcraven/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/dcraven/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/dcraven/48x48/online.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/away.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/closed.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/connecting.gif (100%) rename {data => gajim/data}/iconsets/gnome/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/error.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/event.gif (100%) rename {data => gajim/data}/iconsets/gnome/16x16/invisible.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/muc_active.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/online.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/opened.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/requested.png (100%) rename {data => gajim/data}/iconsets/gnome/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/away.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/muc_active.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/online.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/requested.png (100%) rename {data => gajim/data}/iconsets/gnome/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/gnome/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/gnome/48x48/online.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/away.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/closed.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/connecting.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/error.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/event.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/invisible.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/muc_active.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/online.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/opened.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/requested.png (100%) rename {data => gajim/data}/iconsets/goojim/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/away.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/closed.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/connecting.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/error.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/event.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/invisible.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/muc_active.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/online.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/opened.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/requested.png (100%) rename {data => gajim/data}/iconsets/goojim/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/goojim/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/goojim/48x48/online.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/away.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/closed.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/connecting.gif (100%) rename {data => gajim/data}/iconsets/gota/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/error.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/event.gif (100%) rename {data => gajim/data}/iconsets/gota/16x16/invisible.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/muc_active.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/online.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/opened.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/requested.png (100%) rename {data => gajim/data}/iconsets/gota/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/away.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/closed.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/connecting.gif (100%) rename {data => gajim/data}/iconsets/gota/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/error.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/event.gif (100%) rename {data => gajim/data}/iconsets/gota/32x32/invisible.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/muc_active.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/online.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/opened.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/requested.png (100%) rename {data => gajim/data}/iconsets/gota/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/gota/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/gota/48x48/online.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/away.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/closed.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/connecting.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/error.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/event.gif (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/invisible.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/muc_active.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/online.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/opened.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/requested.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/away.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/error.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/invisible.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/muc_active.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/online.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/requested.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/jabberbulb/48x48/online.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/away.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/closed.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/connecting.gif (100%) rename {data => gajim/data}/iconsets/sun/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/error.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/event.gif (100%) rename {data => gajim/data}/iconsets/sun/16x16/invisible.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/muc_active.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/online.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/opened.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/requested.png (100%) rename {data => gajim/data}/iconsets/sun/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/away.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/error.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/invisible.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/muc_active.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/online.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/requested.png (100%) rename {data => gajim/data}/iconsets/sun/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/sun/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/sun/48x48/online.png (100%) rename {data => gajim/data}/iconsets/transports/aim/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/aim/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/aim/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/aim/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/aim/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/aim/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/aim/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/aim/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/aim/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/aim/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/aim/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/aim/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/aim/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/aim/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/aim/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/transports/aim/48x48/online.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/transports/facebook/48x48/online.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/16x16/invisible.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/32x32/invisible.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/transports/gadu-gadu/48x48/online.png (100%) rename {data => gajim/data}/iconsets/transports/icq/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/icq/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/icq/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/icq/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/icq/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/icq/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/icq/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/icq/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/icq/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/icq/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/icq/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/icq/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/icq/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/icq/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/icq/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/transports/icq/48x48/online.png (100%) rename {data => gajim/data}/iconsets/transports/irc/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/irc/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/irc/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/irc/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/irc/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/irc/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/irc/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/irc/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/irc/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/irc/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/irc/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/irc/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/irc/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/irc/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/transports/mrim/48x48/online.png (100%) rename {data => gajim/data}/iconsets/transports/msn/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/msn/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/msn/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/msn/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/msn/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/msn/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/msn/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/msn/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/msn/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/msn/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/msn/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/msn/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/msn/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/msn/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/msn/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/transports/msn/48x48/online.png (100%) rename {data => gajim/data}/iconsets/transports/sms/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/sms/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/sms/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/sms/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/sms/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/sms/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/sms/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/sms/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/sms/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/sms/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/sms/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/sms/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/transports/tlen/48x48/online.png (100%) rename {data => gajim/data}/iconsets/transports/weather/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/weather/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/weather/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/weather/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/weather/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/weather/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/weather/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/weather/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/weather/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/weather/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/weather/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/weather/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/16x16/away.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/16x16/online.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/32x32/away.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/32x32/online.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/transports/yahoo/48x48/online.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/away.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/chat.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/closed.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/connecting.gif (100%) rename {data => gajim/data}/iconsets/wroop/16x16/dnd.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/error.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/event.gif (100%) rename {data => gajim/data}/iconsets/wroop/16x16/invisible.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/muc_active.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/offline.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/online.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/opened.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/requested.png (100%) rename {data => gajim/data}/iconsets/wroop/16x16/xa.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/away.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/chat.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/dnd.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/error.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/invisible.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/muc_active.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/offline.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/online.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/requested.png (100%) rename {data => gajim/data}/iconsets/wroop/32x32/xa.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/away.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/chat.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/dnd.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/error.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/invisible.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/muc_active.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/muc_inactive.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/not_in_roster.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/offline.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/online.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/requested.png (100%) rename {data => gajim/data}/iconsets/wroop/48x48/xa.png (100%) rename {data => gajim/data}/moods/Makefile.am (100%) rename {data => gajim/data}/moods/default/afraid.png (100%) rename {data => gajim/data}/moods/default/amazed.png (100%) rename {data => gajim/data}/moods/default/amorous.png (100%) rename {data => gajim/data}/moods/default/angry.png (100%) rename {data => gajim/data}/moods/default/annoyed.png (100%) rename {data => gajim/data}/moods/default/anxious.png (100%) rename {data => gajim/data}/moods/default/aroused.png (100%) rename {data => gajim/data}/moods/default/ashamed.png (100%) rename {data => gajim/data}/moods/default/bored.png (100%) rename {data => gajim/data}/moods/default/brave.png (100%) rename {data => gajim/data}/moods/default/calm.png (100%) rename {data => gajim/data}/moods/default/cautious.png (100%) rename {data => gajim/data}/moods/default/cold.png (100%) rename {data => gajim/data}/moods/default/confident.png (100%) rename {data => gajim/data}/moods/default/confused.png (100%) rename {data => gajim/data}/moods/default/contemplative.png (100%) rename {data => gajim/data}/moods/default/contented.png (100%) rename {data => gajim/data}/moods/default/cranky.png (100%) rename {data => gajim/data}/moods/default/crazy.png (100%) rename {data => gajim/data}/moods/default/creative.png (100%) rename {data => gajim/data}/moods/default/curious.png (100%) rename {data => gajim/data}/moods/default/dejected.png (100%) rename {data => gajim/data}/moods/default/depressed.png (100%) rename {data => gajim/data}/moods/default/disappointed.png (100%) rename {data => gajim/data}/moods/default/disgusted.png (100%) rename {data => gajim/data}/moods/default/dismayed.png (100%) rename {data => gajim/data}/moods/default/distracted.png (100%) rename {data => gajim/data}/moods/default/embarrassed.png (100%) rename {data => gajim/data}/moods/default/envious.png (100%) rename {data => gajim/data}/moods/default/excited.png (100%) rename {data => gajim/data}/moods/default/flirtatious.png (100%) rename {data => gajim/data}/moods/default/frustrated.png (100%) rename {data => gajim/data}/moods/default/grateful.png (100%) rename {data => gajim/data}/moods/default/grieving.png (100%) rename {data => gajim/data}/moods/default/grumpy.png (100%) rename {data => gajim/data}/moods/default/guilty.png (100%) rename {data => gajim/data}/moods/default/happy.png (100%) rename {data => gajim/data}/moods/default/hopeful.png (100%) rename {data => gajim/data}/moods/default/hot.png (100%) rename {data => gajim/data}/moods/default/humbled.png (100%) rename {data => gajim/data}/moods/default/humiliated.png (100%) rename {data => gajim/data}/moods/default/hungry.png (100%) rename {data => gajim/data}/moods/default/hurt.png (100%) rename {data => gajim/data}/moods/default/impressed.png (100%) rename {data => gajim/data}/moods/default/in_awe.png (100%) rename {data => gajim/data}/moods/default/in_love.png (100%) rename {data => gajim/data}/moods/default/indignant.png (100%) rename {data => gajim/data}/moods/default/interested.png (100%) rename {data => gajim/data}/moods/default/intoxicated.png (100%) rename {data => gajim/data}/moods/default/invincible.png (100%) rename {data => gajim/data}/moods/default/jealous.png (100%) rename {data => gajim/data}/moods/default/lonely.png (100%) rename {data => gajim/data}/moods/default/lost.png (100%) rename {data => gajim/data}/moods/default/lucky.png (100%) rename {data => gajim/data}/moods/default/mean.png (100%) rename {data => gajim/data}/moods/default/moody.png (100%) rename {data => gajim/data}/moods/default/nervous.png (100%) rename {data => gajim/data}/moods/default/neutral.png (100%) rename {data => gajim/data}/moods/default/offended.png (100%) rename {data => gajim/data}/moods/default/outraged.png (100%) rename {data => gajim/data}/moods/default/playful.png (100%) rename {data => gajim/data}/moods/default/proud.png (100%) rename {data => gajim/data}/moods/default/relaxed.png (100%) rename {data => gajim/data}/moods/default/relieved.png (100%) rename {data => gajim/data}/moods/default/remorseful.png (100%) rename {data => gajim/data}/moods/default/restless.png (100%) rename {data => gajim/data}/moods/default/sad.png (100%) rename {data => gajim/data}/moods/default/sarcastic.png (100%) rename {data => gajim/data}/moods/default/satisfied.png (100%) rename {data => gajim/data}/moods/default/serious.png (100%) rename {data => gajim/data}/moods/default/shocked.png (100%) rename {data => gajim/data}/moods/default/shy.png (100%) rename {data => gajim/data}/moods/default/sick.png (100%) rename {data => gajim/data}/moods/default/sleepy.png (100%) rename {data => gajim/data}/moods/default/spontaneous.png (100%) rename {data => gajim/data}/moods/default/stressed.png (100%) rename {data => gajim/data}/moods/default/strong.png (100%) rename {data => gajim/data}/moods/default/surprised.png (100%) rename {data => gajim/data}/moods/default/thankful.png (100%) rename {data => gajim/data}/moods/default/thirsty.png (100%) rename {data => gajim/data}/moods/default/tired.png (100%) rename {data => gajim/data}/moods/default/undefined.png (100%) rename {data => gajim/data}/moods/default/unknown.png (100%) rename {data => gajim/data}/moods/default/weak.png (100%) rename {data => gajim/data}/moods/default/worried.png (100%) rename {data => gajim/data}/other/cacerts.pem (100%) rename {data => gajim/data}/other/dh4096.pem (100%) rename {data => gajim/data}/other/servers.xml (100%) rename {data => gajim/data}/sounds/attention.wav (100%) rename {data => gajim/data}/sounds/bounce.wav (100%) rename {data => gajim/data}/sounds/connected.wav (100%) rename {data => gajim/data}/sounds/disconnected.wav (100%) rename {data => gajim/data}/sounds/gc_message1.wav (100%) rename {data => gajim/data}/sounds/gc_message2.wav (100%) rename {data => gajim/data}/sounds/message1.wav (100%) rename {data => gajim/data}/sounds/message2.wav (100%) rename {data => gajim/data}/sounds/sent.wav (100%) rename {data => gajim/data}/style/gajim.css (100%) diff --git a/data/activities/Makefile.am b/gajim/data/activities/Makefile.am similarity index 100% rename from data/activities/Makefile.am rename to gajim/data/activities/Makefile.am diff --git a/data/activities/default/doing_chores/buying_groceries.png b/gajim/data/activities/default/doing_chores/buying_groceries.png similarity index 100% rename from data/activities/default/doing_chores/buying_groceries.png rename to gajim/data/activities/default/doing_chores/buying_groceries.png diff --git a/data/activities/default/doing_chores/category.png b/gajim/data/activities/default/doing_chores/category.png similarity index 100% rename from data/activities/default/doing_chores/category.png rename to gajim/data/activities/default/doing_chores/category.png diff --git a/data/activities/default/doing_chores/cleaning.png b/gajim/data/activities/default/doing_chores/cleaning.png similarity index 100% rename from data/activities/default/doing_chores/cleaning.png rename to gajim/data/activities/default/doing_chores/cleaning.png diff --git a/data/activities/default/doing_chores/cooking.png b/gajim/data/activities/default/doing_chores/cooking.png similarity index 100% rename from data/activities/default/doing_chores/cooking.png rename to gajim/data/activities/default/doing_chores/cooking.png diff --git a/data/activities/default/doing_chores/doing_maintenance.png b/gajim/data/activities/default/doing_chores/doing_maintenance.png similarity index 100% rename from data/activities/default/doing_chores/doing_maintenance.png rename to gajim/data/activities/default/doing_chores/doing_maintenance.png diff --git a/data/activities/default/doing_chores/doing_the_dishes.png b/gajim/data/activities/default/doing_chores/doing_the_dishes.png similarity index 100% rename from data/activities/default/doing_chores/doing_the_dishes.png rename to gajim/data/activities/default/doing_chores/doing_the_dishes.png diff --git a/data/activities/default/doing_chores/doing_the_laundry.png b/gajim/data/activities/default/doing_chores/doing_the_laundry.png similarity index 100% rename from data/activities/default/doing_chores/doing_the_laundry.png rename to gajim/data/activities/default/doing_chores/doing_the_laundry.png diff --git a/data/activities/default/doing_chores/gardening.png b/gajim/data/activities/default/doing_chores/gardening.png similarity index 100% rename from data/activities/default/doing_chores/gardening.png rename to gajim/data/activities/default/doing_chores/gardening.png diff --git a/data/activities/default/doing_chores/running_an_errand.png b/gajim/data/activities/default/doing_chores/running_an_errand.png similarity index 100% rename from data/activities/default/doing_chores/running_an_errand.png rename to gajim/data/activities/default/doing_chores/running_an_errand.png diff --git a/data/activities/default/doing_chores/walking_the_dog.png b/gajim/data/activities/default/doing_chores/walking_the_dog.png similarity index 100% rename from data/activities/default/doing_chores/walking_the_dog.png rename to gajim/data/activities/default/doing_chores/walking_the_dog.png diff --git a/data/activities/default/drinking/category.png b/gajim/data/activities/default/drinking/category.png similarity index 100% rename from data/activities/default/drinking/category.png rename to gajim/data/activities/default/drinking/category.png diff --git a/data/activities/default/drinking/having_a_beer.png b/gajim/data/activities/default/drinking/having_a_beer.png similarity index 100% rename from data/activities/default/drinking/having_a_beer.png rename to gajim/data/activities/default/drinking/having_a_beer.png diff --git a/data/activities/default/drinking/having_coffee.png b/gajim/data/activities/default/drinking/having_coffee.png similarity index 100% rename from data/activities/default/drinking/having_coffee.png rename to gajim/data/activities/default/drinking/having_coffee.png diff --git a/data/activities/default/drinking/having_tea.png b/gajim/data/activities/default/drinking/having_tea.png similarity index 100% rename from data/activities/default/drinking/having_tea.png rename to gajim/data/activities/default/drinking/having_tea.png diff --git a/data/activities/default/eating/category.png b/gajim/data/activities/default/eating/category.png similarity index 100% rename from data/activities/default/eating/category.png rename to gajim/data/activities/default/eating/category.png diff --git a/data/activities/default/eating/having_a_snack.png b/gajim/data/activities/default/eating/having_a_snack.png similarity index 100% rename from data/activities/default/eating/having_a_snack.png rename to gajim/data/activities/default/eating/having_a_snack.png diff --git a/data/activities/default/eating/having_breakfast.png b/gajim/data/activities/default/eating/having_breakfast.png similarity index 100% rename from data/activities/default/eating/having_breakfast.png rename to gajim/data/activities/default/eating/having_breakfast.png diff --git a/data/activities/default/eating/having_dinner.png b/gajim/data/activities/default/eating/having_dinner.png similarity index 100% rename from data/activities/default/eating/having_dinner.png rename to gajim/data/activities/default/eating/having_dinner.png diff --git a/data/activities/default/eating/having_lunch.png b/gajim/data/activities/default/eating/having_lunch.png similarity index 100% rename from data/activities/default/eating/having_lunch.png rename to gajim/data/activities/default/eating/having_lunch.png diff --git a/data/activities/default/exercising/category.png b/gajim/data/activities/default/exercising/category.png similarity index 100% rename from data/activities/default/exercising/category.png rename to gajim/data/activities/default/exercising/category.png diff --git a/data/activities/default/exercising/cycling.png b/gajim/data/activities/default/exercising/cycling.png similarity index 100% rename from data/activities/default/exercising/cycling.png rename to gajim/data/activities/default/exercising/cycling.png diff --git a/data/activities/default/exercising/dancing.png b/gajim/data/activities/default/exercising/dancing.png similarity index 100% rename from data/activities/default/exercising/dancing.png rename to gajim/data/activities/default/exercising/dancing.png diff --git a/data/activities/default/exercising/hiking.png b/gajim/data/activities/default/exercising/hiking.png similarity index 100% rename from data/activities/default/exercising/hiking.png rename to gajim/data/activities/default/exercising/hiking.png diff --git a/data/activities/default/exercising/jogging.png b/gajim/data/activities/default/exercising/jogging.png similarity index 100% rename from data/activities/default/exercising/jogging.png rename to gajim/data/activities/default/exercising/jogging.png diff --git a/data/activities/default/exercising/playing_sports.png b/gajim/data/activities/default/exercising/playing_sports.png similarity index 100% rename from data/activities/default/exercising/playing_sports.png rename to gajim/data/activities/default/exercising/playing_sports.png diff --git a/data/activities/default/exercising/running.png b/gajim/data/activities/default/exercising/running.png similarity index 100% rename from data/activities/default/exercising/running.png rename to gajim/data/activities/default/exercising/running.png diff --git a/data/activities/default/exercising/skiing.png b/gajim/data/activities/default/exercising/skiing.png similarity index 100% rename from data/activities/default/exercising/skiing.png rename to gajim/data/activities/default/exercising/skiing.png diff --git a/data/activities/default/exercising/swimming.png b/gajim/data/activities/default/exercising/swimming.png similarity index 100% rename from data/activities/default/exercising/swimming.png rename to gajim/data/activities/default/exercising/swimming.png diff --git a/data/activities/default/exercising/working_out.png b/gajim/data/activities/default/exercising/working_out.png similarity index 100% rename from data/activities/default/exercising/working_out.png rename to gajim/data/activities/default/exercising/working_out.png diff --git a/data/activities/default/grooming/at_the_spa.png b/gajim/data/activities/default/grooming/at_the_spa.png similarity index 100% rename from data/activities/default/grooming/at_the_spa.png rename to gajim/data/activities/default/grooming/at_the_spa.png diff --git a/data/activities/default/grooming/brushing_teeth.png b/gajim/data/activities/default/grooming/brushing_teeth.png similarity index 100% rename from data/activities/default/grooming/brushing_teeth.png rename to gajim/data/activities/default/grooming/brushing_teeth.png diff --git a/data/activities/default/grooming/category.png b/gajim/data/activities/default/grooming/category.png similarity index 100% rename from data/activities/default/grooming/category.png rename to gajim/data/activities/default/grooming/category.png diff --git a/data/activities/default/grooming/getting_a_haircut.png b/gajim/data/activities/default/grooming/getting_a_haircut.png similarity index 100% rename from data/activities/default/grooming/getting_a_haircut.png rename to gajim/data/activities/default/grooming/getting_a_haircut.png diff --git a/data/activities/default/grooming/shaving.png b/gajim/data/activities/default/grooming/shaving.png similarity index 100% rename from data/activities/default/grooming/shaving.png rename to gajim/data/activities/default/grooming/shaving.png diff --git a/data/activities/default/grooming/taking_a_bath.png b/gajim/data/activities/default/grooming/taking_a_bath.png similarity index 100% rename from data/activities/default/grooming/taking_a_bath.png rename to gajim/data/activities/default/grooming/taking_a_bath.png diff --git a/data/activities/default/grooming/taking_a_shower.png b/gajim/data/activities/default/grooming/taking_a_shower.png similarity index 100% rename from data/activities/default/grooming/taking_a_shower.png rename to gajim/data/activities/default/grooming/taking_a_shower.png diff --git a/data/activities/default/having_appointment/category.png b/gajim/data/activities/default/having_appointment/category.png similarity index 100% rename from data/activities/default/having_appointment/category.png rename to gajim/data/activities/default/having_appointment/category.png diff --git a/data/activities/default/inactive/category.png b/gajim/data/activities/default/inactive/category.png similarity index 100% rename from data/activities/default/inactive/category.png rename to gajim/data/activities/default/inactive/category.png diff --git a/data/activities/default/inactive/day_off.png b/gajim/data/activities/default/inactive/day_off.png similarity index 100% rename from data/activities/default/inactive/day_off.png rename to gajim/data/activities/default/inactive/day_off.png diff --git a/data/activities/default/inactive/hanging_out.png b/gajim/data/activities/default/inactive/hanging_out.png similarity index 100% rename from data/activities/default/inactive/hanging_out.png rename to gajim/data/activities/default/inactive/hanging_out.png diff --git a/data/activities/default/inactive/hiding.png b/gajim/data/activities/default/inactive/hiding.png similarity index 100% rename from data/activities/default/inactive/hiding.png rename to gajim/data/activities/default/inactive/hiding.png diff --git a/data/activities/default/inactive/on_vacation.png b/gajim/data/activities/default/inactive/on_vacation.png similarity index 100% rename from data/activities/default/inactive/on_vacation.png rename to gajim/data/activities/default/inactive/on_vacation.png diff --git a/data/activities/default/inactive/praying.png b/gajim/data/activities/default/inactive/praying.png similarity index 100% rename from data/activities/default/inactive/praying.png rename to gajim/data/activities/default/inactive/praying.png diff --git a/data/activities/default/inactive/scheduled_holiday.png b/gajim/data/activities/default/inactive/scheduled_holiday.png similarity index 100% rename from data/activities/default/inactive/scheduled_holiday.png rename to gajim/data/activities/default/inactive/scheduled_holiday.png diff --git a/data/activities/default/inactive/sleeping.png b/gajim/data/activities/default/inactive/sleeping.png similarity index 100% rename from data/activities/default/inactive/sleeping.png rename to gajim/data/activities/default/inactive/sleeping.png diff --git a/data/activities/default/inactive/thinking.png b/gajim/data/activities/default/inactive/thinking.png similarity index 100% rename from data/activities/default/inactive/thinking.png rename to gajim/data/activities/default/inactive/thinking.png diff --git a/data/activities/default/relaxing/category.png b/gajim/data/activities/default/relaxing/category.png similarity index 100% rename from data/activities/default/relaxing/category.png rename to gajim/data/activities/default/relaxing/category.png diff --git a/data/activities/default/relaxing/fishing.png b/gajim/data/activities/default/relaxing/fishing.png similarity index 100% rename from data/activities/default/relaxing/fishing.png rename to gajim/data/activities/default/relaxing/fishing.png diff --git a/data/activities/default/relaxing/gaming.png b/gajim/data/activities/default/relaxing/gaming.png similarity index 100% rename from data/activities/default/relaxing/gaming.png rename to gajim/data/activities/default/relaxing/gaming.png diff --git a/data/activities/default/relaxing/going_out.png b/gajim/data/activities/default/relaxing/going_out.png similarity index 100% rename from data/activities/default/relaxing/going_out.png rename to gajim/data/activities/default/relaxing/going_out.png diff --git a/data/activities/default/relaxing/partying.png b/gajim/data/activities/default/relaxing/partying.png similarity index 100% rename from data/activities/default/relaxing/partying.png rename to gajim/data/activities/default/relaxing/partying.png diff --git a/data/activities/default/relaxing/reading.png b/gajim/data/activities/default/relaxing/reading.png similarity index 100% rename from data/activities/default/relaxing/reading.png rename to gajim/data/activities/default/relaxing/reading.png diff --git a/data/activities/default/relaxing/rehearsing.png b/gajim/data/activities/default/relaxing/rehearsing.png similarity index 100% rename from data/activities/default/relaxing/rehearsing.png rename to gajim/data/activities/default/relaxing/rehearsing.png diff --git a/data/activities/default/relaxing/shopping.png b/gajim/data/activities/default/relaxing/shopping.png similarity index 100% rename from data/activities/default/relaxing/shopping.png rename to gajim/data/activities/default/relaxing/shopping.png diff --git a/data/activities/default/relaxing/smoking.png b/gajim/data/activities/default/relaxing/smoking.png similarity index 100% rename from data/activities/default/relaxing/smoking.png rename to gajim/data/activities/default/relaxing/smoking.png diff --git a/data/activities/default/relaxing/socializing.png b/gajim/data/activities/default/relaxing/socializing.png similarity index 100% rename from data/activities/default/relaxing/socializing.png rename to gajim/data/activities/default/relaxing/socializing.png diff --git a/data/activities/default/relaxing/sunbathing.png b/gajim/data/activities/default/relaxing/sunbathing.png similarity index 100% rename from data/activities/default/relaxing/sunbathing.png rename to gajim/data/activities/default/relaxing/sunbathing.png diff --git a/data/activities/default/relaxing/watching_a_movie.png b/gajim/data/activities/default/relaxing/watching_a_movie.png similarity index 100% rename from data/activities/default/relaxing/watching_a_movie.png rename to gajim/data/activities/default/relaxing/watching_a_movie.png diff --git a/data/activities/default/relaxing/watching_tv.png b/gajim/data/activities/default/relaxing/watching_tv.png similarity index 100% rename from data/activities/default/relaxing/watching_tv.png rename to gajim/data/activities/default/relaxing/watching_tv.png diff --git a/data/activities/default/talking/category.png b/gajim/data/activities/default/talking/category.png similarity index 100% rename from data/activities/default/talking/category.png rename to gajim/data/activities/default/talking/category.png diff --git a/data/activities/default/talking/in_real_life.png b/gajim/data/activities/default/talking/in_real_life.png similarity index 100% rename from data/activities/default/talking/in_real_life.png rename to gajim/data/activities/default/talking/in_real_life.png diff --git a/data/activities/default/talking/on_the_phone.png b/gajim/data/activities/default/talking/on_the_phone.png similarity index 100% rename from data/activities/default/talking/on_the_phone.png rename to gajim/data/activities/default/talking/on_the_phone.png diff --git a/data/activities/default/talking/on_video_phone.png b/gajim/data/activities/default/talking/on_video_phone.png similarity index 100% rename from data/activities/default/talking/on_video_phone.png rename to gajim/data/activities/default/talking/on_video_phone.png diff --git a/data/activities/default/traveling/category.png b/gajim/data/activities/default/traveling/category.png similarity index 100% rename from data/activities/default/traveling/category.png rename to gajim/data/activities/default/traveling/category.png diff --git a/data/activities/default/traveling/commuting.png b/gajim/data/activities/default/traveling/commuting.png similarity index 100% rename from data/activities/default/traveling/commuting.png rename to gajim/data/activities/default/traveling/commuting.png diff --git a/data/activities/default/traveling/cycling.png b/gajim/data/activities/default/traveling/cycling.png similarity index 100% rename from data/activities/default/traveling/cycling.png rename to gajim/data/activities/default/traveling/cycling.png diff --git a/data/activities/default/traveling/driving.png b/gajim/data/activities/default/traveling/driving.png similarity index 100% rename from data/activities/default/traveling/driving.png rename to gajim/data/activities/default/traveling/driving.png diff --git a/data/activities/default/traveling/in_a_car.png b/gajim/data/activities/default/traveling/in_a_car.png similarity index 100% rename from data/activities/default/traveling/in_a_car.png rename to gajim/data/activities/default/traveling/in_a_car.png diff --git a/data/activities/default/traveling/on_a_bus.png b/gajim/data/activities/default/traveling/on_a_bus.png similarity index 100% rename from data/activities/default/traveling/on_a_bus.png rename to gajim/data/activities/default/traveling/on_a_bus.png diff --git a/data/activities/default/traveling/on_a_plane.png b/gajim/data/activities/default/traveling/on_a_plane.png similarity index 100% rename from data/activities/default/traveling/on_a_plane.png rename to gajim/data/activities/default/traveling/on_a_plane.png diff --git a/data/activities/default/traveling/on_a_train.png b/gajim/data/activities/default/traveling/on_a_train.png similarity index 100% rename from data/activities/default/traveling/on_a_train.png rename to gajim/data/activities/default/traveling/on_a_train.png diff --git a/data/activities/default/traveling/on_a_trip.png b/gajim/data/activities/default/traveling/on_a_trip.png similarity index 100% rename from data/activities/default/traveling/on_a_trip.png rename to gajim/data/activities/default/traveling/on_a_trip.png diff --git a/data/activities/default/traveling/walking.png b/gajim/data/activities/default/traveling/walking.png similarity index 100% rename from data/activities/default/traveling/walking.png rename to gajim/data/activities/default/traveling/walking.png diff --git a/data/activities/default/unknown/category.png b/gajim/data/activities/default/unknown/category.png similarity index 100% rename from data/activities/default/unknown/category.png rename to gajim/data/activities/default/unknown/category.png diff --git a/data/activities/default/working/category.png b/gajim/data/activities/default/working/category.png similarity index 100% rename from data/activities/default/working/category.png rename to gajim/data/activities/default/working/category.png diff --git a/data/activities/default/working/coding.png b/gajim/data/activities/default/working/coding.png similarity index 100% rename from data/activities/default/working/coding.png rename to gajim/data/activities/default/working/coding.png diff --git a/data/activities/default/working/in_a_meeting.png b/gajim/data/activities/default/working/in_a_meeting.png similarity index 100% rename from data/activities/default/working/in_a_meeting.png rename to gajim/data/activities/default/working/in_a_meeting.png diff --git a/data/activities/default/working/studying.png b/gajim/data/activities/default/working/studying.png similarity index 100% rename from data/activities/default/working/studying.png rename to gajim/data/activities/default/working/studying.png diff --git a/data/activities/default/working/writing.png b/gajim/data/activities/default/working/writing.png similarity index 100% rename from data/activities/default/working/writing.png rename to gajim/data/activities/default/working/writing.png diff --git a/data/emoticons/Makefile.am b/gajim/data/emoticons/Makefile.am similarity index 100% rename from data/emoticons/Makefile.am rename to gajim/data/emoticons/Makefile.am diff --git a/data/emoticons/font-emoticons/emoticons_theme.py b/gajim/data/emoticons/font-emoticons/emoticons_theme.py similarity index 100% rename from data/emoticons/font-emoticons/emoticons_theme.py rename to gajim/data/emoticons/font-emoticons/emoticons_theme.py diff --git a/data/emoticons/noto-emoticons/LICENSE b/gajim/data/emoticons/noto-emoticons/LICENSE similarity index 100% rename from data/emoticons/noto-emoticons/LICENSE rename to gajim/data/emoticons/noto-emoticons/LICENSE diff --git a/data/emoticons/noto-emoticons/README.md b/gajim/data/emoticons/noto-emoticons/README.md similarity index 100% rename from data/emoticons/noto-emoticons/README.md rename to gajim/data/emoticons/noto-emoticons/README.md diff --git a/data/emoticons/noto-emoticons/emoticons.png b/gajim/data/emoticons/noto-emoticons/emoticons.png similarity index 100% rename from data/emoticons/noto-emoticons/emoticons.png rename to gajim/data/emoticons/noto-emoticons/emoticons.png diff --git a/data/emoticons/noto-emoticons/emoticons_theme.py b/gajim/data/emoticons/noto-emoticons/emoticons_theme.py similarity index 100% rename from data/emoticons/noto-emoticons/emoticons_theme.py rename to gajim/data/emoticons/noto-emoticons/emoticons_theme.py diff --git a/data/emoticons/noto-emoticons/png/u0023.png b/gajim/data/emoticons/noto-emoticons/png/u0023.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0023.png rename to gajim/data/emoticons/noto-emoticons/png/u0023.png diff --git a/data/emoticons/noto-emoticons/png/u0023_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0023_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0023_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0023_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u002a.png b/gajim/data/emoticons/noto-emoticons/png/u002a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u002a.png rename to gajim/data/emoticons/noto-emoticons/png/u002a.png diff --git a/data/emoticons/noto-emoticons/png/u002a_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u002a_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u002a_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u002a_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0030.png b/gajim/data/emoticons/noto-emoticons/png/u0030.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0030.png rename to gajim/data/emoticons/noto-emoticons/png/u0030.png diff --git a/data/emoticons/noto-emoticons/png/u0030_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0030_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0030_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0030_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0031.png b/gajim/data/emoticons/noto-emoticons/png/u0031.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0031.png rename to gajim/data/emoticons/noto-emoticons/png/u0031.png diff --git a/data/emoticons/noto-emoticons/png/u0031_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0031_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0031_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0031_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0032.png b/gajim/data/emoticons/noto-emoticons/png/u0032.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0032.png rename to gajim/data/emoticons/noto-emoticons/png/u0032.png diff --git a/data/emoticons/noto-emoticons/png/u0032_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0032_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0032_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0032_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0033.png b/gajim/data/emoticons/noto-emoticons/png/u0033.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0033.png rename to gajim/data/emoticons/noto-emoticons/png/u0033.png diff --git a/data/emoticons/noto-emoticons/png/u0033_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0033_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0033_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0033_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0034.png b/gajim/data/emoticons/noto-emoticons/png/u0034.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0034.png rename to gajim/data/emoticons/noto-emoticons/png/u0034.png diff --git a/data/emoticons/noto-emoticons/png/u0034_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0034_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0034_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0034_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0035.png b/gajim/data/emoticons/noto-emoticons/png/u0035.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0035.png rename to gajim/data/emoticons/noto-emoticons/png/u0035.png diff --git a/data/emoticons/noto-emoticons/png/u0035_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0035_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0035_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0035_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0036.png b/gajim/data/emoticons/noto-emoticons/png/u0036.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0036.png rename to gajim/data/emoticons/noto-emoticons/png/u0036.png diff --git a/data/emoticons/noto-emoticons/png/u0036_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0036_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0036_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0036_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0037.png b/gajim/data/emoticons/noto-emoticons/png/u0037.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0037.png rename to gajim/data/emoticons/noto-emoticons/png/u0037.png diff --git a/data/emoticons/noto-emoticons/png/u0037_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0037_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0037_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0037_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0038.png b/gajim/data/emoticons/noto-emoticons/png/u0038.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0038.png rename to gajim/data/emoticons/noto-emoticons/png/u0038.png diff --git a/data/emoticons/noto-emoticons/png/u0038_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0038_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0038_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0038_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u0039.png b/gajim/data/emoticons/noto-emoticons/png/u0039.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0039.png rename to gajim/data/emoticons/noto-emoticons/png/u0039.png diff --git a/data/emoticons/noto-emoticons/png/u0039_20e3.png b/gajim/data/emoticons/noto-emoticons/png/u0039_20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u0039_20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u0039_20e3.png diff --git a/data/emoticons/noto-emoticons/png/u00a9.png b/gajim/data/emoticons/noto-emoticons/png/u00a9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u00a9.png rename to gajim/data/emoticons/noto-emoticons/png/u00a9.png diff --git a/data/emoticons/noto-emoticons/png/u00ae.png b/gajim/data/emoticons/noto-emoticons/png/u00ae.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u00ae.png rename to gajim/data/emoticons/noto-emoticons/png/u00ae.png diff --git a/data/emoticons/noto-emoticons/png/u1f004.png b/gajim/data/emoticons/noto-emoticons/png/u1f004.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f004.png rename to gajim/data/emoticons/noto-emoticons/png/u1f004.png diff --git a/data/emoticons/noto-emoticons/png/u1f0cf.png b/gajim/data/emoticons/noto-emoticons/png/u1f0cf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f0cf.png rename to gajim/data/emoticons/noto-emoticons/png/u1f0cf.png diff --git a/data/emoticons/noto-emoticons/png/u1f170.png b/gajim/data/emoticons/noto-emoticons/png/u1f170.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f170.png rename to gajim/data/emoticons/noto-emoticons/png/u1f170.png diff --git a/data/emoticons/noto-emoticons/png/u1f171.png b/gajim/data/emoticons/noto-emoticons/png/u1f171.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f171.png rename to gajim/data/emoticons/noto-emoticons/png/u1f171.png diff --git a/data/emoticons/noto-emoticons/png/u1f17e.png b/gajim/data/emoticons/noto-emoticons/png/u1f17e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f17e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f17e.png diff --git a/data/emoticons/noto-emoticons/png/u1f17f.png b/gajim/data/emoticons/noto-emoticons/png/u1f17f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f17f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f17f.png diff --git a/data/emoticons/noto-emoticons/png/u1f18e.png b/gajim/data/emoticons/noto-emoticons/png/u1f18e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f18e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f18e.png diff --git a/data/emoticons/noto-emoticons/png/u1f191.png b/gajim/data/emoticons/noto-emoticons/png/u1f191.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f191.png rename to gajim/data/emoticons/noto-emoticons/png/u1f191.png diff --git a/data/emoticons/noto-emoticons/png/u1f192.png b/gajim/data/emoticons/noto-emoticons/png/u1f192.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f192.png rename to gajim/data/emoticons/noto-emoticons/png/u1f192.png diff --git a/data/emoticons/noto-emoticons/png/u1f193.png b/gajim/data/emoticons/noto-emoticons/png/u1f193.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f193.png rename to gajim/data/emoticons/noto-emoticons/png/u1f193.png diff --git a/data/emoticons/noto-emoticons/png/u1f194.png b/gajim/data/emoticons/noto-emoticons/png/u1f194.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f194.png rename to gajim/data/emoticons/noto-emoticons/png/u1f194.png diff --git a/data/emoticons/noto-emoticons/png/u1f195.png b/gajim/data/emoticons/noto-emoticons/png/u1f195.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f195.png rename to gajim/data/emoticons/noto-emoticons/png/u1f195.png diff --git a/data/emoticons/noto-emoticons/png/u1f196.png b/gajim/data/emoticons/noto-emoticons/png/u1f196.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f196.png rename to gajim/data/emoticons/noto-emoticons/png/u1f196.png diff --git a/data/emoticons/noto-emoticons/png/u1f197.png b/gajim/data/emoticons/noto-emoticons/png/u1f197.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f197.png rename to gajim/data/emoticons/noto-emoticons/png/u1f197.png diff --git a/data/emoticons/noto-emoticons/png/u1f198.png b/gajim/data/emoticons/noto-emoticons/png/u1f198.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f198.png rename to gajim/data/emoticons/noto-emoticons/png/u1f198.png diff --git a/data/emoticons/noto-emoticons/png/u1f199.png b/gajim/data/emoticons/noto-emoticons/png/u1f199.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f199.png rename to gajim/data/emoticons/noto-emoticons/png/u1f199.png diff --git a/data/emoticons/noto-emoticons/png/u1f19a.png b/gajim/data/emoticons/noto-emoticons/png/u1f19a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f19a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f19a.png diff --git a/data/emoticons/noto-emoticons/png/u1f1e6.png b/gajim/data/emoticons/noto-emoticons/png/u1f1e6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1e6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1e6.png diff --git a/data/emoticons/noto-emoticons/png/u1f1e7.png b/gajim/data/emoticons/noto-emoticons/png/u1f1e7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1e7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1e7.png diff --git a/data/emoticons/noto-emoticons/png/u1f1e8.png b/gajim/data/emoticons/noto-emoticons/png/u1f1e8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1e8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1e8.png diff --git a/data/emoticons/noto-emoticons/png/u1f1e8_1f1f3.png b/gajim/data/emoticons/noto-emoticons/png/u1f1e8_1f1f3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1e8_1f1f3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1e8_1f1f3.png diff --git a/data/emoticons/noto-emoticons/png/u1f1e9.png b/gajim/data/emoticons/noto-emoticons/png/u1f1e9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1e9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1e9.png diff --git a/data/emoticons/noto-emoticons/png/u1f1e9_1f1ea.png b/gajim/data/emoticons/noto-emoticons/png/u1f1e9_1f1ea.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1e9_1f1ea.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1e9_1f1ea.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ea.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ea.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ea.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ea.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ea_1f1f8.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ea_1f1f8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ea_1f1f8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ea_1f1f8.png diff --git a/data/emoticons/noto-emoticons/png/u1f1eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f1eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f1eb_1f1f7.png b/gajim/data/emoticons/noto-emoticons/png/u1f1eb_1f1f7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1eb_1f1f7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1eb_1f1f7.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ec.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ec.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ec.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ec.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ec_1f1e7.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ec_1f1e7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ec_1f1e7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ec_1f1e7.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ee.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ee.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ee.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ee.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ee_1f1f9.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ee_1f1f9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ee_1f1f9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ee_1f1f9.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ef.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ef.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ef.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ef.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ef_1f1f5.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ef_1f1f5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ef_1f1f5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ef_1f1f5.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f0.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f0.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f0_1f1f7.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f0_1f1f7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f0_1f1f7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f0_1f1f7.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f1.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f1.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f2.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f2.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f3.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f3.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f4.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f4.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f5.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f5.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f6.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f6.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f7.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f7.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f7_1f1fa.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f7_1f1fa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f7_1f1fa.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f7_1f1fa.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f8.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f8.png diff --git a/data/emoticons/noto-emoticons/png/u1f1f9.png b/gajim/data/emoticons/noto-emoticons/png/u1f1f9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1f9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1f9.png diff --git a/data/emoticons/noto-emoticons/png/u1f1fa.png b/gajim/data/emoticons/noto-emoticons/png/u1f1fa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1fa.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1fa.png diff --git a/data/emoticons/noto-emoticons/png/u1f1fa_1f1f8.png b/gajim/data/emoticons/noto-emoticons/png/u1f1fa_1f1f8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1fa_1f1f8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1fa_1f1f8.png diff --git a/data/emoticons/noto-emoticons/png/u1f1fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f1fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f1fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f1fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f1fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f1fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f1fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f1fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f1ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f1ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f1ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f1ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f201.png b/gajim/data/emoticons/noto-emoticons/png/u1f201.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f201.png rename to gajim/data/emoticons/noto-emoticons/png/u1f201.png diff --git a/data/emoticons/noto-emoticons/png/u1f202.png b/gajim/data/emoticons/noto-emoticons/png/u1f202.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f202.png rename to gajim/data/emoticons/noto-emoticons/png/u1f202.png diff --git a/data/emoticons/noto-emoticons/png/u1f21a.png b/gajim/data/emoticons/noto-emoticons/png/u1f21a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f21a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f21a.png diff --git a/data/emoticons/noto-emoticons/png/u1f22f.png b/gajim/data/emoticons/noto-emoticons/png/u1f22f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f22f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f22f.png diff --git a/data/emoticons/noto-emoticons/png/u1f232.png b/gajim/data/emoticons/noto-emoticons/png/u1f232.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f232.png rename to gajim/data/emoticons/noto-emoticons/png/u1f232.png diff --git a/data/emoticons/noto-emoticons/png/u1f233.png b/gajim/data/emoticons/noto-emoticons/png/u1f233.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f233.png rename to gajim/data/emoticons/noto-emoticons/png/u1f233.png diff --git a/data/emoticons/noto-emoticons/png/u1f234.png b/gajim/data/emoticons/noto-emoticons/png/u1f234.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f234.png rename to gajim/data/emoticons/noto-emoticons/png/u1f234.png diff --git a/data/emoticons/noto-emoticons/png/u1f235.png b/gajim/data/emoticons/noto-emoticons/png/u1f235.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f235.png rename to gajim/data/emoticons/noto-emoticons/png/u1f235.png diff --git a/data/emoticons/noto-emoticons/png/u1f236.png b/gajim/data/emoticons/noto-emoticons/png/u1f236.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f236.png rename to gajim/data/emoticons/noto-emoticons/png/u1f236.png diff --git a/data/emoticons/noto-emoticons/png/u1f237.png b/gajim/data/emoticons/noto-emoticons/png/u1f237.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f237.png rename to gajim/data/emoticons/noto-emoticons/png/u1f237.png diff --git a/data/emoticons/noto-emoticons/png/u1f238.png b/gajim/data/emoticons/noto-emoticons/png/u1f238.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f238.png rename to gajim/data/emoticons/noto-emoticons/png/u1f238.png diff --git a/data/emoticons/noto-emoticons/png/u1f239.png b/gajim/data/emoticons/noto-emoticons/png/u1f239.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f239.png rename to gajim/data/emoticons/noto-emoticons/png/u1f239.png diff --git a/data/emoticons/noto-emoticons/png/u1f23a.png b/gajim/data/emoticons/noto-emoticons/png/u1f23a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f23a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f23a.png diff --git a/data/emoticons/noto-emoticons/png/u1f250.png b/gajim/data/emoticons/noto-emoticons/png/u1f250.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f250.png rename to gajim/data/emoticons/noto-emoticons/png/u1f250.png diff --git a/data/emoticons/noto-emoticons/png/u1f251.png b/gajim/data/emoticons/noto-emoticons/png/u1f251.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f251.png rename to gajim/data/emoticons/noto-emoticons/png/u1f251.png diff --git a/data/emoticons/noto-emoticons/png/u1f300.png b/gajim/data/emoticons/noto-emoticons/png/u1f300.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f300.png rename to gajim/data/emoticons/noto-emoticons/png/u1f300.png diff --git a/data/emoticons/noto-emoticons/png/u1f301.png b/gajim/data/emoticons/noto-emoticons/png/u1f301.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f301.png rename to gajim/data/emoticons/noto-emoticons/png/u1f301.png diff --git a/data/emoticons/noto-emoticons/png/u1f302.png b/gajim/data/emoticons/noto-emoticons/png/u1f302.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f302.png rename to gajim/data/emoticons/noto-emoticons/png/u1f302.png diff --git a/data/emoticons/noto-emoticons/png/u1f303.png b/gajim/data/emoticons/noto-emoticons/png/u1f303.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f303.png rename to gajim/data/emoticons/noto-emoticons/png/u1f303.png diff --git a/data/emoticons/noto-emoticons/png/u1f304.png b/gajim/data/emoticons/noto-emoticons/png/u1f304.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f304.png rename to gajim/data/emoticons/noto-emoticons/png/u1f304.png diff --git a/data/emoticons/noto-emoticons/png/u1f305.png b/gajim/data/emoticons/noto-emoticons/png/u1f305.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f305.png rename to gajim/data/emoticons/noto-emoticons/png/u1f305.png diff --git a/data/emoticons/noto-emoticons/png/u1f306.png b/gajim/data/emoticons/noto-emoticons/png/u1f306.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f306.png rename to gajim/data/emoticons/noto-emoticons/png/u1f306.png diff --git a/data/emoticons/noto-emoticons/png/u1f307.png b/gajim/data/emoticons/noto-emoticons/png/u1f307.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f307.png rename to gajim/data/emoticons/noto-emoticons/png/u1f307.png diff --git a/data/emoticons/noto-emoticons/png/u1f308.png b/gajim/data/emoticons/noto-emoticons/png/u1f308.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f308.png rename to gajim/data/emoticons/noto-emoticons/png/u1f308.png diff --git a/data/emoticons/noto-emoticons/png/u1f309.png b/gajim/data/emoticons/noto-emoticons/png/u1f309.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f309.png rename to gajim/data/emoticons/noto-emoticons/png/u1f309.png diff --git a/data/emoticons/noto-emoticons/png/u1f30a.png b/gajim/data/emoticons/noto-emoticons/png/u1f30a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f30a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f30a.png diff --git a/data/emoticons/noto-emoticons/png/u1f30b.png b/gajim/data/emoticons/noto-emoticons/png/u1f30b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f30b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f30b.png diff --git a/data/emoticons/noto-emoticons/png/u1f30c.png b/gajim/data/emoticons/noto-emoticons/png/u1f30c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f30c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f30c.png diff --git a/data/emoticons/noto-emoticons/png/u1f30d.png b/gajim/data/emoticons/noto-emoticons/png/u1f30d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f30d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f30d.png diff --git a/data/emoticons/noto-emoticons/png/u1f30e.png b/gajim/data/emoticons/noto-emoticons/png/u1f30e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f30e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f30e.png diff --git a/data/emoticons/noto-emoticons/png/u1f30f.png b/gajim/data/emoticons/noto-emoticons/png/u1f30f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f30f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f30f.png diff --git a/data/emoticons/noto-emoticons/png/u1f310.png b/gajim/data/emoticons/noto-emoticons/png/u1f310.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f310.png rename to gajim/data/emoticons/noto-emoticons/png/u1f310.png diff --git a/data/emoticons/noto-emoticons/png/u1f311.png b/gajim/data/emoticons/noto-emoticons/png/u1f311.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f311.png rename to gajim/data/emoticons/noto-emoticons/png/u1f311.png diff --git a/data/emoticons/noto-emoticons/png/u1f312.png b/gajim/data/emoticons/noto-emoticons/png/u1f312.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f312.png rename to gajim/data/emoticons/noto-emoticons/png/u1f312.png diff --git a/data/emoticons/noto-emoticons/png/u1f313.png b/gajim/data/emoticons/noto-emoticons/png/u1f313.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f313.png rename to gajim/data/emoticons/noto-emoticons/png/u1f313.png diff --git a/data/emoticons/noto-emoticons/png/u1f314.png b/gajim/data/emoticons/noto-emoticons/png/u1f314.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f314.png rename to gajim/data/emoticons/noto-emoticons/png/u1f314.png diff --git a/data/emoticons/noto-emoticons/png/u1f315.png b/gajim/data/emoticons/noto-emoticons/png/u1f315.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f315.png rename to gajim/data/emoticons/noto-emoticons/png/u1f315.png diff --git a/data/emoticons/noto-emoticons/png/u1f316.png b/gajim/data/emoticons/noto-emoticons/png/u1f316.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f316.png rename to gajim/data/emoticons/noto-emoticons/png/u1f316.png diff --git a/data/emoticons/noto-emoticons/png/u1f317.png b/gajim/data/emoticons/noto-emoticons/png/u1f317.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f317.png rename to gajim/data/emoticons/noto-emoticons/png/u1f317.png diff --git a/data/emoticons/noto-emoticons/png/u1f318.png b/gajim/data/emoticons/noto-emoticons/png/u1f318.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f318.png rename to gajim/data/emoticons/noto-emoticons/png/u1f318.png diff --git a/data/emoticons/noto-emoticons/png/u1f319.png b/gajim/data/emoticons/noto-emoticons/png/u1f319.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f319.png rename to gajim/data/emoticons/noto-emoticons/png/u1f319.png diff --git a/data/emoticons/noto-emoticons/png/u1f31a.png b/gajim/data/emoticons/noto-emoticons/png/u1f31a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f31a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f31a.png diff --git a/data/emoticons/noto-emoticons/png/u1f31b.png b/gajim/data/emoticons/noto-emoticons/png/u1f31b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f31b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f31b.png diff --git a/data/emoticons/noto-emoticons/png/u1f31c.png b/gajim/data/emoticons/noto-emoticons/png/u1f31c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f31c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f31c.png diff --git a/data/emoticons/noto-emoticons/png/u1f31d.png b/gajim/data/emoticons/noto-emoticons/png/u1f31d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f31d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f31d.png diff --git a/data/emoticons/noto-emoticons/png/u1f31e.png b/gajim/data/emoticons/noto-emoticons/png/u1f31e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f31e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f31e.png diff --git a/data/emoticons/noto-emoticons/png/u1f31f.png b/gajim/data/emoticons/noto-emoticons/png/u1f31f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f31f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f31f.png diff --git a/data/emoticons/noto-emoticons/png/u1f320.png b/gajim/data/emoticons/noto-emoticons/png/u1f320.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f320.png rename to gajim/data/emoticons/noto-emoticons/png/u1f320.png diff --git a/data/emoticons/noto-emoticons/png/u1f321.png b/gajim/data/emoticons/noto-emoticons/png/u1f321.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f321.png rename to gajim/data/emoticons/noto-emoticons/png/u1f321.png diff --git a/data/emoticons/noto-emoticons/png/u1f324.png b/gajim/data/emoticons/noto-emoticons/png/u1f324.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f324.png rename to gajim/data/emoticons/noto-emoticons/png/u1f324.png diff --git a/data/emoticons/noto-emoticons/png/u1f325.png b/gajim/data/emoticons/noto-emoticons/png/u1f325.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f325.png rename to gajim/data/emoticons/noto-emoticons/png/u1f325.png diff --git a/data/emoticons/noto-emoticons/png/u1f326.png b/gajim/data/emoticons/noto-emoticons/png/u1f326.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f326.png rename to gajim/data/emoticons/noto-emoticons/png/u1f326.png diff --git a/data/emoticons/noto-emoticons/png/u1f327.png b/gajim/data/emoticons/noto-emoticons/png/u1f327.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f327.png rename to gajim/data/emoticons/noto-emoticons/png/u1f327.png diff --git a/data/emoticons/noto-emoticons/png/u1f328.png b/gajim/data/emoticons/noto-emoticons/png/u1f328.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f328.png rename to gajim/data/emoticons/noto-emoticons/png/u1f328.png diff --git a/data/emoticons/noto-emoticons/png/u1f329.png b/gajim/data/emoticons/noto-emoticons/png/u1f329.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f329.png rename to gajim/data/emoticons/noto-emoticons/png/u1f329.png diff --git a/data/emoticons/noto-emoticons/png/u1f32a.png b/gajim/data/emoticons/noto-emoticons/png/u1f32a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f32a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f32a.png diff --git a/data/emoticons/noto-emoticons/png/u1f32b.png b/gajim/data/emoticons/noto-emoticons/png/u1f32b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f32b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f32b.png diff --git a/data/emoticons/noto-emoticons/png/u1f32c.png b/gajim/data/emoticons/noto-emoticons/png/u1f32c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f32c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f32c.png diff --git a/data/emoticons/noto-emoticons/png/u1f32d.png b/gajim/data/emoticons/noto-emoticons/png/u1f32d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f32d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f32d.png diff --git a/data/emoticons/noto-emoticons/png/u1f32e.png b/gajim/data/emoticons/noto-emoticons/png/u1f32e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f32e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f32e.png diff --git a/data/emoticons/noto-emoticons/png/u1f32f.png b/gajim/data/emoticons/noto-emoticons/png/u1f32f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f32f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f32f.png diff --git a/data/emoticons/noto-emoticons/png/u1f330.png b/gajim/data/emoticons/noto-emoticons/png/u1f330.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f330.png rename to gajim/data/emoticons/noto-emoticons/png/u1f330.png diff --git a/data/emoticons/noto-emoticons/png/u1f331.png b/gajim/data/emoticons/noto-emoticons/png/u1f331.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f331.png rename to gajim/data/emoticons/noto-emoticons/png/u1f331.png diff --git a/data/emoticons/noto-emoticons/png/u1f332.png b/gajim/data/emoticons/noto-emoticons/png/u1f332.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f332.png rename to gajim/data/emoticons/noto-emoticons/png/u1f332.png diff --git a/data/emoticons/noto-emoticons/png/u1f333.png b/gajim/data/emoticons/noto-emoticons/png/u1f333.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f333.png rename to gajim/data/emoticons/noto-emoticons/png/u1f333.png diff --git a/data/emoticons/noto-emoticons/png/u1f334.png b/gajim/data/emoticons/noto-emoticons/png/u1f334.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f334.png rename to gajim/data/emoticons/noto-emoticons/png/u1f334.png diff --git a/data/emoticons/noto-emoticons/png/u1f335.png b/gajim/data/emoticons/noto-emoticons/png/u1f335.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f335.png rename to gajim/data/emoticons/noto-emoticons/png/u1f335.png diff --git a/data/emoticons/noto-emoticons/png/u1f336.png b/gajim/data/emoticons/noto-emoticons/png/u1f336.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f336.png rename to gajim/data/emoticons/noto-emoticons/png/u1f336.png diff --git a/data/emoticons/noto-emoticons/png/u1f337.png b/gajim/data/emoticons/noto-emoticons/png/u1f337.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f337.png rename to gajim/data/emoticons/noto-emoticons/png/u1f337.png diff --git a/data/emoticons/noto-emoticons/png/u1f338.png b/gajim/data/emoticons/noto-emoticons/png/u1f338.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f338.png rename to gajim/data/emoticons/noto-emoticons/png/u1f338.png diff --git a/data/emoticons/noto-emoticons/png/u1f339.png b/gajim/data/emoticons/noto-emoticons/png/u1f339.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f339.png rename to gajim/data/emoticons/noto-emoticons/png/u1f339.png diff --git a/data/emoticons/noto-emoticons/png/u1f33a.png b/gajim/data/emoticons/noto-emoticons/png/u1f33a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f33a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f33a.png diff --git a/data/emoticons/noto-emoticons/png/u1f33b.png b/gajim/data/emoticons/noto-emoticons/png/u1f33b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f33b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f33b.png diff --git a/data/emoticons/noto-emoticons/png/u1f33c.png b/gajim/data/emoticons/noto-emoticons/png/u1f33c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f33c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f33c.png diff --git a/data/emoticons/noto-emoticons/png/u1f33d.png b/gajim/data/emoticons/noto-emoticons/png/u1f33d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f33d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f33d.png diff --git a/data/emoticons/noto-emoticons/png/u1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f33f.png b/gajim/data/emoticons/noto-emoticons/png/u1f33f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f33f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f33f.png diff --git a/data/emoticons/noto-emoticons/png/u1f340.png b/gajim/data/emoticons/noto-emoticons/png/u1f340.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f340.png rename to gajim/data/emoticons/noto-emoticons/png/u1f340.png diff --git a/data/emoticons/noto-emoticons/png/u1f341.png b/gajim/data/emoticons/noto-emoticons/png/u1f341.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f341.png rename to gajim/data/emoticons/noto-emoticons/png/u1f341.png diff --git a/data/emoticons/noto-emoticons/png/u1f342.png b/gajim/data/emoticons/noto-emoticons/png/u1f342.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f342.png rename to gajim/data/emoticons/noto-emoticons/png/u1f342.png diff --git a/data/emoticons/noto-emoticons/png/u1f343.png b/gajim/data/emoticons/noto-emoticons/png/u1f343.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f343.png rename to gajim/data/emoticons/noto-emoticons/png/u1f343.png diff --git a/data/emoticons/noto-emoticons/png/u1f344.png b/gajim/data/emoticons/noto-emoticons/png/u1f344.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f344.png rename to gajim/data/emoticons/noto-emoticons/png/u1f344.png diff --git a/data/emoticons/noto-emoticons/png/u1f345.png b/gajim/data/emoticons/noto-emoticons/png/u1f345.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f345.png rename to gajim/data/emoticons/noto-emoticons/png/u1f345.png diff --git a/data/emoticons/noto-emoticons/png/u1f346.png b/gajim/data/emoticons/noto-emoticons/png/u1f346.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f346.png rename to gajim/data/emoticons/noto-emoticons/png/u1f346.png diff --git a/data/emoticons/noto-emoticons/png/u1f347.png b/gajim/data/emoticons/noto-emoticons/png/u1f347.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f347.png rename to gajim/data/emoticons/noto-emoticons/png/u1f347.png diff --git a/data/emoticons/noto-emoticons/png/u1f348.png b/gajim/data/emoticons/noto-emoticons/png/u1f348.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f348.png rename to gajim/data/emoticons/noto-emoticons/png/u1f348.png diff --git a/data/emoticons/noto-emoticons/png/u1f349.png b/gajim/data/emoticons/noto-emoticons/png/u1f349.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f349.png rename to gajim/data/emoticons/noto-emoticons/png/u1f349.png diff --git a/data/emoticons/noto-emoticons/png/u1f34a.png b/gajim/data/emoticons/noto-emoticons/png/u1f34a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f34a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f34a.png diff --git a/data/emoticons/noto-emoticons/png/u1f34b.png b/gajim/data/emoticons/noto-emoticons/png/u1f34b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f34b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f34b.png diff --git a/data/emoticons/noto-emoticons/png/u1f34c.png b/gajim/data/emoticons/noto-emoticons/png/u1f34c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f34c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f34c.png diff --git a/data/emoticons/noto-emoticons/png/u1f34d.png b/gajim/data/emoticons/noto-emoticons/png/u1f34d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f34d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f34d.png diff --git a/data/emoticons/noto-emoticons/png/u1f34e.png b/gajim/data/emoticons/noto-emoticons/png/u1f34e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f34e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f34e.png diff --git a/data/emoticons/noto-emoticons/png/u1f34f.png b/gajim/data/emoticons/noto-emoticons/png/u1f34f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f34f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f34f.png diff --git a/data/emoticons/noto-emoticons/png/u1f350.png b/gajim/data/emoticons/noto-emoticons/png/u1f350.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f350.png rename to gajim/data/emoticons/noto-emoticons/png/u1f350.png diff --git a/data/emoticons/noto-emoticons/png/u1f351.png b/gajim/data/emoticons/noto-emoticons/png/u1f351.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f351.png rename to gajim/data/emoticons/noto-emoticons/png/u1f351.png diff --git a/data/emoticons/noto-emoticons/png/u1f352.png b/gajim/data/emoticons/noto-emoticons/png/u1f352.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f352.png rename to gajim/data/emoticons/noto-emoticons/png/u1f352.png diff --git a/data/emoticons/noto-emoticons/png/u1f353.png b/gajim/data/emoticons/noto-emoticons/png/u1f353.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f353.png rename to gajim/data/emoticons/noto-emoticons/png/u1f353.png diff --git a/data/emoticons/noto-emoticons/png/u1f354.png b/gajim/data/emoticons/noto-emoticons/png/u1f354.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f354.png rename to gajim/data/emoticons/noto-emoticons/png/u1f354.png diff --git a/data/emoticons/noto-emoticons/png/u1f355.png b/gajim/data/emoticons/noto-emoticons/png/u1f355.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f355.png rename to gajim/data/emoticons/noto-emoticons/png/u1f355.png diff --git a/data/emoticons/noto-emoticons/png/u1f356.png b/gajim/data/emoticons/noto-emoticons/png/u1f356.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f356.png rename to gajim/data/emoticons/noto-emoticons/png/u1f356.png diff --git a/data/emoticons/noto-emoticons/png/u1f357.png b/gajim/data/emoticons/noto-emoticons/png/u1f357.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f357.png rename to gajim/data/emoticons/noto-emoticons/png/u1f357.png diff --git a/data/emoticons/noto-emoticons/png/u1f358.png b/gajim/data/emoticons/noto-emoticons/png/u1f358.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f358.png rename to gajim/data/emoticons/noto-emoticons/png/u1f358.png diff --git a/data/emoticons/noto-emoticons/png/u1f359.png b/gajim/data/emoticons/noto-emoticons/png/u1f359.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f359.png rename to gajim/data/emoticons/noto-emoticons/png/u1f359.png diff --git a/data/emoticons/noto-emoticons/png/u1f35a.png b/gajim/data/emoticons/noto-emoticons/png/u1f35a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f35a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f35a.png diff --git a/data/emoticons/noto-emoticons/png/u1f35b.png b/gajim/data/emoticons/noto-emoticons/png/u1f35b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f35b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f35b.png diff --git a/data/emoticons/noto-emoticons/png/u1f35c.png b/gajim/data/emoticons/noto-emoticons/png/u1f35c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f35c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f35c.png diff --git a/data/emoticons/noto-emoticons/png/u1f35d.png b/gajim/data/emoticons/noto-emoticons/png/u1f35d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f35d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f35d.png diff --git a/data/emoticons/noto-emoticons/png/u1f35e.png b/gajim/data/emoticons/noto-emoticons/png/u1f35e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f35e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f35e.png diff --git a/data/emoticons/noto-emoticons/png/u1f35f.png b/gajim/data/emoticons/noto-emoticons/png/u1f35f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f35f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f35f.png diff --git a/data/emoticons/noto-emoticons/png/u1f360.png b/gajim/data/emoticons/noto-emoticons/png/u1f360.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f360.png rename to gajim/data/emoticons/noto-emoticons/png/u1f360.png diff --git a/data/emoticons/noto-emoticons/png/u1f361.png b/gajim/data/emoticons/noto-emoticons/png/u1f361.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f361.png rename to gajim/data/emoticons/noto-emoticons/png/u1f361.png diff --git a/data/emoticons/noto-emoticons/png/u1f362.png b/gajim/data/emoticons/noto-emoticons/png/u1f362.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f362.png rename to gajim/data/emoticons/noto-emoticons/png/u1f362.png diff --git a/data/emoticons/noto-emoticons/png/u1f363.png b/gajim/data/emoticons/noto-emoticons/png/u1f363.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f363.png rename to gajim/data/emoticons/noto-emoticons/png/u1f363.png diff --git a/data/emoticons/noto-emoticons/png/u1f364.png b/gajim/data/emoticons/noto-emoticons/png/u1f364.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f364.png rename to gajim/data/emoticons/noto-emoticons/png/u1f364.png diff --git a/data/emoticons/noto-emoticons/png/u1f365.png b/gajim/data/emoticons/noto-emoticons/png/u1f365.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f365.png rename to gajim/data/emoticons/noto-emoticons/png/u1f365.png diff --git a/data/emoticons/noto-emoticons/png/u1f366.png b/gajim/data/emoticons/noto-emoticons/png/u1f366.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f366.png rename to gajim/data/emoticons/noto-emoticons/png/u1f366.png diff --git a/data/emoticons/noto-emoticons/png/u1f367.png b/gajim/data/emoticons/noto-emoticons/png/u1f367.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f367.png rename to gajim/data/emoticons/noto-emoticons/png/u1f367.png diff --git a/data/emoticons/noto-emoticons/png/u1f368.png b/gajim/data/emoticons/noto-emoticons/png/u1f368.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f368.png rename to gajim/data/emoticons/noto-emoticons/png/u1f368.png diff --git a/data/emoticons/noto-emoticons/png/u1f369.png b/gajim/data/emoticons/noto-emoticons/png/u1f369.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f369.png rename to gajim/data/emoticons/noto-emoticons/png/u1f369.png diff --git a/data/emoticons/noto-emoticons/png/u1f36a.png b/gajim/data/emoticons/noto-emoticons/png/u1f36a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f36a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f36a.png diff --git a/data/emoticons/noto-emoticons/png/u1f36b.png b/gajim/data/emoticons/noto-emoticons/png/u1f36b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f36b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f36b.png diff --git a/data/emoticons/noto-emoticons/png/u1f36c.png b/gajim/data/emoticons/noto-emoticons/png/u1f36c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f36c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f36c.png diff --git a/data/emoticons/noto-emoticons/png/u1f36d.png b/gajim/data/emoticons/noto-emoticons/png/u1f36d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f36d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f36d.png diff --git a/data/emoticons/noto-emoticons/png/u1f36e.png b/gajim/data/emoticons/noto-emoticons/png/u1f36e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f36e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f36e.png diff --git a/data/emoticons/noto-emoticons/png/u1f36f.png b/gajim/data/emoticons/noto-emoticons/png/u1f36f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f36f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f36f.png diff --git a/data/emoticons/noto-emoticons/png/u1f370.png b/gajim/data/emoticons/noto-emoticons/png/u1f370.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f370.png rename to gajim/data/emoticons/noto-emoticons/png/u1f370.png diff --git a/data/emoticons/noto-emoticons/png/u1f371.png b/gajim/data/emoticons/noto-emoticons/png/u1f371.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f371.png rename to gajim/data/emoticons/noto-emoticons/png/u1f371.png diff --git a/data/emoticons/noto-emoticons/png/u1f372.png b/gajim/data/emoticons/noto-emoticons/png/u1f372.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f372.png rename to gajim/data/emoticons/noto-emoticons/png/u1f372.png diff --git a/data/emoticons/noto-emoticons/png/u1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f374.png b/gajim/data/emoticons/noto-emoticons/png/u1f374.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f374.png rename to gajim/data/emoticons/noto-emoticons/png/u1f374.png diff --git a/data/emoticons/noto-emoticons/png/u1f375.png b/gajim/data/emoticons/noto-emoticons/png/u1f375.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f375.png rename to gajim/data/emoticons/noto-emoticons/png/u1f375.png diff --git a/data/emoticons/noto-emoticons/png/u1f376.png b/gajim/data/emoticons/noto-emoticons/png/u1f376.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f376.png rename to gajim/data/emoticons/noto-emoticons/png/u1f376.png diff --git a/data/emoticons/noto-emoticons/png/u1f377.png b/gajim/data/emoticons/noto-emoticons/png/u1f377.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f377.png rename to gajim/data/emoticons/noto-emoticons/png/u1f377.png diff --git a/data/emoticons/noto-emoticons/png/u1f378.png b/gajim/data/emoticons/noto-emoticons/png/u1f378.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f378.png rename to gajim/data/emoticons/noto-emoticons/png/u1f378.png diff --git a/data/emoticons/noto-emoticons/png/u1f379.png b/gajim/data/emoticons/noto-emoticons/png/u1f379.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f379.png rename to gajim/data/emoticons/noto-emoticons/png/u1f379.png diff --git a/data/emoticons/noto-emoticons/png/u1f37a.png b/gajim/data/emoticons/noto-emoticons/png/u1f37a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f37a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f37a.png diff --git a/data/emoticons/noto-emoticons/png/u1f37b.png b/gajim/data/emoticons/noto-emoticons/png/u1f37b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f37b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f37b.png diff --git a/data/emoticons/noto-emoticons/png/u1f37c.png b/gajim/data/emoticons/noto-emoticons/png/u1f37c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f37c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f37c.png diff --git a/data/emoticons/noto-emoticons/png/u1f37d.png b/gajim/data/emoticons/noto-emoticons/png/u1f37d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f37d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f37d.png diff --git a/data/emoticons/noto-emoticons/png/u1f37e.png b/gajim/data/emoticons/noto-emoticons/png/u1f37e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f37e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f37e.png diff --git a/data/emoticons/noto-emoticons/png/u1f37f.png b/gajim/data/emoticons/noto-emoticons/png/u1f37f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f37f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f37f.png diff --git a/data/emoticons/noto-emoticons/png/u1f380.png b/gajim/data/emoticons/noto-emoticons/png/u1f380.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f380.png rename to gajim/data/emoticons/noto-emoticons/png/u1f380.png diff --git a/data/emoticons/noto-emoticons/png/u1f381.png b/gajim/data/emoticons/noto-emoticons/png/u1f381.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f381.png rename to gajim/data/emoticons/noto-emoticons/png/u1f381.png diff --git a/data/emoticons/noto-emoticons/png/u1f382.png b/gajim/data/emoticons/noto-emoticons/png/u1f382.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f382.png rename to gajim/data/emoticons/noto-emoticons/png/u1f382.png diff --git a/data/emoticons/noto-emoticons/png/u1f383.png b/gajim/data/emoticons/noto-emoticons/png/u1f383.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f383.png rename to gajim/data/emoticons/noto-emoticons/png/u1f383.png diff --git a/data/emoticons/noto-emoticons/png/u1f384.png b/gajim/data/emoticons/noto-emoticons/png/u1f384.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f384.png rename to gajim/data/emoticons/noto-emoticons/png/u1f384.png diff --git a/data/emoticons/noto-emoticons/png/u1f385.png b/gajim/data/emoticons/noto-emoticons/png/u1f385.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f385.png rename to gajim/data/emoticons/noto-emoticons/png/u1f385.png diff --git a/data/emoticons/noto-emoticons/png/u1f385_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f385_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f385_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f385_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f385_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f385_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f385_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f385_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f385_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f385_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f385_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f385_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f385_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f385_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f385_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f385_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f385_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f385_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f385_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f385_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f386.png b/gajim/data/emoticons/noto-emoticons/png/u1f386.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f386.png rename to gajim/data/emoticons/noto-emoticons/png/u1f386.png diff --git a/data/emoticons/noto-emoticons/png/u1f387.png b/gajim/data/emoticons/noto-emoticons/png/u1f387.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f387.png rename to gajim/data/emoticons/noto-emoticons/png/u1f387.png diff --git a/data/emoticons/noto-emoticons/png/u1f388.png b/gajim/data/emoticons/noto-emoticons/png/u1f388.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f388.png rename to gajim/data/emoticons/noto-emoticons/png/u1f388.png diff --git a/data/emoticons/noto-emoticons/png/u1f389.png b/gajim/data/emoticons/noto-emoticons/png/u1f389.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f389.png rename to gajim/data/emoticons/noto-emoticons/png/u1f389.png diff --git a/data/emoticons/noto-emoticons/png/u1f38a.png b/gajim/data/emoticons/noto-emoticons/png/u1f38a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f38a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f38a.png diff --git a/data/emoticons/noto-emoticons/png/u1f38b.png b/gajim/data/emoticons/noto-emoticons/png/u1f38b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f38b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f38b.png diff --git a/data/emoticons/noto-emoticons/png/u1f38c.png b/gajim/data/emoticons/noto-emoticons/png/u1f38c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f38c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f38c.png diff --git a/data/emoticons/noto-emoticons/png/u1f38d.png b/gajim/data/emoticons/noto-emoticons/png/u1f38d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f38d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f38d.png diff --git a/data/emoticons/noto-emoticons/png/u1f38e.png b/gajim/data/emoticons/noto-emoticons/png/u1f38e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f38e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f38e.png diff --git a/data/emoticons/noto-emoticons/png/u1f38f.png b/gajim/data/emoticons/noto-emoticons/png/u1f38f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f38f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f38f.png diff --git a/data/emoticons/noto-emoticons/png/u1f390.png b/gajim/data/emoticons/noto-emoticons/png/u1f390.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f390.png rename to gajim/data/emoticons/noto-emoticons/png/u1f390.png diff --git a/data/emoticons/noto-emoticons/png/u1f391.png b/gajim/data/emoticons/noto-emoticons/png/u1f391.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f391.png rename to gajim/data/emoticons/noto-emoticons/png/u1f391.png diff --git a/data/emoticons/noto-emoticons/png/u1f392.png b/gajim/data/emoticons/noto-emoticons/png/u1f392.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f392.png rename to gajim/data/emoticons/noto-emoticons/png/u1f392.png diff --git a/data/emoticons/noto-emoticons/png/u1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f396.png b/gajim/data/emoticons/noto-emoticons/png/u1f396.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f396.png rename to gajim/data/emoticons/noto-emoticons/png/u1f396.png diff --git a/data/emoticons/noto-emoticons/png/u1f397.png b/gajim/data/emoticons/noto-emoticons/png/u1f397.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f397.png rename to gajim/data/emoticons/noto-emoticons/png/u1f397.png diff --git a/data/emoticons/noto-emoticons/png/u1f399.png b/gajim/data/emoticons/noto-emoticons/png/u1f399.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f399.png rename to gajim/data/emoticons/noto-emoticons/png/u1f399.png diff --git a/data/emoticons/noto-emoticons/png/u1f39a.png b/gajim/data/emoticons/noto-emoticons/png/u1f39a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f39a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f39a.png diff --git a/data/emoticons/noto-emoticons/png/u1f39b.png b/gajim/data/emoticons/noto-emoticons/png/u1f39b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f39b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f39b.png diff --git a/data/emoticons/noto-emoticons/png/u1f39e.png b/gajim/data/emoticons/noto-emoticons/png/u1f39e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f39e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f39e.png diff --git a/data/emoticons/noto-emoticons/png/u1f39f.png b/gajim/data/emoticons/noto-emoticons/png/u1f39f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f39f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f39f.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a0.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a0.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a1.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a1.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a2.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a2.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a3.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a3.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a5.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a5.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a6.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a6.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a7.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a7.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f3a9.png b/gajim/data/emoticons/noto-emoticons/png/u1f3a9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3a9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3a9.png diff --git a/data/emoticons/noto-emoticons/png/u1f3aa.png b/gajim/data/emoticons/noto-emoticons/png/u1f3aa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3aa.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3aa.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ab.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ab.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ab.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ab.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ac.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ac.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ac.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ac.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ad.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ad.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ad.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ad.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ae.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ae.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ae.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ae.png diff --git a/data/emoticons/noto-emoticons/png/u1f3af.png b/gajim/data/emoticons/noto-emoticons/png/u1f3af.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3af.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3af.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b0.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b0.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b1.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b1.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b2.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b2.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b3.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b3.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b4.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b4.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b5.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b5.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b6.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b6.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b7.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b7.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b8.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b8.png diff --git a/data/emoticons/noto-emoticons/png/u1f3b9.png b/gajim/data/emoticons/noto-emoticons/png/u1f3b9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3b9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3b9.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ba.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ba.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ba.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ba.png diff --git a/data/emoticons/noto-emoticons/png/u1f3bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f3bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f3bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f3bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f3bd.png b/gajim/data/emoticons/noto-emoticons/png/u1f3bd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3bd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3bd.png diff --git a/data/emoticons/noto-emoticons/png/u1f3be.png b/gajim/data/emoticons/noto-emoticons/png/u1f3be.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3be.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3be.png diff --git a/data/emoticons/noto-emoticons/png/u1f3bf.png b/gajim/data/emoticons/noto-emoticons/png/u1f3bf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3bf.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3bf.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c0.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c0.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c1.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c1.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c2.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c2.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c3_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c3_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c3_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c3_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c4_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c4_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c4_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c4_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c5.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c5.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c6.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c6.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c7.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c7.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c8.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c8.png diff --git a/data/emoticons/noto-emoticons/png/u1f3c9.png b/gajim/data/emoticons/noto-emoticons/png/u1f3c9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3c9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3c9.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ca_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ca_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ca_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ca_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cc.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cc.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cd.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cd.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ce.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ce.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ce.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ce.png diff --git a/data/emoticons/noto-emoticons/png/u1f3cf.png b/gajim/data/emoticons/noto-emoticons/png/u1f3cf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3cf.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3cf.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d0.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d0.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d1.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d1.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d2.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d2.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d3.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d3.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d4.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d4.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d5.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d5.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d6.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d6.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d7.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d7.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d8.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d8.png diff --git a/data/emoticons/noto-emoticons/png/u1f3d9.png b/gajim/data/emoticons/noto-emoticons/png/u1f3d9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3d9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3d9.png diff --git a/data/emoticons/noto-emoticons/png/u1f3da.png b/gajim/data/emoticons/noto-emoticons/png/u1f3da.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3da.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3da.png diff --git a/data/emoticons/noto-emoticons/png/u1f3db.png b/gajim/data/emoticons/noto-emoticons/png/u1f3db.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3db.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3db.png diff --git a/data/emoticons/noto-emoticons/png/u1f3dc.png b/gajim/data/emoticons/noto-emoticons/png/u1f3dc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3dc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3dc.png diff --git a/data/emoticons/noto-emoticons/png/u1f3dd.png b/gajim/data/emoticons/noto-emoticons/png/u1f3dd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3dd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3dd.png diff --git a/data/emoticons/noto-emoticons/png/u1f3de.png b/gajim/data/emoticons/noto-emoticons/png/u1f3de.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3de.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3de.png diff --git a/data/emoticons/noto-emoticons/png/u1f3df.png b/gajim/data/emoticons/noto-emoticons/png/u1f3df.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3df.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3df.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e0.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e0.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e1.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e1.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e2.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e2.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e3.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e3.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e4.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e4.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e5.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e5.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e6.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e6.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e7.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e7.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e8.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e8.png diff --git a/data/emoticons/noto-emoticons/png/u1f3e9.png b/gajim/data/emoticons/noto-emoticons/png/u1f3e9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3e9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3e9.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ea.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ea.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ea.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ea.png diff --git a/data/emoticons/noto-emoticons/png/u1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ec.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ec.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ec.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ec.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ee.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ee.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ee.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ee.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ef.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ef.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ef.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ef.png diff --git a/data/emoticons/noto-emoticons/png/u1f3f0.png b/gajim/data/emoticons/noto-emoticons/png/u1f3f0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3f0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3f0.png diff --git a/data/emoticons/noto-emoticons/png/u1f3f3.png b/gajim/data/emoticons/noto-emoticons/png/u1f3f3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3f3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3f3.png diff --git a/data/emoticons/noto-emoticons/png/u1f3f4.png b/gajim/data/emoticons/noto-emoticons/png/u1f3f4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3f4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3f4.png diff --git a/data/emoticons/noto-emoticons/png/u1f3f5.png b/gajim/data/emoticons/noto-emoticons/png/u1f3f5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3f5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3f5.png diff --git a/data/emoticons/noto-emoticons/png/u1f3f7.png b/gajim/data/emoticons/noto-emoticons/png/u1f3f7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3f7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3f7.png diff --git a/data/emoticons/noto-emoticons/png/u1f3f8.png b/gajim/data/emoticons/noto-emoticons/png/u1f3f8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3f8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3f8.png diff --git a/data/emoticons/noto-emoticons/png/u1f3f9.png b/gajim/data/emoticons/noto-emoticons/png/u1f3f9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3f9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3f9.png diff --git a/data/emoticons/noto-emoticons/png/u1f3fa.png b/gajim/data/emoticons/noto-emoticons/png/u1f3fa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3fa.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3fa.png diff --git a/data/emoticons/noto-emoticons/png/u1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f400.png b/gajim/data/emoticons/noto-emoticons/png/u1f400.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f400.png rename to gajim/data/emoticons/noto-emoticons/png/u1f400.png diff --git a/data/emoticons/noto-emoticons/png/u1f401.png b/gajim/data/emoticons/noto-emoticons/png/u1f401.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f401.png rename to gajim/data/emoticons/noto-emoticons/png/u1f401.png diff --git a/data/emoticons/noto-emoticons/png/u1f402.png b/gajim/data/emoticons/noto-emoticons/png/u1f402.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f402.png rename to gajim/data/emoticons/noto-emoticons/png/u1f402.png diff --git a/data/emoticons/noto-emoticons/png/u1f403.png b/gajim/data/emoticons/noto-emoticons/png/u1f403.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f403.png rename to gajim/data/emoticons/noto-emoticons/png/u1f403.png diff --git a/data/emoticons/noto-emoticons/png/u1f404.png b/gajim/data/emoticons/noto-emoticons/png/u1f404.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f404.png rename to gajim/data/emoticons/noto-emoticons/png/u1f404.png diff --git a/data/emoticons/noto-emoticons/png/u1f405.png b/gajim/data/emoticons/noto-emoticons/png/u1f405.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f405.png rename to gajim/data/emoticons/noto-emoticons/png/u1f405.png diff --git a/data/emoticons/noto-emoticons/png/u1f406.png b/gajim/data/emoticons/noto-emoticons/png/u1f406.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f406.png rename to gajim/data/emoticons/noto-emoticons/png/u1f406.png diff --git a/data/emoticons/noto-emoticons/png/u1f407.png b/gajim/data/emoticons/noto-emoticons/png/u1f407.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f407.png rename to gajim/data/emoticons/noto-emoticons/png/u1f407.png diff --git a/data/emoticons/noto-emoticons/png/u1f408.png b/gajim/data/emoticons/noto-emoticons/png/u1f408.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f408.png rename to gajim/data/emoticons/noto-emoticons/png/u1f408.png diff --git a/data/emoticons/noto-emoticons/png/u1f409.png b/gajim/data/emoticons/noto-emoticons/png/u1f409.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f409.png rename to gajim/data/emoticons/noto-emoticons/png/u1f409.png diff --git a/data/emoticons/noto-emoticons/png/u1f40a.png b/gajim/data/emoticons/noto-emoticons/png/u1f40a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f40a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f40a.png diff --git a/data/emoticons/noto-emoticons/png/u1f40b.png b/gajim/data/emoticons/noto-emoticons/png/u1f40b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f40b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f40b.png diff --git a/data/emoticons/noto-emoticons/png/u1f40c.png b/gajim/data/emoticons/noto-emoticons/png/u1f40c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f40c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f40c.png diff --git a/data/emoticons/noto-emoticons/png/u1f40d.png b/gajim/data/emoticons/noto-emoticons/png/u1f40d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f40d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f40d.png diff --git a/data/emoticons/noto-emoticons/png/u1f40e.png b/gajim/data/emoticons/noto-emoticons/png/u1f40e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f40e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f40e.png diff --git a/data/emoticons/noto-emoticons/png/u1f40f.png b/gajim/data/emoticons/noto-emoticons/png/u1f40f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f40f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f40f.png diff --git a/data/emoticons/noto-emoticons/png/u1f410.png b/gajim/data/emoticons/noto-emoticons/png/u1f410.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f410.png rename to gajim/data/emoticons/noto-emoticons/png/u1f410.png diff --git a/data/emoticons/noto-emoticons/png/u1f411.png b/gajim/data/emoticons/noto-emoticons/png/u1f411.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f411.png rename to gajim/data/emoticons/noto-emoticons/png/u1f411.png diff --git a/data/emoticons/noto-emoticons/png/u1f412.png b/gajim/data/emoticons/noto-emoticons/png/u1f412.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f412.png rename to gajim/data/emoticons/noto-emoticons/png/u1f412.png diff --git a/data/emoticons/noto-emoticons/png/u1f413.png b/gajim/data/emoticons/noto-emoticons/png/u1f413.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f413.png rename to gajim/data/emoticons/noto-emoticons/png/u1f413.png diff --git a/data/emoticons/noto-emoticons/png/u1f414.png b/gajim/data/emoticons/noto-emoticons/png/u1f414.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f414.png rename to gajim/data/emoticons/noto-emoticons/png/u1f414.png diff --git a/data/emoticons/noto-emoticons/png/u1f415.png b/gajim/data/emoticons/noto-emoticons/png/u1f415.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f415.png rename to gajim/data/emoticons/noto-emoticons/png/u1f415.png diff --git a/data/emoticons/noto-emoticons/png/u1f416.png b/gajim/data/emoticons/noto-emoticons/png/u1f416.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f416.png rename to gajim/data/emoticons/noto-emoticons/png/u1f416.png diff --git a/data/emoticons/noto-emoticons/png/u1f417.png b/gajim/data/emoticons/noto-emoticons/png/u1f417.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f417.png rename to gajim/data/emoticons/noto-emoticons/png/u1f417.png diff --git a/data/emoticons/noto-emoticons/png/u1f418.png b/gajim/data/emoticons/noto-emoticons/png/u1f418.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f418.png rename to gajim/data/emoticons/noto-emoticons/png/u1f418.png diff --git a/data/emoticons/noto-emoticons/png/u1f419.png b/gajim/data/emoticons/noto-emoticons/png/u1f419.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f419.png rename to gajim/data/emoticons/noto-emoticons/png/u1f419.png diff --git a/data/emoticons/noto-emoticons/png/u1f41a.png b/gajim/data/emoticons/noto-emoticons/png/u1f41a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f41a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f41a.png diff --git a/data/emoticons/noto-emoticons/png/u1f41b.png b/gajim/data/emoticons/noto-emoticons/png/u1f41b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f41b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f41b.png diff --git a/data/emoticons/noto-emoticons/png/u1f41c.png b/gajim/data/emoticons/noto-emoticons/png/u1f41c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f41c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f41c.png diff --git a/data/emoticons/noto-emoticons/png/u1f41d.png b/gajim/data/emoticons/noto-emoticons/png/u1f41d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f41d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f41d.png diff --git a/data/emoticons/noto-emoticons/png/u1f41e.png b/gajim/data/emoticons/noto-emoticons/png/u1f41e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f41e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f41e.png diff --git a/data/emoticons/noto-emoticons/png/u1f41f.png b/gajim/data/emoticons/noto-emoticons/png/u1f41f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f41f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f41f.png diff --git a/data/emoticons/noto-emoticons/png/u1f420.png b/gajim/data/emoticons/noto-emoticons/png/u1f420.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f420.png rename to gajim/data/emoticons/noto-emoticons/png/u1f420.png diff --git a/data/emoticons/noto-emoticons/png/u1f421.png b/gajim/data/emoticons/noto-emoticons/png/u1f421.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f421.png rename to gajim/data/emoticons/noto-emoticons/png/u1f421.png diff --git a/data/emoticons/noto-emoticons/png/u1f422.png b/gajim/data/emoticons/noto-emoticons/png/u1f422.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f422.png rename to gajim/data/emoticons/noto-emoticons/png/u1f422.png diff --git a/data/emoticons/noto-emoticons/png/u1f423.png b/gajim/data/emoticons/noto-emoticons/png/u1f423.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f423.png rename to gajim/data/emoticons/noto-emoticons/png/u1f423.png diff --git a/data/emoticons/noto-emoticons/png/u1f424.png b/gajim/data/emoticons/noto-emoticons/png/u1f424.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f424.png rename to gajim/data/emoticons/noto-emoticons/png/u1f424.png diff --git a/data/emoticons/noto-emoticons/png/u1f425.png b/gajim/data/emoticons/noto-emoticons/png/u1f425.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f425.png rename to gajim/data/emoticons/noto-emoticons/png/u1f425.png diff --git a/data/emoticons/noto-emoticons/png/u1f426.png b/gajim/data/emoticons/noto-emoticons/png/u1f426.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f426.png rename to gajim/data/emoticons/noto-emoticons/png/u1f426.png diff --git a/data/emoticons/noto-emoticons/png/u1f427.png b/gajim/data/emoticons/noto-emoticons/png/u1f427.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f427.png rename to gajim/data/emoticons/noto-emoticons/png/u1f427.png diff --git a/data/emoticons/noto-emoticons/png/u1f428.png b/gajim/data/emoticons/noto-emoticons/png/u1f428.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f428.png rename to gajim/data/emoticons/noto-emoticons/png/u1f428.png diff --git a/data/emoticons/noto-emoticons/png/u1f429.png b/gajim/data/emoticons/noto-emoticons/png/u1f429.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f429.png rename to gajim/data/emoticons/noto-emoticons/png/u1f429.png diff --git a/data/emoticons/noto-emoticons/png/u1f42a.png b/gajim/data/emoticons/noto-emoticons/png/u1f42a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f42a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f42a.png diff --git a/data/emoticons/noto-emoticons/png/u1f42b.png b/gajim/data/emoticons/noto-emoticons/png/u1f42b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f42b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f42b.png diff --git a/data/emoticons/noto-emoticons/png/u1f42c.png b/gajim/data/emoticons/noto-emoticons/png/u1f42c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f42c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f42c.png diff --git a/data/emoticons/noto-emoticons/png/u1f42d.png b/gajim/data/emoticons/noto-emoticons/png/u1f42d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f42d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f42d.png diff --git a/data/emoticons/noto-emoticons/png/u1f42e.png b/gajim/data/emoticons/noto-emoticons/png/u1f42e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f42e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f42e.png diff --git a/data/emoticons/noto-emoticons/png/u1f42f.png b/gajim/data/emoticons/noto-emoticons/png/u1f42f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f42f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f42f.png diff --git a/data/emoticons/noto-emoticons/png/u1f430.png b/gajim/data/emoticons/noto-emoticons/png/u1f430.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f430.png rename to gajim/data/emoticons/noto-emoticons/png/u1f430.png diff --git a/data/emoticons/noto-emoticons/png/u1f431.png b/gajim/data/emoticons/noto-emoticons/png/u1f431.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f431.png rename to gajim/data/emoticons/noto-emoticons/png/u1f431.png diff --git a/data/emoticons/noto-emoticons/png/u1f432.png b/gajim/data/emoticons/noto-emoticons/png/u1f432.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f432.png rename to gajim/data/emoticons/noto-emoticons/png/u1f432.png diff --git a/data/emoticons/noto-emoticons/png/u1f433.png b/gajim/data/emoticons/noto-emoticons/png/u1f433.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f433.png rename to gajim/data/emoticons/noto-emoticons/png/u1f433.png diff --git a/data/emoticons/noto-emoticons/png/u1f434.png b/gajim/data/emoticons/noto-emoticons/png/u1f434.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f434.png rename to gajim/data/emoticons/noto-emoticons/png/u1f434.png diff --git a/data/emoticons/noto-emoticons/png/u1f435.png b/gajim/data/emoticons/noto-emoticons/png/u1f435.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f435.png rename to gajim/data/emoticons/noto-emoticons/png/u1f435.png diff --git a/data/emoticons/noto-emoticons/png/u1f436.png b/gajim/data/emoticons/noto-emoticons/png/u1f436.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f436.png rename to gajim/data/emoticons/noto-emoticons/png/u1f436.png diff --git a/data/emoticons/noto-emoticons/png/u1f437.png b/gajim/data/emoticons/noto-emoticons/png/u1f437.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f437.png rename to gajim/data/emoticons/noto-emoticons/png/u1f437.png diff --git a/data/emoticons/noto-emoticons/png/u1f438.png b/gajim/data/emoticons/noto-emoticons/png/u1f438.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f438.png rename to gajim/data/emoticons/noto-emoticons/png/u1f438.png diff --git a/data/emoticons/noto-emoticons/png/u1f439.png b/gajim/data/emoticons/noto-emoticons/png/u1f439.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f439.png rename to gajim/data/emoticons/noto-emoticons/png/u1f439.png diff --git a/data/emoticons/noto-emoticons/png/u1f43a.png b/gajim/data/emoticons/noto-emoticons/png/u1f43a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f43a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f43a.png diff --git a/data/emoticons/noto-emoticons/png/u1f43b.png b/gajim/data/emoticons/noto-emoticons/png/u1f43b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f43b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f43b.png diff --git a/data/emoticons/noto-emoticons/png/u1f43c.png b/gajim/data/emoticons/noto-emoticons/png/u1f43c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f43c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f43c.png diff --git a/data/emoticons/noto-emoticons/png/u1f43d.png b/gajim/data/emoticons/noto-emoticons/png/u1f43d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f43d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f43d.png diff --git a/data/emoticons/noto-emoticons/png/u1f43e.png b/gajim/data/emoticons/noto-emoticons/png/u1f43e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f43e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f43e.png diff --git a/data/emoticons/noto-emoticons/png/u1f43f.png b/gajim/data/emoticons/noto-emoticons/png/u1f43f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f43f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f43f.png diff --git a/data/emoticons/noto-emoticons/png/u1f440.png b/gajim/data/emoticons/noto-emoticons/png/u1f440.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f440.png rename to gajim/data/emoticons/noto-emoticons/png/u1f440.png diff --git a/data/emoticons/noto-emoticons/png/u1f441.png b/gajim/data/emoticons/noto-emoticons/png/u1f441.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f441.png rename to gajim/data/emoticons/noto-emoticons/png/u1f441.png diff --git a/data/emoticons/noto-emoticons/png/u1f441_200d_1f5e8.png b/gajim/data/emoticons/noto-emoticons/png/u1f441_200d_1f5e8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f441_200d_1f5e8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f441_200d_1f5e8.png diff --git a/data/emoticons/noto-emoticons/png/u1f442.png b/gajim/data/emoticons/noto-emoticons/png/u1f442.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f442.png rename to gajim/data/emoticons/noto-emoticons/png/u1f442.png diff --git a/data/emoticons/noto-emoticons/png/u1f442_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f442_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f442_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f442_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f442_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f442_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f442_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f442_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f442_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f442_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f442_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f442_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f442_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f442_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f442_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f442_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f442_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f442_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f442_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f442_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f443.png b/gajim/data/emoticons/noto-emoticons/png/u1f443.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f443.png rename to gajim/data/emoticons/noto-emoticons/png/u1f443.png diff --git a/data/emoticons/noto-emoticons/png/u1f443_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f443_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f443_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f443_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f443_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f443_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f443_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f443_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f443_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f443_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f443_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f443_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f443_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f443_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f443_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f443_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f443_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f443_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f443_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f443_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f444.png b/gajim/data/emoticons/noto-emoticons/png/u1f444.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f444.png rename to gajim/data/emoticons/noto-emoticons/png/u1f444.png diff --git a/data/emoticons/noto-emoticons/png/u1f445.png b/gajim/data/emoticons/noto-emoticons/png/u1f445.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f445.png rename to gajim/data/emoticons/noto-emoticons/png/u1f445.png diff --git a/data/emoticons/noto-emoticons/png/u1f446.png b/gajim/data/emoticons/noto-emoticons/png/u1f446.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f446.png rename to gajim/data/emoticons/noto-emoticons/png/u1f446.png diff --git a/data/emoticons/noto-emoticons/png/u1f446_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f446_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f446_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f446_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f446_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f446_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f446_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f446_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f446_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f446_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f446_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f446_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f446_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f446_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f446_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f446_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f446_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f446_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f446_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f446_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f447.png b/gajim/data/emoticons/noto-emoticons/png/u1f447.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f447.png rename to gajim/data/emoticons/noto-emoticons/png/u1f447.png diff --git a/data/emoticons/noto-emoticons/png/u1f447_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f447_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f447_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f447_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f447_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f447_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f447_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f447_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f447_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f447_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f447_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f447_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f447_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f447_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f447_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f447_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f447_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f447_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f447_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f447_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f448.png b/gajim/data/emoticons/noto-emoticons/png/u1f448.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f448.png rename to gajim/data/emoticons/noto-emoticons/png/u1f448.png diff --git a/data/emoticons/noto-emoticons/png/u1f448_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f448_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f448_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f448_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f448_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f448_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f448_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f448_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f448_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f448_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f448_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f448_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f448_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f448_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f448_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f448_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f448_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f448_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f448_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f448_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f449.png b/gajim/data/emoticons/noto-emoticons/png/u1f449.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f449.png rename to gajim/data/emoticons/noto-emoticons/png/u1f449.png diff --git a/data/emoticons/noto-emoticons/png/u1f449_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f449_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f449_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f449_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f449_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f449_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f449_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f449_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f449_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f449_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f449_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f449_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f449_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f449_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f449_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f449_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f449_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f449_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f449_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f449_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f44a.png b/gajim/data/emoticons/noto-emoticons/png/u1f44a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44a.png diff --git a/data/emoticons/noto-emoticons/png/u1f44a_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44a_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f44a_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44a_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f44a_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44a_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f44a_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44a_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f44a_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44a_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44a_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f44b.png b/gajim/data/emoticons/noto-emoticons/png/u1f44b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44b.png diff --git a/data/emoticons/noto-emoticons/png/u1f44b_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44b_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f44b_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44b_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f44b_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44b_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f44b_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44b_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f44b_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44b_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44b_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f44c.png b/gajim/data/emoticons/noto-emoticons/png/u1f44c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44c.png diff --git a/data/emoticons/noto-emoticons/png/u1f44c_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44c_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f44c_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44c_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f44c_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44c_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f44c_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44c_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f44c_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44c_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44c_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f44d.png b/gajim/data/emoticons/noto-emoticons/png/u1f44d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44d.png diff --git a/data/emoticons/noto-emoticons/png/u1f44d_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44d_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f44d_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44d_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f44d_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44d_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f44d_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44d_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f44d_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44d_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44d_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f44e.png b/gajim/data/emoticons/noto-emoticons/png/u1f44e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44e.png diff --git a/data/emoticons/noto-emoticons/png/u1f44e_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44e_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f44e_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44e_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f44e_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44e_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f44e_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44e_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f44e_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44e_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44e_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f44f.png b/gajim/data/emoticons/noto-emoticons/png/u1f44f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44f.png diff --git a/data/emoticons/noto-emoticons/png/u1f44f_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44f_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f44f_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44f_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f44f_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44f_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f44f_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44f_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f44f_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f44f_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f44f_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f450.png b/gajim/data/emoticons/noto-emoticons/png/u1f450.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f450.png rename to gajim/data/emoticons/noto-emoticons/png/u1f450.png diff --git a/data/emoticons/noto-emoticons/png/u1f450_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f450_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f450_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f450_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f450_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f450_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f450_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f450_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f450_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f450_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f450_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f450_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f450_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f450_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f450_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f450_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f450_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f450_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f450_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f450_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f451.png b/gajim/data/emoticons/noto-emoticons/png/u1f451.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f451.png rename to gajim/data/emoticons/noto-emoticons/png/u1f451.png diff --git a/data/emoticons/noto-emoticons/png/u1f452.png b/gajim/data/emoticons/noto-emoticons/png/u1f452.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f452.png rename to gajim/data/emoticons/noto-emoticons/png/u1f452.png diff --git a/data/emoticons/noto-emoticons/png/u1f453.png b/gajim/data/emoticons/noto-emoticons/png/u1f453.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f453.png rename to gajim/data/emoticons/noto-emoticons/png/u1f453.png diff --git a/data/emoticons/noto-emoticons/png/u1f454.png b/gajim/data/emoticons/noto-emoticons/png/u1f454.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f454.png rename to gajim/data/emoticons/noto-emoticons/png/u1f454.png diff --git a/data/emoticons/noto-emoticons/png/u1f455.png b/gajim/data/emoticons/noto-emoticons/png/u1f455.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f455.png rename to gajim/data/emoticons/noto-emoticons/png/u1f455.png diff --git a/data/emoticons/noto-emoticons/png/u1f456.png b/gajim/data/emoticons/noto-emoticons/png/u1f456.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f456.png rename to gajim/data/emoticons/noto-emoticons/png/u1f456.png diff --git a/data/emoticons/noto-emoticons/png/u1f457.png b/gajim/data/emoticons/noto-emoticons/png/u1f457.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f457.png rename to gajim/data/emoticons/noto-emoticons/png/u1f457.png diff --git a/data/emoticons/noto-emoticons/png/u1f458.png b/gajim/data/emoticons/noto-emoticons/png/u1f458.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f458.png rename to gajim/data/emoticons/noto-emoticons/png/u1f458.png diff --git a/data/emoticons/noto-emoticons/png/u1f459.png b/gajim/data/emoticons/noto-emoticons/png/u1f459.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f459.png rename to gajim/data/emoticons/noto-emoticons/png/u1f459.png diff --git a/data/emoticons/noto-emoticons/png/u1f45a.png b/gajim/data/emoticons/noto-emoticons/png/u1f45a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f45a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f45a.png diff --git a/data/emoticons/noto-emoticons/png/u1f45b.png b/gajim/data/emoticons/noto-emoticons/png/u1f45b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f45b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f45b.png diff --git a/data/emoticons/noto-emoticons/png/u1f45c.png b/gajim/data/emoticons/noto-emoticons/png/u1f45c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f45c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f45c.png diff --git a/data/emoticons/noto-emoticons/png/u1f45d.png b/gajim/data/emoticons/noto-emoticons/png/u1f45d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f45d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f45d.png diff --git a/data/emoticons/noto-emoticons/png/u1f45e.png b/gajim/data/emoticons/noto-emoticons/png/u1f45e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f45e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f45e.png diff --git a/data/emoticons/noto-emoticons/png/u1f45f.png b/gajim/data/emoticons/noto-emoticons/png/u1f45f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f45f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f45f.png diff --git a/data/emoticons/noto-emoticons/png/u1f460.png b/gajim/data/emoticons/noto-emoticons/png/u1f460.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f460.png rename to gajim/data/emoticons/noto-emoticons/png/u1f460.png diff --git a/data/emoticons/noto-emoticons/png/u1f461.png b/gajim/data/emoticons/noto-emoticons/png/u1f461.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f461.png rename to gajim/data/emoticons/noto-emoticons/png/u1f461.png diff --git a/data/emoticons/noto-emoticons/png/u1f462.png b/gajim/data/emoticons/noto-emoticons/png/u1f462.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f462.png rename to gajim/data/emoticons/noto-emoticons/png/u1f462.png diff --git a/data/emoticons/noto-emoticons/png/u1f463.png b/gajim/data/emoticons/noto-emoticons/png/u1f463.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f463.png rename to gajim/data/emoticons/noto-emoticons/png/u1f463.png diff --git a/data/emoticons/noto-emoticons/png/u1f464.png b/gajim/data/emoticons/noto-emoticons/png/u1f464.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f464.png rename to gajim/data/emoticons/noto-emoticons/png/u1f464.png diff --git a/data/emoticons/noto-emoticons/png/u1f465.png b/gajim/data/emoticons/noto-emoticons/png/u1f465.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f465.png rename to gajim/data/emoticons/noto-emoticons/png/u1f465.png diff --git a/data/emoticons/noto-emoticons/png/u1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f466_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f466_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f466_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f466_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f466_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f466_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f466_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f466_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f466_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f466_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f466_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f466_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f466_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f466_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f466_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f466_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f466_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f466_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f466_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f466_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f467_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f467_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f467_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f467_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f467_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f467_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f467_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f467_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f467_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f467_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f467_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f467_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f467_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f467_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f467_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f467_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f467_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f467_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f467_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f467_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f468.png b/gajim/data/emoticons/noto-emoticons/png/u1f468.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fb_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fc_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fd_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3fe_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_1f3ff_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f466_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f466_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f466_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f466_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f467_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f466_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f468_200d_1f467_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f466_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f469_200d_1f467_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f468.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f468.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f468.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f468.png diff --git a/data/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f48b_200d_1f468.png b/gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f48b_200d_1f468.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f48b_200d_1f468.png rename to gajim/data/emoticons/noto-emoticons/png/u1f468_200d_2764_200d_1f48b_200d_1f468.png diff --git a/data/emoticons/noto-emoticons/png/u1f469.png b/gajim/data/emoticons/noto-emoticons/png/u1f469.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fb_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fc_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fd_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3fe_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_1f3ff_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f33e.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f33e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f33e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f33e.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f373.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f373.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f373.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f373.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f393.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f393.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f393.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f393.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f3a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f3a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f3a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f3a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f3a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f3a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f3a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f3a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f3eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f3eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f3eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f3eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f3ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f3ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f3ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f3ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f466_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f466_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f466_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f466_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f467_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f466_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f466.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f466.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f466.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f466.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f467.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f467.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f467.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f469_200d_1f467_200d_1f467.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_2695.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_2695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2695.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_2696.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_2696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2696.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_2708.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_2708.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2708.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f468.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f468.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f468.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f468.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f469.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f469.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f469.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f469.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f468.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f468.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f468.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f468.png diff --git a/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f469.png b/gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f469.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f469.png rename to gajim/data/emoticons/noto-emoticons/png/u1f469_200d_2764_200d_1f48b_200d_1f469.png diff --git a/data/emoticons/noto-emoticons/png/u1f46a.png b/gajim/data/emoticons/noto-emoticons/png/u1f46a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46a.png diff --git a/data/emoticons/noto-emoticons/png/u1f46b.png b/gajim/data/emoticons/noto-emoticons/png/u1f46b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46b.png diff --git a/data/emoticons/noto-emoticons/png/u1f46c.png b/gajim/data/emoticons/noto-emoticons/png/u1f46c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46c.png diff --git a/data/emoticons/noto-emoticons/png/u1f46d.png b/gajim/data/emoticons/noto-emoticons/png/u1f46d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46d.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f46e_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f46e_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46e_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46e_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f46f.png b/gajim/data/emoticons/noto-emoticons/png/u1f46f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46f.png diff --git a/data/emoticons/noto-emoticons/png/u1f46f_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f46f_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46f_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46f_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f46f_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f46f_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f46f_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f46f_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f470.png b/gajim/data/emoticons/noto-emoticons/png/u1f470.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f470.png rename to gajim/data/emoticons/noto-emoticons/png/u1f470.png diff --git a/data/emoticons/noto-emoticons/png/u1f470_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f470_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f470_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f470_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f470_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f470_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f470_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f470_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f470_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f470_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f470_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f470_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f470_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f470_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f470_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f470_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f470_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f470_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f470_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f470_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f471.png b/gajim/data/emoticons/noto-emoticons/png/u1f471.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f471_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f471_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f471_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f471_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f472.png b/gajim/data/emoticons/noto-emoticons/png/u1f472.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f472.png rename to gajim/data/emoticons/noto-emoticons/png/u1f472.png diff --git a/data/emoticons/noto-emoticons/png/u1f472_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f472_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f472_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f472_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f472_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f472_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f472_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f472_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f472_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f472_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f472_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f472_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f472_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f472_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f472_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f472_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f472_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f472_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f472_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f472_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f473.png b/gajim/data/emoticons/noto-emoticons/png/u1f473.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f473_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f473_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f473_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f473_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f474.png b/gajim/data/emoticons/noto-emoticons/png/u1f474.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f474.png rename to gajim/data/emoticons/noto-emoticons/png/u1f474.png diff --git a/data/emoticons/noto-emoticons/png/u1f474_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f474_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f474_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f474_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f474_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f474_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f474_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f474_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f474_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f474_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f474_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f474_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f474_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f474_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f474_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f474_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f474_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f474_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f474_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f474_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f475.png b/gajim/data/emoticons/noto-emoticons/png/u1f475.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f475.png rename to gajim/data/emoticons/noto-emoticons/png/u1f475.png diff --git a/data/emoticons/noto-emoticons/png/u1f475_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f475_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f475_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f475_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f475_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f475_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f475_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f475_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f475_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f475_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f475_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f475_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f475_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f475_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f475_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f475_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f475_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f475_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f475_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f475_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f476.png b/gajim/data/emoticons/noto-emoticons/png/u1f476.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f476.png rename to gajim/data/emoticons/noto-emoticons/png/u1f476.png diff --git a/data/emoticons/noto-emoticons/png/u1f476_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f476_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f476_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f476_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f476_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f476_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f476_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f476_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f476_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f476_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f476_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f476_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f476_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f476_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f476_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f476_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f476_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f476_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f476_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f476_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f477.png b/gajim/data/emoticons/noto-emoticons/png/u1f477.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f477_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f477_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f477_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f477_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f478.png b/gajim/data/emoticons/noto-emoticons/png/u1f478.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f478.png rename to gajim/data/emoticons/noto-emoticons/png/u1f478.png diff --git a/data/emoticons/noto-emoticons/png/u1f478_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f478_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f478_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f478_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f478_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f478_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f478_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f478_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f478_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f478_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f478_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f478_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f478_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f478_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f478_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f478_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f478_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f478_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f478_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f478_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f479.png b/gajim/data/emoticons/noto-emoticons/png/u1f479.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f479.png rename to gajim/data/emoticons/noto-emoticons/png/u1f479.png diff --git a/data/emoticons/noto-emoticons/png/u1f47a.png b/gajim/data/emoticons/noto-emoticons/png/u1f47a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47a.png diff --git a/data/emoticons/noto-emoticons/png/u1f47b.png b/gajim/data/emoticons/noto-emoticons/png/u1f47b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47b.png diff --git a/data/emoticons/noto-emoticons/png/u1f47c.png b/gajim/data/emoticons/noto-emoticons/png/u1f47c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47c.png diff --git a/data/emoticons/noto-emoticons/png/u1f47c_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47c_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f47c_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47c_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f47c_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47c_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f47c_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47c_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f47c_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47c_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47c_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f47d.png b/gajim/data/emoticons/noto-emoticons/png/u1f47d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47d.png diff --git a/data/emoticons/noto-emoticons/png/u1f47e.png b/gajim/data/emoticons/noto-emoticons/png/u1f47e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47e.png diff --git a/data/emoticons/noto-emoticons/png/u1f47f.png b/gajim/data/emoticons/noto-emoticons/png/u1f47f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f47f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f47f.png diff --git a/data/emoticons/noto-emoticons/png/u1f480.png b/gajim/data/emoticons/noto-emoticons/png/u1f480.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f480.png rename to gajim/data/emoticons/noto-emoticons/png/u1f480.png diff --git a/data/emoticons/noto-emoticons/png/u1f481.png b/gajim/data/emoticons/noto-emoticons/png/u1f481.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f481_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f481_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f481_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f481_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f482.png b/gajim/data/emoticons/noto-emoticons/png/u1f482.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f482_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f482_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f482_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f482_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f483.png b/gajim/data/emoticons/noto-emoticons/png/u1f483.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f483.png rename to gajim/data/emoticons/noto-emoticons/png/u1f483.png diff --git a/data/emoticons/noto-emoticons/png/u1f483_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f483_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f483_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f483_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f483_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f483_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f483_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f483_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f483_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f483_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f483_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f483_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f483_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f483_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f483_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f483_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f483_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f483_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f483_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f483_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f484.png b/gajim/data/emoticons/noto-emoticons/png/u1f484.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f484.png rename to gajim/data/emoticons/noto-emoticons/png/u1f484.png diff --git a/data/emoticons/noto-emoticons/png/u1f485.png b/gajim/data/emoticons/noto-emoticons/png/u1f485.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f485.png rename to gajim/data/emoticons/noto-emoticons/png/u1f485.png diff --git a/data/emoticons/noto-emoticons/png/u1f485_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f485_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f485_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f485_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f485_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f485_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f485_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f485_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f485_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f485_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f485_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f485_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f485_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f485_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f485_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f485_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f485_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f485_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f485_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f485_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f486.png b/gajim/data/emoticons/noto-emoticons/png/u1f486.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f486_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f486_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f486_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f486_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f487.png b/gajim/data/emoticons/noto-emoticons/png/u1f487.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f487_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f487_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f487_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f487_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f488.png b/gajim/data/emoticons/noto-emoticons/png/u1f488.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f488.png rename to gajim/data/emoticons/noto-emoticons/png/u1f488.png diff --git a/data/emoticons/noto-emoticons/png/u1f489.png b/gajim/data/emoticons/noto-emoticons/png/u1f489.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f489.png rename to gajim/data/emoticons/noto-emoticons/png/u1f489.png diff --git a/data/emoticons/noto-emoticons/png/u1f48a.png b/gajim/data/emoticons/noto-emoticons/png/u1f48a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f48a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f48a.png diff --git a/data/emoticons/noto-emoticons/png/u1f48b.png b/gajim/data/emoticons/noto-emoticons/png/u1f48b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f48b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f48b.png diff --git a/data/emoticons/noto-emoticons/png/u1f48c.png b/gajim/data/emoticons/noto-emoticons/png/u1f48c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f48c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f48c.png diff --git a/data/emoticons/noto-emoticons/png/u1f48d.png b/gajim/data/emoticons/noto-emoticons/png/u1f48d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f48d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f48d.png diff --git a/data/emoticons/noto-emoticons/png/u1f48e.png b/gajim/data/emoticons/noto-emoticons/png/u1f48e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f48e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f48e.png diff --git a/data/emoticons/noto-emoticons/png/u1f490.png b/gajim/data/emoticons/noto-emoticons/png/u1f490.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f490.png rename to gajim/data/emoticons/noto-emoticons/png/u1f490.png diff --git a/data/emoticons/noto-emoticons/png/u1f492.png b/gajim/data/emoticons/noto-emoticons/png/u1f492.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f492.png rename to gajim/data/emoticons/noto-emoticons/png/u1f492.png diff --git a/data/emoticons/noto-emoticons/png/u1f493.png b/gajim/data/emoticons/noto-emoticons/png/u1f493.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f493.png rename to gajim/data/emoticons/noto-emoticons/png/u1f493.png diff --git a/data/emoticons/noto-emoticons/png/u1f494.png b/gajim/data/emoticons/noto-emoticons/png/u1f494.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f494.png rename to gajim/data/emoticons/noto-emoticons/png/u1f494.png diff --git a/data/emoticons/noto-emoticons/png/u1f495.png b/gajim/data/emoticons/noto-emoticons/png/u1f495.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f495.png rename to gajim/data/emoticons/noto-emoticons/png/u1f495.png diff --git a/data/emoticons/noto-emoticons/png/u1f496.png b/gajim/data/emoticons/noto-emoticons/png/u1f496.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f496.png rename to gajim/data/emoticons/noto-emoticons/png/u1f496.png diff --git a/data/emoticons/noto-emoticons/png/u1f497.png b/gajim/data/emoticons/noto-emoticons/png/u1f497.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f497.png rename to gajim/data/emoticons/noto-emoticons/png/u1f497.png diff --git a/data/emoticons/noto-emoticons/png/u1f498.png b/gajim/data/emoticons/noto-emoticons/png/u1f498.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f498.png rename to gajim/data/emoticons/noto-emoticons/png/u1f498.png diff --git a/data/emoticons/noto-emoticons/png/u1f499.png b/gajim/data/emoticons/noto-emoticons/png/u1f499.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f499.png rename to gajim/data/emoticons/noto-emoticons/png/u1f499.png diff --git a/data/emoticons/noto-emoticons/png/u1f49a.png b/gajim/data/emoticons/noto-emoticons/png/u1f49a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f49a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f49a.png diff --git a/data/emoticons/noto-emoticons/png/u1f49b.png b/gajim/data/emoticons/noto-emoticons/png/u1f49b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f49b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f49b.png diff --git a/data/emoticons/noto-emoticons/png/u1f49c.png b/gajim/data/emoticons/noto-emoticons/png/u1f49c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f49c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f49c.png diff --git a/data/emoticons/noto-emoticons/png/u1f49d.png b/gajim/data/emoticons/noto-emoticons/png/u1f49d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f49d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f49d.png diff --git a/data/emoticons/noto-emoticons/png/u1f49e.png b/gajim/data/emoticons/noto-emoticons/png/u1f49e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f49e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f49e.png diff --git a/data/emoticons/noto-emoticons/png/u1f49f.png b/gajim/data/emoticons/noto-emoticons/png/u1f49f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f49f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f49f.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a0.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a0.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a1.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a1.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a2.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a2.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a3.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a3.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a5.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a5.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a6.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a6.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a7.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a7.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f4a9.png b/gajim/data/emoticons/noto-emoticons/png/u1f4a9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4a9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4a9.png diff --git a/data/emoticons/noto-emoticons/png/u1f4aa.png b/gajim/data/emoticons/noto-emoticons/png/u1f4aa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4aa.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4aa.png diff --git a/data/emoticons/noto-emoticons/png/u1f4aa_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4aa_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f4aa_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4aa_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f4aa_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4aa_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f4aa_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4aa_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f4aa_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4aa_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4aa_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ab.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ab.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ab.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ab.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ac.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ac.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ac.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ac.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ad.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ad.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ad.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ad.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ae.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ae.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ae.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ae.png diff --git a/data/emoticons/noto-emoticons/png/u1f4af.png b/gajim/data/emoticons/noto-emoticons/png/u1f4af.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4af.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4af.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b0.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b0.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b1.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b1.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b2.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b2.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b3.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b3.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b4.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b4.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b5.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b5.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b6.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b6.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b7.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b7.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b8.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b8.png diff --git a/data/emoticons/noto-emoticons/png/u1f4b9.png b/gajim/data/emoticons/noto-emoticons/png/u1f4b9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4b9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4b9.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ba.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ba.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ba.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ba.png diff --git a/data/emoticons/noto-emoticons/png/u1f4bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f4bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f4bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f4bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f4bd.png b/gajim/data/emoticons/noto-emoticons/png/u1f4bd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4bd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4bd.png diff --git a/data/emoticons/noto-emoticons/png/u1f4be.png b/gajim/data/emoticons/noto-emoticons/png/u1f4be.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4be.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4be.png diff --git a/data/emoticons/noto-emoticons/png/u1f4bf.png b/gajim/data/emoticons/noto-emoticons/png/u1f4bf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4bf.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4bf.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c0.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c0.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c1.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c1.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c2.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c2.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c3.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c3.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c4.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c4.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c5.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c5.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c6.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c6.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c7.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c7.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c8.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c8.png diff --git a/data/emoticons/noto-emoticons/png/u1f4c9.png b/gajim/data/emoticons/noto-emoticons/png/u1f4c9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4c9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4c9.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ca.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ca.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ca.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ca.png diff --git a/data/emoticons/noto-emoticons/png/u1f4cb.png b/gajim/data/emoticons/noto-emoticons/png/u1f4cb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4cb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4cb.png diff --git a/data/emoticons/noto-emoticons/png/u1f4cc.png b/gajim/data/emoticons/noto-emoticons/png/u1f4cc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4cc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4cc.png diff --git a/data/emoticons/noto-emoticons/png/u1f4cd.png b/gajim/data/emoticons/noto-emoticons/png/u1f4cd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4cd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4cd.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ce.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ce.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ce.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ce.png diff --git a/data/emoticons/noto-emoticons/png/u1f4cf.png b/gajim/data/emoticons/noto-emoticons/png/u1f4cf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4cf.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4cf.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d0.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d0.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d1.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d1.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d2.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d2.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d3.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d3.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d4.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d4.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d5.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d5.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d6.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d6.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d7.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d7.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d8.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d8.png diff --git a/data/emoticons/noto-emoticons/png/u1f4d9.png b/gajim/data/emoticons/noto-emoticons/png/u1f4d9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4d9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4d9.png diff --git a/data/emoticons/noto-emoticons/png/u1f4da.png b/gajim/data/emoticons/noto-emoticons/png/u1f4da.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4da.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4da.png diff --git a/data/emoticons/noto-emoticons/png/u1f4db.png b/gajim/data/emoticons/noto-emoticons/png/u1f4db.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4db.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4db.png diff --git a/data/emoticons/noto-emoticons/png/u1f4dc.png b/gajim/data/emoticons/noto-emoticons/png/u1f4dc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4dc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4dc.png diff --git a/data/emoticons/noto-emoticons/png/u1f4dd.png b/gajim/data/emoticons/noto-emoticons/png/u1f4dd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4dd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4dd.png diff --git a/data/emoticons/noto-emoticons/png/u1f4de.png b/gajim/data/emoticons/noto-emoticons/png/u1f4de.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4de.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4de.png diff --git a/data/emoticons/noto-emoticons/png/u1f4df.png b/gajim/data/emoticons/noto-emoticons/png/u1f4df.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4df.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4df.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e0.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e0.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e1.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e1.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e2.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e2.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e3.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e3.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e4.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e4.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e5.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e5.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e6.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e6.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e7.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e7.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e8.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e8.png diff --git a/data/emoticons/noto-emoticons/png/u1f4e9.png b/gajim/data/emoticons/noto-emoticons/png/u1f4e9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4e9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4e9.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ea.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ea.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ea.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ea.png diff --git a/data/emoticons/noto-emoticons/png/u1f4eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f4eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ec.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ec.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ec.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ec.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ed.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ed.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ed.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ee.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ee.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ee.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ee.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ef.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ef.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ef.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ef.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f0.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f0.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f1.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f1.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f2.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f2.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f3.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f3.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f4.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f4.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f5.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f5.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f6.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f6.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f7.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f7.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f8.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f8.png diff --git a/data/emoticons/noto-emoticons/png/u1f4f9.png b/gajim/data/emoticons/noto-emoticons/png/u1f4f9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4f9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4f9.png diff --git a/data/emoticons/noto-emoticons/png/u1f4fa.png b/gajim/data/emoticons/noto-emoticons/png/u1f4fa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4fa.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4fa.png diff --git a/data/emoticons/noto-emoticons/png/u1f4fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f4fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f4fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f4fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f4fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f4fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f4ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f4ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f4ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f4ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f500.png b/gajim/data/emoticons/noto-emoticons/png/u1f500.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f500.png rename to gajim/data/emoticons/noto-emoticons/png/u1f500.png diff --git a/data/emoticons/noto-emoticons/png/u1f501.png b/gajim/data/emoticons/noto-emoticons/png/u1f501.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f501.png rename to gajim/data/emoticons/noto-emoticons/png/u1f501.png diff --git a/data/emoticons/noto-emoticons/png/u1f502.png b/gajim/data/emoticons/noto-emoticons/png/u1f502.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f502.png rename to gajim/data/emoticons/noto-emoticons/png/u1f502.png diff --git a/data/emoticons/noto-emoticons/png/u1f503.png b/gajim/data/emoticons/noto-emoticons/png/u1f503.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f503.png rename to gajim/data/emoticons/noto-emoticons/png/u1f503.png diff --git a/data/emoticons/noto-emoticons/png/u1f504.png b/gajim/data/emoticons/noto-emoticons/png/u1f504.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f504.png rename to gajim/data/emoticons/noto-emoticons/png/u1f504.png diff --git a/data/emoticons/noto-emoticons/png/u1f505.png b/gajim/data/emoticons/noto-emoticons/png/u1f505.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f505.png rename to gajim/data/emoticons/noto-emoticons/png/u1f505.png diff --git a/data/emoticons/noto-emoticons/png/u1f506.png b/gajim/data/emoticons/noto-emoticons/png/u1f506.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f506.png rename to gajim/data/emoticons/noto-emoticons/png/u1f506.png diff --git a/data/emoticons/noto-emoticons/png/u1f507.png b/gajim/data/emoticons/noto-emoticons/png/u1f507.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f507.png rename to gajim/data/emoticons/noto-emoticons/png/u1f507.png diff --git a/data/emoticons/noto-emoticons/png/u1f508.png b/gajim/data/emoticons/noto-emoticons/png/u1f508.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f508.png rename to gajim/data/emoticons/noto-emoticons/png/u1f508.png diff --git a/data/emoticons/noto-emoticons/png/u1f509.png b/gajim/data/emoticons/noto-emoticons/png/u1f509.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f509.png rename to gajim/data/emoticons/noto-emoticons/png/u1f509.png diff --git a/data/emoticons/noto-emoticons/png/u1f50a.png b/gajim/data/emoticons/noto-emoticons/png/u1f50a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f50a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f50a.png diff --git a/data/emoticons/noto-emoticons/png/u1f50b.png b/gajim/data/emoticons/noto-emoticons/png/u1f50b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f50b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f50b.png diff --git a/data/emoticons/noto-emoticons/png/u1f50c.png b/gajim/data/emoticons/noto-emoticons/png/u1f50c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f50c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f50c.png diff --git a/data/emoticons/noto-emoticons/png/u1f50d.png b/gajim/data/emoticons/noto-emoticons/png/u1f50d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f50d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f50d.png diff --git a/data/emoticons/noto-emoticons/png/u1f50e.png b/gajim/data/emoticons/noto-emoticons/png/u1f50e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f50e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f50e.png diff --git a/data/emoticons/noto-emoticons/png/u1f50f.png b/gajim/data/emoticons/noto-emoticons/png/u1f50f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f50f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f50f.png diff --git a/data/emoticons/noto-emoticons/png/u1f510.png b/gajim/data/emoticons/noto-emoticons/png/u1f510.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f510.png rename to gajim/data/emoticons/noto-emoticons/png/u1f510.png diff --git a/data/emoticons/noto-emoticons/png/u1f511.png b/gajim/data/emoticons/noto-emoticons/png/u1f511.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f511.png rename to gajim/data/emoticons/noto-emoticons/png/u1f511.png diff --git a/data/emoticons/noto-emoticons/png/u1f512.png b/gajim/data/emoticons/noto-emoticons/png/u1f512.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f512.png rename to gajim/data/emoticons/noto-emoticons/png/u1f512.png diff --git a/data/emoticons/noto-emoticons/png/u1f513.png b/gajim/data/emoticons/noto-emoticons/png/u1f513.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f513.png rename to gajim/data/emoticons/noto-emoticons/png/u1f513.png diff --git a/data/emoticons/noto-emoticons/png/u1f514.png b/gajim/data/emoticons/noto-emoticons/png/u1f514.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f514.png rename to gajim/data/emoticons/noto-emoticons/png/u1f514.png diff --git a/data/emoticons/noto-emoticons/png/u1f515.png b/gajim/data/emoticons/noto-emoticons/png/u1f515.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f515.png rename to gajim/data/emoticons/noto-emoticons/png/u1f515.png diff --git a/data/emoticons/noto-emoticons/png/u1f516.png b/gajim/data/emoticons/noto-emoticons/png/u1f516.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f516.png rename to gajim/data/emoticons/noto-emoticons/png/u1f516.png diff --git a/data/emoticons/noto-emoticons/png/u1f517.png b/gajim/data/emoticons/noto-emoticons/png/u1f517.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f517.png rename to gajim/data/emoticons/noto-emoticons/png/u1f517.png diff --git a/data/emoticons/noto-emoticons/png/u1f518.png b/gajim/data/emoticons/noto-emoticons/png/u1f518.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f518.png rename to gajim/data/emoticons/noto-emoticons/png/u1f518.png diff --git a/data/emoticons/noto-emoticons/png/u1f519.png b/gajim/data/emoticons/noto-emoticons/png/u1f519.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f519.png rename to gajim/data/emoticons/noto-emoticons/png/u1f519.png diff --git a/data/emoticons/noto-emoticons/png/u1f51a.png b/gajim/data/emoticons/noto-emoticons/png/u1f51a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f51a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f51a.png diff --git a/data/emoticons/noto-emoticons/png/u1f51b.png b/gajim/data/emoticons/noto-emoticons/png/u1f51b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f51b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f51b.png diff --git a/data/emoticons/noto-emoticons/png/u1f51c.png b/gajim/data/emoticons/noto-emoticons/png/u1f51c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f51c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f51c.png diff --git a/data/emoticons/noto-emoticons/png/u1f51d.png b/gajim/data/emoticons/noto-emoticons/png/u1f51d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f51d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f51d.png diff --git a/data/emoticons/noto-emoticons/png/u1f51e.png b/gajim/data/emoticons/noto-emoticons/png/u1f51e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f51e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f51e.png diff --git a/data/emoticons/noto-emoticons/png/u1f51f.png b/gajim/data/emoticons/noto-emoticons/png/u1f51f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f51f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f51f.png diff --git a/data/emoticons/noto-emoticons/png/u1f520.png b/gajim/data/emoticons/noto-emoticons/png/u1f520.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f520.png rename to gajim/data/emoticons/noto-emoticons/png/u1f520.png diff --git a/data/emoticons/noto-emoticons/png/u1f521.png b/gajim/data/emoticons/noto-emoticons/png/u1f521.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f521.png rename to gajim/data/emoticons/noto-emoticons/png/u1f521.png diff --git a/data/emoticons/noto-emoticons/png/u1f522.png b/gajim/data/emoticons/noto-emoticons/png/u1f522.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f522.png rename to gajim/data/emoticons/noto-emoticons/png/u1f522.png diff --git a/data/emoticons/noto-emoticons/png/u1f523.png b/gajim/data/emoticons/noto-emoticons/png/u1f523.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f523.png rename to gajim/data/emoticons/noto-emoticons/png/u1f523.png diff --git a/data/emoticons/noto-emoticons/png/u1f524.png b/gajim/data/emoticons/noto-emoticons/png/u1f524.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f524.png rename to gajim/data/emoticons/noto-emoticons/png/u1f524.png diff --git a/data/emoticons/noto-emoticons/png/u1f525.png b/gajim/data/emoticons/noto-emoticons/png/u1f525.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f525.png rename to gajim/data/emoticons/noto-emoticons/png/u1f525.png diff --git a/data/emoticons/noto-emoticons/png/u1f526.png b/gajim/data/emoticons/noto-emoticons/png/u1f526.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f526.png rename to gajim/data/emoticons/noto-emoticons/png/u1f526.png diff --git a/data/emoticons/noto-emoticons/png/u1f527.png b/gajim/data/emoticons/noto-emoticons/png/u1f527.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f527.png rename to gajim/data/emoticons/noto-emoticons/png/u1f527.png diff --git a/data/emoticons/noto-emoticons/png/u1f528.png b/gajim/data/emoticons/noto-emoticons/png/u1f528.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f528.png rename to gajim/data/emoticons/noto-emoticons/png/u1f528.png diff --git a/data/emoticons/noto-emoticons/png/u1f529.png b/gajim/data/emoticons/noto-emoticons/png/u1f529.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f529.png rename to gajim/data/emoticons/noto-emoticons/png/u1f529.png diff --git a/data/emoticons/noto-emoticons/png/u1f52a.png b/gajim/data/emoticons/noto-emoticons/png/u1f52a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f52a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f52a.png diff --git a/data/emoticons/noto-emoticons/png/u1f52b.png b/gajim/data/emoticons/noto-emoticons/png/u1f52b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f52b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f52b.png diff --git a/data/emoticons/noto-emoticons/png/u1f52c.png b/gajim/data/emoticons/noto-emoticons/png/u1f52c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f52c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f52c.png diff --git a/data/emoticons/noto-emoticons/png/u1f52d.png b/gajim/data/emoticons/noto-emoticons/png/u1f52d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f52d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f52d.png diff --git a/data/emoticons/noto-emoticons/png/u1f52e.png b/gajim/data/emoticons/noto-emoticons/png/u1f52e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f52e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f52e.png diff --git a/data/emoticons/noto-emoticons/png/u1f52f.png b/gajim/data/emoticons/noto-emoticons/png/u1f52f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f52f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f52f.png diff --git a/data/emoticons/noto-emoticons/png/u1f530.png b/gajim/data/emoticons/noto-emoticons/png/u1f530.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f530.png rename to gajim/data/emoticons/noto-emoticons/png/u1f530.png diff --git a/data/emoticons/noto-emoticons/png/u1f531.png b/gajim/data/emoticons/noto-emoticons/png/u1f531.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f531.png rename to gajim/data/emoticons/noto-emoticons/png/u1f531.png diff --git a/data/emoticons/noto-emoticons/png/u1f532.png b/gajim/data/emoticons/noto-emoticons/png/u1f532.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f532.png rename to gajim/data/emoticons/noto-emoticons/png/u1f532.png diff --git a/data/emoticons/noto-emoticons/png/u1f533.png b/gajim/data/emoticons/noto-emoticons/png/u1f533.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f533.png rename to gajim/data/emoticons/noto-emoticons/png/u1f533.png diff --git a/data/emoticons/noto-emoticons/png/u1f534.png b/gajim/data/emoticons/noto-emoticons/png/u1f534.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f534.png rename to gajim/data/emoticons/noto-emoticons/png/u1f534.png diff --git a/data/emoticons/noto-emoticons/png/u1f535.png b/gajim/data/emoticons/noto-emoticons/png/u1f535.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f535.png rename to gajim/data/emoticons/noto-emoticons/png/u1f535.png diff --git a/data/emoticons/noto-emoticons/png/u1f536.png b/gajim/data/emoticons/noto-emoticons/png/u1f536.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f536.png rename to gajim/data/emoticons/noto-emoticons/png/u1f536.png diff --git a/data/emoticons/noto-emoticons/png/u1f537.png b/gajim/data/emoticons/noto-emoticons/png/u1f537.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f537.png rename to gajim/data/emoticons/noto-emoticons/png/u1f537.png diff --git a/data/emoticons/noto-emoticons/png/u1f538.png b/gajim/data/emoticons/noto-emoticons/png/u1f538.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f538.png rename to gajim/data/emoticons/noto-emoticons/png/u1f538.png diff --git a/data/emoticons/noto-emoticons/png/u1f539.png b/gajim/data/emoticons/noto-emoticons/png/u1f539.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f539.png rename to gajim/data/emoticons/noto-emoticons/png/u1f539.png diff --git a/data/emoticons/noto-emoticons/png/u1f53a.png b/gajim/data/emoticons/noto-emoticons/png/u1f53a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f53a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f53a.png diff --git a/data/emoticons/noto-emoticons/png/u1f53b.png b/gajim/data/emoticons/noto-emoticons/png/u1f53b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f53b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f53b.png diff --git a/data/emoticons/noto-emoticons/png/u1f53c.png b/gajim/data/emoticons/noto-emoticons/png/u1f53c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f53c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f53c.png diff --git a/data/emoticons/noto-emoticons/png/u1f53d.png b/gajim/data/emoticons/noto-emoticons/png/u1f53d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f53d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f53d.png diff --git a/data/emoticons/noto-emoticons/png/u1f549.png b/gajim/data/emoticons/noto-emoticons/png/u1f549.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f549.png rename to gajim/data/emoticons/noto-emoticons/png/u1f549.png diff --git a/data/emoticons/noto-emoticons/png/u1f54a.png b/gajim/data/emoticons/noto-emoticons/png/u1f54a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f54a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f54a.png diff --git a/data/emoticons/noto-emoticons/png/u1f54b.png b/gajim/data/emoticons/noto-emoticons/png/u1f54b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f54b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f54b.png diff --git a/data/emoticons/noto-emoticons/png/u1f54c.png b/gajim/data/emoticons/noto-emoticons/png/u1f54c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f54c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f54c.png diff --git a/data/emoticons/noto-emoticons/png/u1f54d.png b/gajim/data/emoticons/noto-emoticons/png/u1f54d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f54d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f54d.png diff --git a/data/emoticons/noto-emoticons/png/u1f54e.png b/gajim/data/emoticons/noto-emoticons/png/u1f54e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f54e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f54e.png diff --git a/data/emoticons/noto-emoticons/png/u1f550.png b/gajim/data/emoticons/noto-emoticons/png/u1f550.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f550.png rename to gajim/data/emoticons/noto-emoticons/png/u1f550.png diff --git a/data/emoticons/noto-emoticons/png/u1f551.png b/gajim/data/emoticons/noto-emoticons/png/u1f551.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f551.png rename to gajim/data/emoticons/noto-emoticons/png/u1f551.png diff --git a/data/emoticons/noto-emoticons/png/u1f552.png b/gajim/data/emoticons/noto-emoticons/png/u1f552.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f552.png rename to gajim/data/emoticons/noto-emoticons/png/u1f552.png diff --git a/data/emoticons/noto-emoticons/png/u1f553.png b/gajim/data/emoticons/noto-emoticons/png/u1f553.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f553.png rename to gajim/data/emoticons/noto-emoticons/png/u1f553.png diff --git a/data/emoticons/noto-emoticons/png/u1f554.png b/gajim/data/emoticons/noto-emoticons/png/u1f554.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f554.png rename to gajim/data/emoticons/noto-emoticons/png/u1f554.png diff --git a/data/emoticons/noto-emoticons/png/u1f555.png b/gajim/data/emoticons/noto-emoticons/png/u1f555.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f555.png rename to gajim/data/emoticons/noto-emoticons/png/u1f555.png diff --git a/data/emoticons/noto-emoticons/png/u1f556.png b/gajim/data/emoticons/noto-emoticons/png/u1f556.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f556.png rename to gajim/data/emoticons/noto-emoticons/png/u1f556.png diff --git a/data/emoticons/noto-emoticons/png/u1f557.png b/gajim/data/emoticons/noto-emoticons/png/u1f557.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f557.png rename to gajim/data/emoticons/noto-emoticons/png/u1f557.png diff --git a/data/emoticons/noto-emoticons/png/u1f558.png b/gajim/data/emoticons/noto-emoticons/png/u1f558.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f558.png rename to gajim/data/emoticons/noto-emoticons/png/u1f558.png diff --git a/data/emoticons/noto-emoticons/png/u1f559.png b/gajim/data/emoticons/noto-emoticons/png/u1f559.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f559.png rename to gajim/data/emoticons/noto-emoticons/png/u1f559.png diff --git a/data/emoticons/noto-emoticons/png/u1f55a.png b/gajim/data/emoticons/noto-emoticons/png/u1f55a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f55a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f55a.png diff --git a/data/emoticons/noto-emoticons/png/u1f55b.png b/gajim/data/emoticons/noto-emoticons/png/u1f55b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f55b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f55b.png diff --git a/data/emoticons/noto-emoticons/png/u1f55c.png b/gajim/data/emoticons/noto-emoticons/png/u1f55c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f55c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f55c.png diff --git a/data/emoticons/noto-emoticons/png/u1f55d.png b/gajim/data/emoticons/noto-emoticons/png/u1f55d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f55d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f55d.png diff --git a/data/emoticons/noto-emoticons/png/u1f55e.png b/gajim/data/emoticons/noto-emoticons/png/u1f55e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f55e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f55e.png diff --git a/data/emoticons/noto-emoticons/png/u1f55f.png b/gajim/data/emoticons/noto-emoticons/png/u1f55f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f55f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f55f.png diff --git a/data/emoticons/noto-emoticons/png/u1f560.png b/gajim/data/emoticons/noto-emoticons/png/u1f560.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f560.png rename to gajim/data/emoticons/noto-emoticons/png/u1f560.png diff --git a/data/emoticons/noto-emoticons/png/u1f561.png b/gajim/data/emoticons/noto-emoticons/png/u1f561.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f561.png rename to gajim/data/emoticons/noto-emoticons/png/u1f561.png diff --git a/data/emoticons/noto-emoticons/png/u1f562.png b/gajim/data/emoticons/noto-emoticons/png/u1f562.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f562.png rename to gajim/data/emoticons/noto-emoticons/png/u1f562.png diff --git a/data/emoticons/noto-emoticons/png/u1f563.png b/gajim/data/emoticons/noto-emoticons/png/u1f563.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f563.png rename to gajim/data/emoticons/noto-emoticons/png/u1f563.png diff --git a/data/emoticons/noto-emoticons/png/u1f564.png b/gajim/data/emoticons/noto-emoticons/png/u1f564.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f564.png rename to gajim/data/emoticons/noto-emoticons/png/u1f564.png diff --git a/data/emoticons/noto-emoticons/png/u1f565.png b/gajim/data/emoticons/noto-emoticons/png/u1f565.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f565.png rename to gajim/data/emoticons/noto-emoticons/png/u1f565.png diff --git a/data/emoticons/noto-emoticons/png/u1f566.png b/gajim/data/emoticons/noto-emoticons/png/u1f566.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f566.png rename to gajim/data/emoticons/noto-emoticons/png/u1f566.png diff --git a/data/emoticons/noto-emoticons/png/u1f567.png b/gajim/data/emoticons/noto-emoticons/png/u1f567.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f567.png rename to gajim/data/emoticons/noto-emoticons/png/u1f567.png diff --git a/data/emoticons/noto-emoticons/png/u1f56f.png b/gajim/data/emoticons/noto-emoticons/png/u1f56f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f56f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f56f.png diff --git a/data/emoticons/noto-emoticons/png/u1f570.png b/gajim/data/emoticons/noto-emoticons/png/u1f570.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f570.png rename to gajim/data/emoticons/noto-emoticons/png/u1f570.png diff --git a/data/emoticons/noto-emoticons/png/u1f573.png b/gajim/data/emoticons/noto-emoticons/png/u1f573.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f573.png rename to gajim/data/emoticons/noto-emoticons/png/u1f573.png diff --git a/data/emoticons/noto-emoticons/png/u1f574.png b/gajim/data/emoticons/noto-emoticons/png/u1f574.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f574.png rename to gajim/data/emoticons/noto-emoticons/png/u1f574.png diff --git a/data/emoticons/noto-emoticons/png/u1f575.png b/gajim/data/emoticons/noto-emoticons/png/u1f575.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f575_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f575_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f575_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f575_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f576.png b/gajim/data/emoticons/noto-emoticons/png/u1f576.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f576.png rename to gajim/data/emoticons/noto-emoticons/png/u1f576.png diff --git a/data/emoticons/noto-emoticons/png/u1f577.png b/gajim/data/emoticons/noto-emoticons/png/u1f577.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f577.png rename to gajim/data/emoticons/noto-emoticons/png/u1f577.png diff --git a/data/emoticons/noto-emoticons/png/u1f578.png b/gajim/data/emoticons/noto-emoticons/png/u1f578.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f578.png rename to gajim/data/emoticons/noto-emoticons/png/u1f578.png diff --git a/data/emoticons/noto-emoticons/png/u1f579.png b/gajim/data/emoticons/noto-emoticons/png/u1f579.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f579.png rename to gajim/data/emoticons/noto-emoticons/png/u1f579.png diff --git a/data/emoticons/noto-emoticons/png/u1f57a.png b/gajim/data/emoticons/noto-emoticons/png/u1f57a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f57a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f57a.png diff --git a/data/emoticons/noto-emoticons/png/u1f57a_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f57a_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f57a_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f57a_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f57a_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f57a_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f57a_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f57a_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f57a_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f57a_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f57a_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f587.png b/gajim/data/emoticons/noto-emoticons/png/u1f587.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f587.png rename to gajim/data/emoticons/noto-emoticons/png/u1f587.png diff --git a/data/emoticons/noto-emoticons/png/u1f58a.png b/gajim/data/emoticons/noto-emoticons/png/u1f58a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f58a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f58a.png diff --git a/data/emoticons/noto-emoticons/png/u1f58b.png b/gajim/data/emoticons/noto-emoticons/png/u1f58b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f58b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f58b.png diff --git a/data/emoticons/noto-emoticons/png/u1f58c.png b/gajim/data/emoticons/noto-emoticons/png/u1f58c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f58c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f58c.png diff --git a/data/emoticons/noto-emoticons/png/u1f58d.png b/gajim/data/emoticons/noto-emoticons/png/u1f58d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f58d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f58d.png diff --git a/data/emoticons/noto-emoticons/png/u1f590.png b/gajim/data/emoticons/noto-emoticons/png/u1f590.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f590.png rename to gajim/data/emoticons/noto-emoticons/png/u1f590.png diff --git a/data/emoticons/noto-emoticons/png/u1f590_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f590_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f590_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f590_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f590_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f590_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f590_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f590_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f590_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f590_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f590_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f590_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f590_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f590_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f590_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f590_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f590_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f590_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f590_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f590_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f595.png b/gajim/data/emoticons/noto-emoticons/png/u1f595.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f595.png rename to gajim/data/emoticons/noto-emoticons/png/u1f595.png diff --git a/data/emoticons/noto-emoticons/png/u1f595_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f595_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f595_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f595_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f595_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f595_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f595_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f595_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f595_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f595_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f595_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f595_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f595_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f595_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f595_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f595_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f595_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f595_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f595_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f595_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f596.png b/gajim/data/emoticons/noto-emoticons/png/u1f596.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f596.png rename to gajim/data/emoticons/noto-emoticons/png/u1f596.png diff --git a/data/emoticons/noto-emoticons/png/u1f596_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f596_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f596_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f596_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f596_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f596_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f596_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f596_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f596_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f596_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f596_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f596_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f596_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f596_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f596_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f596_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f596_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f596_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f596_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f596_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f5a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f5a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f5a5.png b/gajim/data/emoticons/noto-emoticons/png/u1f5a5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5a5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5a5.png diff --git a/data/emoticons/noto-emoticons/png/u1f5a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f5a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f5b1.png b/gajim/data/emoticons/noto-emoticons/png/u1f5b1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5b1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5b1.png diff --git a/data/emoticons/noto-emoticons/png/u1f5b2.png b/gajim/data/emoticons/noto-emoticons/png/u1f5b2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5b2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5b2.png diff --git a/data/emoticons/noto-emoticons/png/u1f5bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f5bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f5c2.png b/gajim/data/emoticons/noto-emoticons/png/u1f5c2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5c2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5c2.png diff --git a/data/emoticons/noto-emoticons/png/u1f5c3.png b/gajim/data/emoticons/noto-emoticons/png/u1f5c3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5c3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5c3.png diff --git a/data/emoticons/noto-emoticons/png/u1f5c4.png b/gajim/data/emoticons/noto-emoticons/png/u1f5c4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5c4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5c4.png diff --git a/data/emoticons/noto-emoticons/png/u1f5d1.png b/gajim/data/emoticons/noto-emoticons/png/u1f5d1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5d1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5d1.png diff --git a/data/emoticons/noto-emoticons/png/u1f5d2.png b/gajim/data/emoticons/noto-emoticons/png/u1f5d2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5d2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5d2.png diff --git a/data/emoticons/noto-emoticons/png/u1f5d3.png b/gajim/data/emoticons/noto-emoticons/png/u1f5d3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5d3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5d3.png diff --git a/data/emoticons/noto-emoticons/png/u1f5dc.png b/gajim/data/emoticons/noto-emoticons/png/u1f5dc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5dc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5dc.png diff --git a/data/emoticons/noto-emoticons/png/u1f5dd.png b/gajim/data/emoticons/noto-emoticons/png/u1f5dd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5dd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5dd.png diff --git a/data/emoticons/noto-emoticons/png/u1f5de.png b/gajim/data/emoticons/noto-emoticons/png/u1f5de.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5de.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5de.png diff --git a/data/emoticons/noto-emoticons/png/u1f5e1.png b/gajim/data/emoticons/noto-emoticons/png/u1f5e1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5e1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5e1.png diff --git a/data/emoticons/noto-emoticons/png/u1f5e3.png b/gajim/data/emoticons/noto-emoticons/png/u1f5e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5e3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5e3.png diff --git a/data/emoticons/noto-emoticons/png/u1f5e8.png b/gajim/data/emoticons/noto-emoticons/png/u1f5e8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5e8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5e8.png diff --git a/data/emoticons/noto-emoticons/png/u1f5ef.png b/gajim/data/emoticons/noto-emoticons/png/u1f5ef.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5ef.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5ef.png diff --git a/data/emoticons/noto-emoticons/png/u1f5f3.png b/gajim/data/emoticons/noto-emoticons/png/u1f5f3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5f3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5f3.png diff --git a/data/emoticons/noto-emoticons/png/u1f5fa.png b/gajim/data/emoticons/noto-emoticons/png/u1f5fa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5fa.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5fa.png diff --git a/data/emoticons/noto-emoticons/png/u1f5fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f5fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f5fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f5fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f5fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f5fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f5fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f5fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f5ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f5ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f5ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f5ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f600.png b/gajim/data/emoticons/noto-emoticons/png/u1f600.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f600.png rename to gajim/data/emoticons/noto-emoticons/png/u1f600.png diff --git a/data/emoticons/noto-emoticons/png/u1f601.png b/gajim/data/emoticons/noto-emoticons/png/u1f601.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f601.png rename to gajim/data/emoticons/noto-emoticons/png/u1f601.png diff --git a/data/emoticons/noto-emoticons/png/u1f602.png b/gajim/data/emoticons/noto-emoticons/png/u1f602.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f602.png rename to gajim/data/emoticons/noto-emoticons/png/u1f602.png diff --git a/data/emoticons/noto-emoticons/png/u1f603.png b/gajim/data/emoticons/noto-emoticons/png/u1f603.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f603.png rename to gajim/data/emoticons/noto-emoticons/png/u1f603.png diff --git a/data/emoticons/noto-emoticons/png/u1f604.png b/gajim/data/emoticons/noto-emoticons/png/u1f604.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f604.png rename to gajim/data/emoticons/noto-emoticons/png/u1f604.png diff --git a/data/emoticons/noto-emoticons/png/u1f605.png b/gajim/data/emoticons/noto-emoticons/png/u1f605.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f605.png rename to gajim/data/emoticons/noto-emoticons/png/u1f605.png diff --git a/data/emoticons/noto-emoticons/png/u1f606.png b/gajim/data/emoticons/noto-emoticons/png/u1f606.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f606.png rename to gajim/data/emoticons/noto-emoticons/png/u1f606.png diff --git a/data/emoticons/noto-emoticons/png/u1f607.png b/gajim/data/emoticons/noto-emoticons/png/u1f607.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f607.png rename to gajim/data/emoticons/noto-emoticons/png/u1f607.png diff --git a/data/emoticons/noto-emoticons/png/u1f608.png b/gajim/data/emoticons/noto-emoticons/png/u1f608.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f608.png rename to gajim/data/emoticons/noto-emoticons/png/u1f608.png diff --git a/data/emoticons/noto-emoticons/png/u1f609.png b/gajim/data/emoticons/noto-emoticons/png/u1f609.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f609.png rename to gajim/data/emoticons/noto-emoticons/png/u1f609.png diff --git a/data/emoticons/noto-emoticons/png/u1f60a.png b/gajim/data/emoticons/noto-emoticons/png/u1f60a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f60a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f60a.png diff --git a/data/emoticons/noto-emoticons/png/u1f60b.png b/gajim/data/emoticons/noto-emoticons/png/u1f60b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f60b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f60b.png diff --git a/data/emoticons/noto-emoticons/png/u1f60c.png b/gajim/data/emoticons/noto-emoticons/png/u1f60c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f60c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f60c.png diff --git a/data/emoticons/noto-emoticons/png/u1f60d.png b/gajim/data/emoticons/noto-emoticons/png/u1f60d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f60d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f60d.png diff --git a/data/emoticons/noto-emoticons/png/u1f60e.png b/gajim/data/emoticons/noto-emoticons/png/u1f60e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f60e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f60e.png diff --git a/data/emoticons/noto-emoticons/png/u1f60f.png b/gajim/data/emoticons/noto-emoticons/png/u1f60f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f60f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f60f.png diff --git a/data/emoticons/noto-emoticons/png/u1f610.png b/gajim/data/emoticons/noto-emoticons/png/u1f610.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f610.png rename to gajim/data/emoticons/noto-emoticons/png/u1f610.png diff --git a/data/emoticons/noto-emoticons/png/u1f611.png b/gajim/data/emoticons/noto-emoticons/png/u1f611.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f611.png rename to gajim/data/emoticons/noto-emoticons/png/u1f611.png diff --git a/data/emoticons/noto-emoticons/png/u1f612.png b/gajim/data/emoticons/noto-emoticons/png/u1f612.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f612.png rename to gajim/data/emoticons/noto-emoticons/png/u1f612.png diff --git a/data/emoticons/noto-emoticons/png/u1f613.png b/gajim/data/emoticons/noto-emoticons/png/u1f613.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f613.png rename to gajim/data/emoticons/noto-emoticons/png/u1f613.png diff --git a/data/emoticons/noto-emoticons/png/u1f614.png b/gajim/data/emoticons/noto-emoticons/png/u1f614.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f614.png rename to gajim/data/emoticons/noto-emoticons/png/u1f614.png diff --git a/data/emoticons/noto-emoticons/png/u1f615.png b/gajim/data/emoticons/noto-emoticons/png/u1f615.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f615.png rename to gajim/data/emoticons/noto-emoticons/png/u1f615.png diff --git a/data/emoticons/noto-emoticons/png/u1f616.png b/gajim/data/emoticons/noto-emoticons/png/u1f616.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f616.png rename to gajim/data/emoticons/noto-emoticons/png/u1f616.png diff --git a/data/emoticons/noto-emoticons/png/u1f617.png b/gajim/data/emoticons/noto-emoticons/png/u1f617.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f617.png rename to gajim/data/emoticons/noto-emoticons/png/u1f617.png diff --git a/data/emoticons/noto-emoticons/png/u1f618.png b/gajim/data/emoticons/noto-emoticons/png/u1f618.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f618.png rename to gajim/data/emoticons/noto-emoticons/png/u1f618.png diff --git a/data/emoticons/noto-emoticons/png/u1f619.png b/gajim/data/emoticons/noto-emoticons/png/u1f619.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f619.png rename to gajim/data/emoticons/noto-emoticons/png/u1f619.png diff --git a/data/emoticons/noto-emoticons/png/u1f61a.png b/gajim/data/emoticons/noto-emoticons/png/u1f61a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f61a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f61a.png diff --git a/data/emoticons/noto-emoticons/png/u1f61b.png b/gajim/data/emoticons/noto-emoticons/png/u1f61b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f61b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f61b.png diff --git a/data/emoticons/noto-emoticons/png/u1f61c.png b/gajim/data/emoticons/noto-emoticons/png/u1f61c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f61c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f61c.png diff --git a/data/emoticons/noto-emoticons/png/u1f61d.png b/gajim/data/emoticons/noto-emoticons/png/u1f61d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f61d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f61d.png diff --git a/data/emoticons/noto-emoticons/png/u1f61e.png b/gajim/data/emoticons/noto-emoticons/png/u1f61e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f61e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f61e.png diff --git a/data/emoticons/noto-emoticons/png/u1f61f.png b/gajim/data/emoticons/noto-emoticons/png/u1f61f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f61f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f61f.png diff --git a/data/emoticons/noto-emoticons/png/u1f620.png b/gajim/data/emoticons/noto-emoticons/png/u1f620.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f620.png rename to gajim/data/emoticons/noto-emoticons/png/u1f620.png diff --git a/data/emoticons/noto-emoticons/png/u1f621.png b/gajim/data/emoticons/noto-emoticons/png/u1f621.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f621.png rename to gajim/data/emoticons/noto-emoticons/png/u1f621.png diff --git a/data/emoticons/noto-emoticons/png/u1f622.png b/gajim/data/emoticons/noto-emoticons/png/u1f622.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f622.png rename to gajim/data/emoticons/noto-emoticons/png/u1f622.png diff --git a/data/emoticons/noto-emoticons/png/u1f623.png b/gajim/data/emoticons/noto-emoticons/png/u1f623.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f623.png rename to gajim/data/emoticons/noto-emoticons/png/u1f623.png diff --git a/data/emoticons/noto-emoticons/png/u1f624.png b/gajim/data/emoticons/noto-emoticons/png/u1f624.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f624.png rename to gajim/data/emoticons/noto-emoticons/png/u1f624.png diff --git a/data/emoticons/noto-emoticons/png/u1f625.png b/gajim/data/emoticons/noto-emoticons/png/u1f625.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f625.png rename to gajim/data/emoticons/noto-emoticons/png/u1f625.png diff --git a/data/emoticons/noto-emoticons/png/u1f626.png b/gajim/data/emoticons/noto-emoticons/png/u1f626.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f626.png rename to gajim/data/emoticons/noto-emoticons/png/u1f626.png diff --git a/data/emoticons/noto-emoticons/png/u1f627.png b/gajim/data/emoticons/noto-emoticons/png/u1f627.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f627.png rename to gajim/data/emoticons/noto-emoticons/png/u1f627.png diff --git a/data/emoticons/noto-emoticons/png/u1f628.png b/gajim/data/emoticons/noto-emoticons/png/u1f628.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f628.png rename to gajim/data/emoticons/noto-emoticons/png/u1f628.png diff --git a/data/emoticons/noto-emoticons/png/u1f629.png b/gajim/data/emoticons/noto-emoticons/png/u1f629.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f629.png rename to gajim/data/emoticons/noto-emoticons/png/u1f629.png diff --git a/data/emoticons/noto-emoticons/png/u1f62a.png b/gajim/data/emoticons/noto-emoticons/png/u1f62a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f62a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f62a.png diff --git a/data/emoticons/noto-emoticons/png/u1f62b.png b/gajim/data/emoticons/noto-emoticons/png/u1f62b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f62b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f62b.png diff --git a/data/emoticons/noto-emoticons/png/u1f62c.png b/gajim/data/emoticons/noto-emoticons/png/u1f62c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f62c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f62c.png diff --git a/data/emoticons/noto-emoticons/png/u1f62d.png b/gajim/data/emoticons/noto-emoticons/png/u1f62d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f62d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f62d.png diff --git a/data/emoticons/noto-emoticons/png/u1f62e.png b/gajim/data/emoticons/noto-emoticons/png/u1f62e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f62e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f62e.png diff --git a/data/emoticons/noto-emoticons/png/u1f62f.png b/gajim/data/emoticons/noto-emoticons/png/u1f62f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f62f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f62f.png diff --git a/data/emoticons/noto-emoticons/png/u1f630.png b/gajim/data/emoticons/noto-emoticons/png/u1f630.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f630.png rename to gajim/data/emoticons/noto-emoticons/png/u1f630.png diff --git a/data/emoticons/noto-emoticons/png/u1f631.png b/gajim/data/emoticons/noto-emoticons/png/u1f631.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f631.png rename to gajim/data/emoticons/noto-emoticons/png/u1f631.png diff --git a/data/emoticons/noto-emoticons/png/u1f632.png b/gajim/data/emoticons/noto-emoticons/png/u1f632.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f632.png rename to gajim/data/emoticons/noto-emoticons/png/u1f632.png diff --git a/data/emoticons/noto-emoticons/png/u1f633.png b/gajim/data/emoticons/noto-emoticons/png/u1f633.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f633.png rename to gajim/data/emoticons/noto-emoticons/png/u1f633.png diff --git a/data/emoticons/noto-emoticons/png/u1f634.png b/gajim/data/emoticons/noto-emoticons/png/u1f634.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f634.png rename to gajim/data/emoticons/noto-emoticons/png/u1f634.png diff --git a/data/emoticons/noto-emoticons/png/u1f635.png b/gajim/data/emoticons/noto-emoticons/png/u1f635.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f635.png rename to gajim/data/emoticons/noto-emoticons/png/u1f635.png diff --git a/data/emoticons/noto-emoticons/png/u1f636.png b/gajim/data/emoticons/noto-emoticons/png/u1f636.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f636.png rename to gajim/data/emoticons/noto-emoticons/png/u1f636.png diff --git a/data/emoticons/noto-emoticons/png/u1f637.png b/gajim/data/emoticons/noto-emoticons/png/u1f637.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f637.png rename to gajim/data/emoticons/noto-emoticons/png/u1f637.png diff --git a/data/emoticons/noto-emoticons/png/u1f638.png b/gajim/data/emoticons/noto-emoticons/png/u1f638.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f638.png rename to gajim/data/emoticons/noto-emoticons/png/u1f638.png diff --git a/data/emoticons/noto-emoticons/png/u1f639.png b/gajim/data/emoticons/noto-emoticons/png/u1f639.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f639.png rename to gajim/data/emoticons/noto-emoticons/png/u1f639.png diff --git a/data/emoticons/noto-emoticons/png/u1f63a.png b/gajim/data/emoticons/noto-emoticons/png/u1f63a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f63a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f63a.png diff --git a/data/emoticons/noto-emoticons/png/u1f63b.png b/gajim/data/emoticons/noto-emoticons/png/u1f63b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f63b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f63b.png diff --git a/data/emoticons/noto-emoticons/png/u1f63c.png b/gajim/data/emoticons/noto-emoticons/png/u1f63c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f63c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f63c.png diff --git a/data/emoticons/noto-emoticons/png/u1f63d.png b/gajim/data/emoticons/noto-emoticons/png/u1f63d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f63d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f63d.png diff --git a/data/emoticons/noto-emoticons/png/u1f63e.png b/gajim/data/emoticons/noto-emoticons/png/u1f63e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f63e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f63e.png diff --git a/data/emoticons/noto-emoticons/png/u1f63f.png b/gajim/data/emoticons/noto-emoticons/png/u1f63f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f63f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f63f.png diff --git a/data/emoticons/noto-emoticons/png/u1f640.png b/gajim/data/emoticons/noto-emoticons/png/u1f640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f640.png diff --git a/data/emoticons/noto-emoticons/png/u1f641.png b/gajim/data/emoticons/noto-emoticons/png/u1f641.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f641.png rename to gajim/data/emoticons/noto-emoticons/png/u1f641.png diff --git a/data/emoticons/noto-emoticons/png/u1f642.png b/gajim/data/emoticons/noto-emoticons/png/u1f642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f642.png diff --git a/data/emoticons/noto-emoticons/png/u1f643.png b/gajim/data/emoticons/noto-emoticons/png/u1f643.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f643.png rename to gajim/data/emoticons/noto-emoticons/png/u1f643.png diff --git a/data/emoticons/noto-emoticons/png/u1f644.png b/gajim/data/emoticons/noto-emoticons/png/u1f644.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f644.png rename to gajim/data/emoticons/noto-emoticons/png/u1f644.png diff --git a/data/emoticons/noto-emoticons/png/u1f645.png b/gajim/data/emoticons/noto-emoticons/png/u1f645.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f645_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f645_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f645_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f645_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f646.png b/gajim/data/emoticons/noto-emoticons/png/u1f646.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f646_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f646_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f646_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f646_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f647.png b/gajim/data/emoticons/noto-emoticons/png/u1f647.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f647_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f647_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f647_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f647_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f648.png b/gajim/data/emoticons/noto-emoticons/png/u1f648.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f648.png rename to gajim/data/emoticons/noto-emoticons/png/u1f648.png diff --git a/data/emoticons/noto-emoticons/png/u1f649.png b/gajim/data/emoticons/noto-emoticons/png/u1f649.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f649.png rename to gajim/data/emoticons/noto-emoticons/png/u1f649.png diff --git a/data/emoticons/noto-emoticons/png/u1f64a.png b/gajim/data/emoticons/noto-emoticons/png/u1f64a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64a.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64b_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64b_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64b_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64b_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64c.png b/gajim/data/emoticons/noto-emoticons/png/u1f64c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64c.png diff --git a/data/emoticons/noto-emoticons/png/u1f64c_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64c_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f64c_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64c_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f64c_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64c_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f64c_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64c_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f64c_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64c_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64c_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64d_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64d_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64d_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64d_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f64e_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f64e_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64e_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64e_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f64f.png b/gajim/data/emoticons/noto-emoticons/png/u1f64f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64f.png diff --git a/data/emoticons/noto-emoticons/png/u1f64f_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64f_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f64f_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64f_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f64f_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64f_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f64f_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64f_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f64f_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f64f_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f64f_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f680.png b/gajim/data/emoticons/noto-emoticons/png/u1f680.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f680.png rename to gajim/data/emoticons/noto-emoticons/png/u1f680.png diff --git a/data/emoticons/noto-emoticons/png/u1f681.png b/gajim/data/emoticons/noto-emoticons/png/u1f681.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f681.png rename to gajim/data/emoticons/noto-emoticons/png/u1f681.png diff --git a/data/emoticons/noto-emoticons/png/u1f682.png b/gajim/data/emoticons/noto-emoticons/png/u1f682.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f682.png rename to gajim/data/emoticons/noto-emoticons/png/u1f682.png diff --git a/data/emoticons/noto-emoticons/png/u1f683.png b/gajim/data/emoticons/noto-emoticons/png/u1f683.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f683.png rename to gajim/data/emoticons/noto-emoticons/png/u1f683.png diff --git a/data/emoticons/noto-emoticons/png/u1f684.png b/gajim/data/emoticons/noto-emoticons/png/u1f684.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f684.png rename to gajim/data/emoticons/noto-emoticons/png/u1f684.png diff --git a/data/emoticons/noto-emoticons/png/u1f685.png b/gajim/data/emoticons/noto-emoticons/png/u1f685.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f685.png rename to gajim/data/emoticons/noto-emoticons/png/u1f685.png diff --git a/data/emoticons/noto-emoticons/png/u1f686.png b/gajim/data/emoticons/noto-emoticons/png/u1f686.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f686.png rename to gajim/data/emoticons/noto-emoticons/png/u1f686.png diff --git a/data/emoticons/noto-emoticons/png/u1f687.png b/gajim/data/emoticons/noto-emoticons/png/u1f687.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f687.png rename to gajim/data/emoticons/noto-emoticons/png/u1f687.png diff --git a/data/emoticons/noto-emoticons/png/u1f688.png b/gajim/data/emoticons/noto-emoticons/png/u1f688.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f688.png rename to gajim/data/emoticons/noto-emoticons/png/u1f688.png diff --git a/data/emoticons/noto-emoticons/png/u1f689.png b/gajim/data/emoticons/noto-emoticons/png/u1f689.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f689.png rename to gajim/data/emoticons/noto-emoticons/png/u1f689.png diff --git a/data/emoticons/noto-emoticons/png/u1f68a.png b/gajim/data/emoticons/noto-emoticons/png/u1f68a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f68a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f68a.png diff --git a/data/emoticons/noto-emoticons/png/u1f68b.png b/gajim/data/emoticons/noto-emoticons/png/u1f68b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f68b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f68b.png diff --git a/data/emoticons/noto-emoticons/png/u1f68c.png b/gajim/data/emoticons/noto-emoticons/png/u1f68c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f68c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f68c.png diff --git a/data/emoticons/noto-emoticons/png/u1f68d.png b/gajim/data/emoticons/noto-emoticons/png/u1f68d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f68d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f68d.png diff --git a/data/emoticons/noto-emoticons/png/u1f68e.png b/gajim/data/emoticons/noto-emoticons/png/u1f68e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f68e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f68e.png diff --git a/data/emoticons/noto-emoticons/png/u1f68f.png b/gajim/data/emoticons/noto-emoticons/png/u1f68f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f68f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f68f.png diff --git a/data/emoticons/noto-emoticons/png/u1f690.png b/gajim/data/emoticons/noto-emoticons/png/u1f690.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f690.png rename to gajim/data/emoticons/noto-emoticons/png/u1f690.png diff --git a/data/emoticons/noto-emoticons/png/u1f691.png b/gajim/data/emoticons/noto-emoticons/png/u1f691.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f691.png rename to gajim/data/emoticons/noto-emoticons/png/u1f691.png diff --git a/data/emoticons/noto-emoticons/png/u1f692.png b/gajim/data/emoticons/noto-emoticons/png/u1f692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f692.png rename to gajim/data/emoticons/noto-emoticons/png/u1f692.png diff --git a/data/emoticons/noto-emoticons/png/u1f693.png b/gajim/data/emoticons/noto-emoticons/png/u1f693.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f693.png rename to gajim/data/emoticons/noto-emoticons/png/u1f693.png diff --git a/data/emoticons/noto-emoticons/png/u1f694.png b/gajim/data/emoticons/noto-emoticons/png/u1f694.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f694.png rename to gajim/data/emoticons/noto-emoticons/png/u1f694.png diff --git a/data/emoticons/noto-emoticons/png/u1f695.png b/gajim/data/emoticons/noto-emoticons/png/u1f695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f695.png rename to gajim/data/emoticons/noto-emoticons/png/u1f695.png diff --git a/data/emoticons/noto-emoticons/png/u1f696.png b/gajim/data/emoticons/noto-emoticons/png/u1f696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f696.png rename to gajim/data/emoticons/noto-emoticons/png/u1f696.png diff --git a/data/emoticons/noto-emoticons/png/u1f697.png b/gajim/data/emoticons/noto-emoticons/png/u1f697.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f697.png rename to gajim/data/emoticons/noto-emoticons/png/u1f697.png diff --git a/data/emoticons/noto-emoticons/png/u1f698.png b/gajim/data/emoticons/noto-emoticons/png/u1f698.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f698.png rename to gajim/data/emoticons/noto-emoticons/png/u1f698.png diff --git a/data/emoticons/noto-emoticons/png/u1f699.png b/gajim/data/emoticons/noto-emoticons/png/u1f699.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f699.png rename to gajim/data/emoticons/noto-emoticons/png/u1f699.png diff --git a/data/emoticons/noto-emoticons/png/u1f69a.png b/gajim/data/emoticons/noto-emoticons/png/u1f69a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f69a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f69a.png diff --git a/data/emoticons/noto-emoticons/png/u1f69b.png b/gajim/data/emoticons/noto-emoticons/png/u1f69b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f69b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f69b.png diff --git a/data/emoticons/noto-emoticons/png/u1f69c.png b/gajim/data/emoticons/noto-emoticons/png/u1f69c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f69c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f69c.png diff --git a/data/emoticons/noto-emoticons/png/u1f69d.png b/gajim/data/emoticons/noto-emoticons/png/u1f69d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f69d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f69d.png diff --git a/data/emoticons/noto-emoticons/png/u1f69e.png b/gajim/data/emoticons/noto-emoticons/png/u1f69e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f69e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f69e.png diff --git a/data/emoticons/noto-emoticons/png/u1f69f.png b/gajim/data/emoticons/noto-emoticons/png/u1f69f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f69f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f69f.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a0.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a0.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a1.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a1.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a2.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a2.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a3_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a3_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a3_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a3_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a4.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a4.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a5.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a5.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a6.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a6.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a7.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a7.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a8.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a8.png diff --git a/data/emoticons/noto-emoticons/png/u1f6a9.png b/gajim/data/emoticons/noto-emoticons/png/u1f6a9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6a9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6a9.png diff --git a/data/emoticons/noto-emoticons/png/u1f6aa.png b/gajim/data/emoticons/noto-emoticons/png/u1f6aa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6aa.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6aa.png diff --git a/data/emoticons/noto-emoticons/png/u1f6ab.png b/gajim/data/emoticons/noto-emoticons/png/u1f6ab.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6ab.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6ab.png diff --git a/data/emoticons/noto-emoticons/png/u1f6ac.png b/gajim/data/emoticons/noto-emoticons/png/u1f6ac.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6ac.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6ac.png diff --git a/data/emoticons/noto-emoticons/png/u1f6ad.png b/gajim/data/emoticons/noto-emoticons/png/u1f6ad.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6ad.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6ad.png diff --git a/data/emoticons/noto-emoticons/png/u1f6ae.png b/gajim/data/emoticons/noto-emoticons/png/u1f6ae.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6ae.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6ae.png diff --git a/data/emoticons/noto-emoticons/png/u1f6af.png b/gajim/data/emoticons/noto-emoticons/png/u1f6af.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6af.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6af.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b0.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b0.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b1.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b1.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b2.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b2.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b3.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b3.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b4_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b4_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b4_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b4_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b5_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b5_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b5_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b5_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b6_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b6_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b6_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b6_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b7.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b7.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b7.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b8.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b8.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b8.png diff --git a/data/emoticons/noto-emoticons/png/u1f6b9.png b/gajim/data/emoticons/noto-emoticons/png/u1f6b9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6b9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6b9.png diff --git a/data/emoticons/noto-emoticons/png/u1f6ba.png b/gajim/data/emoticons/noto-emoticons/png/u1f6ba.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6ba.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6ba.png diff --git a/data/emoticons/noto-emoticons/png/u1f6bb.png b/gajim/data/emoticons/noto-emoticons/png/u1f6bb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6bb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6bb.png diff --git a/data/emoticons/noto-emoticons/png/u1f6bc.png b/gajim/data/emoticons/noto-emoticons/png/u1f6bc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6bc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6bc.png diff --git a/data/emoticons/noto-emoticons/png/u1f6bd.png b/gajim/data/emoticons/noto-emoticons/png/u1f6bd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6bd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6bd.png diff --git a/data/emoticons/noto-emoticons/png/u1f6be.png b/gajim/data/emoticons/noto-emoticons/png/u1f6be.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6be.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6be.png diff --git a/data/emoticons/noto-emoticons/png/u1f6bf.png b/gajim/data/emoticons/noto-emoticons/png/u1f6bf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6bf.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6bf.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c0.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c0.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c0_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c0_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c0_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c0_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c0_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c0_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c0_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c0_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c0_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c0_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c0_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c1.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c1.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c2.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c2.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c3.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c3.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c4.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c4.png diff --git a/data/emoticons/noto-emoticons/png/u1f6c5.png b/gajim/data/emoticons/noto-emoticons/png/u1f6c5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6c5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6c5.png diff --git a/data/emoticons/noto-emoticons/png/u1f6cb.png b/gajim/data/emoticons/noto-emoticons/png/u1f6cb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6cb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6cb.png diff --git a/data/emoticons/noto-emoticons/png/u1f6cc.png b/gajim/data/emoticons/noto-emoticons/png/u1f6cc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6cc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6cc.png diff --git a/data/emoticons/noto-emoticons/png/u1f6cd.png b/gajim/data/emoticons/noto-emoticons/png/u1f6cd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6cd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6cd.png diff --git a/data/emoticons/noto-emoticons/png/u1f6ce.png b/gajim/data/emoticons/noto-emoticons/png/u1f6ce.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6ce.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6ce.png diff --git a/data/emoticons/noto-emoticons/png/u1f6cf.png b/gajim/data/emoticons/noto-emoticons/png/u1f6cf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6cf.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6cf.png diff --git a/data/emoticons/noto-emoticons/png/u1f6d0.png b/gajim/data/emoticons/noto-emoticons/png/u1f6d0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6d0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6d0.png diff --git a/data/emoticons/noto-emoticons/png/u1f6d1.png b/gajim/data/emoticons/noto-emoticons/png/u1f6d1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6d1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6d1.png diff --git a/data/emoticons/noto-emoticons/png/u1f6d2.png b/gajim/data/emoticons/noto-emoticons/png/u1f6d2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6d2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6d2.png diff --git a/data/emoticons/noto-emoticons/png/u1f6e0.png b/gajim/data/emoticons/noto-emoticons/png/u1f6e0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6e0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6e0.png diff --git a/data/emoticons/noto-emoticons/png/u1f6e1.png b/gajim/data/emoticons/noto-emoticons/png/u1f6e1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6e1.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6e1.png diff --git a/data/emoticons/noto-emoticons/png/u1f6e2.png b/gajim/data/emoticons/noto-emoticons/png/u1f6e2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6e2.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6e2.png diff --git a/data/emoticons/noto-emoticons/png/u1f6e3.png b/gajim/data/emoticons/noto-emoticons/png/u1f6e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6e3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6e3.png diff --git a/data/emoticons/noto-emoticons/png/u1f6e4.png b/gajim/data/emoticons/noto-emoticons/png/u1f6e4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6e4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6e4.png diff --git a/data/emoticons/noto-emoticons/png/u1f6e5.png b/gajim/data/emoticons/noto-emoticons/png/u1f6e5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6e5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6e5.png diff --git a/data/emoticons/noto-emoticons/png/u1f6e9.png b/gajim/data/emoticons/noto-emoticons/png/u1f6e9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6e9.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6e9.png diff --git a/data/emoticons/noto-emoticons/png/u1f6eb.png b/gajim/data/emoticons/noto-emoticons/png/u1f6eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6eb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6eb.png diff --git a/data/emoticons/noto-emoticons/png/u1f6ec.png b/gajim/data/emoticons/noto-emoticons/png/u1f6ec.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6ec.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6ec.png diff --git a/data/emoticons/noto-emoticons/png/u1f6f0.png b/gajim/data/emoticons/noto-emoticons/png/u1f6f0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6f0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6f0.png diff --git a/data/emoticons/noto-emoticons/png/u1f6f3.png b/gajim/data/emoticons/noto-emoticons/png/u1f6f3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6f3.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6f3.png diff --git a/data/emoticons/noto-emoticons/png/u1f6f4.png b/gajim/data/emoticons/noto-emoticons/png/u1f6f4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6f4.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6f4.png diff --git a/data/emoticons/noto-emoticons/png/u1f6f5.png b/gajim/data/emoticons/noto-emoticons/png/u1f6f5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6f5.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6f5.png diff --git a/data/emoticons/noto-emoticons/png/u1f6f6.png b/gajim/data/emoticons/noto-emoticons/png/u1f6f6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f6f6.png rename to gajim/data/emoticons/noto-emoticons/png/u1f6f6.png diff --git a/data/emoticons/noto-emoticons/png/u1f910.png b/gajim/data/emoticons/noto-emoticons/png/u1f910.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f910.png rename to gajim/data/emoticons/noto-emoticons/png/u1f910.png diff --git a/data/emoticons/noto-emoticons/png/u1f911.png b/gajim/data/emoticons/noto-emoticons/png/u1f911.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f911.png rename to gajim/data/emoticons/noto-emoticons/png/u1f911.png diff --git a/data/emoticons/noto-emoticons/png/u1f912.png b/gajim/data/emoticons/noto-emoticons/png/u1f912.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f912.png rename to gajim/data/emoticons/noto-emoticons/png/u1f912.png diff --git a/data/emoticons/noto-emoticons/png/u1f913.png b/gajim/data/emoticons/noto-emoticons/png/u1f913.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f913.png rename to gajim/data/emoticons/noto-emoticons/png/u1f913.png diff --git a/data/emoticons/noto-emoticons/png/u1f914.png b/gajim/data/emoticons/noto-emoticons/png/u1f914.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f914.png rename to gajim/data/emoticons/noto-emoticons/png/u1f914.png diff --git a/data/emoticons/noto-emoticons/png/u1f915.png b/gajim/data/emoticons/noto-emoticons/png/u1f915.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f915.png rename to gajim/data/emoticons/noto-emoticons/png/u1f915.png diff --git a/data/emoticons/noto-emoticons/png/u1f916.png b/gajim/data/emoticons/noto-emoticons/png/u1f916.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f916.png rename to gajim/data/emoticons/noto-emoticons/png/u1f916.png diff --git a/data/emoticons/noto-emoticons/png/u1f917.png b/gajim/data/emoticons/noto-emoticons/png/u1f917.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f917.png rename to gajim/data/emoticons/noto-emoticons/png/u1f917.png diff --git a/data/emoticons/noto-emoticons/png/u1f918.png b/gajim/data/emoticons/noto-emoticons/png/u1f918.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f918.png rename to gajim/data/emoticons/noto-emoticons/png/u1f918.png diff --git a/data/emoticons/noto-emoticons/png/u1f918_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f918_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f918_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f918_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f918_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f918_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f918_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f918_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f918_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f918_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f918_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f918_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f918_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f918_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f918_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f918_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f918_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f918_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f918_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f918_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f919.png b/gajim/data/emoticons/noto-emoticons/png/u1f919.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f919.png rename to gajim/data/emoticons/noto-emoticons/png/u1f919.png diff --git a/data/emoticons/noto-emoticons/png/u1f919_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f919_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f919_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f919_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f919_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f919_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f919_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f919_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f919_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f919_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f919_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f919_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f919_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f919_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f919_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f919_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f919_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f919_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f919_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f919_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f91a.png b/gajim/data/emoticons/noto-emoticons/png/u1f91a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91a.png diff --git a/data/emoticons/noto-emoticons/png/u1f91a_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91a_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f91a_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91a_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f91a_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91a_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f91a_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91a_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f91a_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91a_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91a_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f91b.png b/gajim/data/emoticons/noto-emoticons/png/u1f91b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91b.png diff --git a/data/emoticons/noto-emoticons/png/u1f91b_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91b_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f91b_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91b_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f91b_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91b_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f91b_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91b_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f91b_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91b_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91b_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f91c.png b/gajim/data/emoticons/noto-emoticons/png/u1f91c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91c.png diff --git a/data/emoticons/noto-emoticons/png/u1f91c_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91c_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f91c_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91c_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f91c_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91c_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f91c_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91c_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f91c_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91c_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91c_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f91d.png b/gajim/data/emoticons/noto-emoticons/png/u1f91d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91d.png diff --git a/data/emoticons/noto-emoticons/png/u1f91d_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91d_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f91d_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91d_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f91d_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91d_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f91d_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91d_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f91d_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91d_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91d_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f91e.png b/gajim/data/emoticons/noto-emoticons/png/u1f91e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91e.png diff --git a/data/emoticons/noto-emoticons/png/u1f91e_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91e_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f91e_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91e_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f91e_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91e_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f91e_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91e_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f91e_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f91e_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f91e_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f920.png b/gajim/data/emoticons/noto-emoticons/png/u1f920.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f920.png rename to gajim/data/emoticons/noto-emoticons/png/u1f920.png diff --git a/data/emoticons/noto-emoticons/png/u1f921.png b/gajim/data/emoticons/noto-emoticons/png/u1f921.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f921.png rename to gajim/data/emoticons/noto-emoticons/png/u1f921.png diff --git a/data/emoticons/noto-emoticons/png/u1f922.png b/gajim/data/emoticons/noto-emoticons/png/u1f922.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f922.png rename to gajim/data/emoticons/noto-emoticons/png/u1f922.png diff --git a/data/emoticons/noto-emoticons/png/u1f923.png b/gajim/data/emoticons/noto-emoticons/png/u1f923.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f923.png rename to gajim/data/emoticons/noto-emoticons/png/u1f923.png diff --git a/data/emoticons/noto-emoticons/png/u1f924.png b/gajim/data/emoticons/noto-emoticons/png/u1f924.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f924.png rename to gajim/data/emoticons/noto-emoticons/png/u1f924.png diff --git a/data/emoticons/noto-emoticons/png/u1f925.png b/gajim/data/emoticons/noto-emoticons/png/u1f925.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f925.png rename to gajim/data/emoticons/noto-emoticons/png/u1f925.png diff --git a/data/emoticons/noto-emoticons/png/u1f926.png b/gajim/data/emoticons/noto-emoticons/png/u1f926.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f926_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f926_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f926_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f926_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f927.png b/gajim/data/emoticons/noto-emoticons/png/u1f927.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f927.png rename to gajim/data/emoticons/noto-emoticons/png/u1f927.png diff --git a/data/emoticons/noto-emoticons/png/u1f930.png b/gajim/data/emoticons/noto-emoticons/png/u1f930.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f930.png rename to gajim/data/emoticons/noto-emoticons/png/u1f930.png diff --git a/data/emoticons/noto-emoticons/png/u1f930_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f930_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f930_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f930_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f930_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f930_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f930_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f930_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f930_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f930_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f930_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f930_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f930_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f930_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f930_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f930_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f930_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f930_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f930_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f930_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f933.png b/gajim/data/emoticons/noto-emoticons/png/u1f933.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f933.png rename to gajim/data/emoticons/noto-emoticons/png/u1f933.png diff --git a/data/emoticons/noto-emoticons/png/u1f933_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f933_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f933_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f933_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f933_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f933_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f933_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f933_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f933_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f933_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f933_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f933_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f933_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f933_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f933_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f933_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f933_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f933_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f933_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f933_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f934.png b/gajim/data/emoticons/noto-emoticons/png/u1f934.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f934.png rename to gajim/data/emoticons/noto-emoticons/png/u1f934.png diff --git a/data/emoticons/noto-emoticons/png/u1f934_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f934_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f934_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f934_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f934_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f934_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f934_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f934_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f934_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f934_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f934_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f934_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f934_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f934_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f934_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f934_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f934_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f934_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f934_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f934_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f935.png b/gajim/data/emoticons/noto-emoticons/png/u1f935.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f935.png rename to gajim/data/emoticons/noto-emoticons/png/u1f935.png diff --git a/data/emoticons/noto-emoticons/png/u1f935_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f935_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f935_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f935_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f935_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f935_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f935_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f935_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f935_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f935_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f935_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f935_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f935_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f935_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f935_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f935_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f935_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f935_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f935_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f935_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f936.png b/gajim/data/emoticons/noto-emoticons/png/u1f936.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f936.png rename to gajim/data/emoticons/noto-emoticons/png/u1f936.png diff --git a/data/emoticons/noto-emoticons/png/u1f936_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f936_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f936_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f936_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f936_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f936_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f936_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f936_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f936_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f936_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f936_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f936_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f936_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f936_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f936_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f936_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f936_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f936_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f936_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f936_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f937.png b/gajim/data/emoticons/noto-emoticons/png/u1f937.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f937_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f937_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f937_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f937_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f938.png b/gajim/data/emoticons/noto-emoticons/png/u1f938.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f938_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f938_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f938_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f938_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f939.png b/gajim/data/emoticons/noto-emoticons/png/u1f939.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f939_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f939_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f939_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f939_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93a.png b/gajim/data/emoticons/noto-emoticons/png/u1f93a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93a.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93c_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93c_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93c_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93c_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93d_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93d_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93d_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93d_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u1f93e_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u1f93e_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f93e_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u1f93e_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u1f940.png b/gajim/data/emoticons/noto-emoticons/png/u1f940.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f940.png rename to gajim/data/emoticons/noto-emoticons/png/u1f940.png diff --git a/data/emoticons/noto-emoticons/png/u1f941.png b/gajim/data/emoticons/noto-emoticons/png/u1f941.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f941.png rename to gajim/data/emoticons/noto-emoticons/png/u1f941.png diff --git a/data/emoticons/noto-emoticons/png/u1f942.png b/gajim/data/emoticons/noto-emoticons/png/u1f942.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f942.png rename to gajim/data/emoticons/noto-emoticons/png/u1f942.png diff --git a/data/emoticons/noto-emoticons/png/u1f943.png b/gajim/data/emoticons/noto-emoticons/png/u1f943.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f943.png rename to gajim/data/emoticons/noto-emoticons/png/u1f943.png diff --git a/data/emoticons/noto-emoticons/png/u1f944.png b/gajim/data/emoticons/noto-emoticons/png/u1f944.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f944.png rename to gajim/data/emoticons/noto-emoticons/png/u1f944.png diff --git a/data/emoticons/noto-emoticons/png/u1f945.png b/gajim/data/emoticons/noto-emoticons/png/u1f945.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f945.png rename to gajim/data/emoticons/noto-emoticons/png/u1f945.png diff --git a/data/emoticons/noto-emoticons/png/u1f947.png b/gajim/data/emoticons/noto-emoticons/png/u1f947.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f947.png rename to gajim/data/emoticons/noto-emoticons/png/u1f947.png diff --git a/data/emoticons/noto-emoticons/png/u1f948.png b/gajim/data/emoticons/noto-emoticons/png/u1f948.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f948.png rename to gajim/data/emoticons/noto-emoticons/png/u1f948.png diff --git a/data/emoticons/noto-emoticons/png/u1f949.png b/gajim/data/emoticons/noto-emoticons/png/u1f949.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f949.png rename to gajim/data/emoticons/noto-emoticons/png/u1f949.png diff --git a/data/emoticons/noto-emoticons/png/u1f94a.png b/gajim/data/emoticons/noto-emoticons/png/u1f94a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f94a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f94a.png diff --git a/data/emoticons/noto-emoticons/png/u1f94b.png b/gajim/data/emoticons/noto-emoticons/png/u1f94b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f94b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f94b.png diff --git a/data/emoticons/noto-emoticons/png/u1f950.png b/gajim/data/emoticons/noto-emoticons/png/u1f950.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f950.png rename to gajim/data/emoticons/noto-emoticons/png/u1f950.png diff --git a/data/emoticons/noto-emoticons/png/u1f951.png b/gajim/data/emoticons/noto-emoticons/png/u1f951.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f951.png rename to gajim/data/emoticons/noto-emoticons/png/u1f951.png diff --git a/data/emoticons/noto-emoticons/png/u1f952.png b/gajim/data/emoticons/noto-emoticons/png/u1f952.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f952.png rename to gajim/data/emoticons/noto-emoticons/png/u1f952.png diff --git a/data/emoticons/noto-emoticons/png/u1f953.png b/gajim/data/emoticons/noto-emoticons/png/u1f953.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f953.png rename to gajim/data/emoticons/noto-emoticons/png/u1f953.png diff --git a/data/emoticons/noto-emoticons/png/u1f954.png b/gajim/data/emoticons/noto-emoticons/png/u1f954.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f954.png rename to gajim/data/emoticons/noto-emoticons/png/u1f954.png diff --git a/data/emoticons/noto-emoticons/png/u1f955.png b/gajim/data/emoticons/noto-emoticons/png/u1f955.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f955.png rename to gajim/data/emoticons/noto-emoticons/png/u1f955.png diff --git a/data/emoticons/noto-emoticons/png/u1f956.png b/gajim/data/emoticons/noto-emoticons/png/u1f956.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f956.png rename to gajim/data/emoticons/noto-emoticons/png/u1f956.png diff --git a/data/emoticons/noto-emoticons/png/u1f957.png b/gajim/data/emoticons/noto-emoticons/png/u1f957.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f957.png rename to gajim/data/emoticons/noto-emoticons/png/u1f957.png diff --git a/data/emoticons/noto-emoticons/png/u1f958.png b/gajim/data/emoticons/noto-emoticons/png/u1f958.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f958.png rename to gajim/data/emoticons/noto-emoticons/png/u1f958.png diff --git a/data/emoticons/noto-emoticons/png/u1f959.png b/gajim/data/emoticons/noto-emoticons/png/u1f959.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f959.png rename to gajim/data/emoticons/noto-emoticons/png/u1f959.png diff --git a/data/emoticons/noto-emoticons/png/u1f95a.png b/gajim/data/emoticons/noto-emoticons/png/u1f95a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f95a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f95a.png diff --git a/data/emoticons/noto-emoticons/png/u1f95b.png b/gajim/data/emoticons/noto-emoticons/png/u1f95b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f95b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f95b.png diff --git a/data/emoticons/noto-emoticons/png/u1f95c.png b/gajim/data/emoticons/noto-emoticons/png/u1f95c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f95c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f95c.png diff --git a/data/emoticons/noto-emoticons/png/u1f95d.png b/gajim/data/emoticons/noto-emoticons/png/u1f95d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f95d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f95d.png diff --git a/data/emoticons/noto-emoticons/png/u1f95e.png b/gajim/data/emoticons/noto-emoticons/png/u1f95e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f95e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f95e.png diff --git a/data/emoticons/noto-emoticons/png/u1f980.png b/gajim/data/emoticons/noto-emoticons/png/u1f980.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f980.png rename to gajim/data/emoticons/noto-emoticons/png/u1f980.png diff --git a/data/emoticons/noto-emoticons/png/u1f981.png b/gajim/data/emoticons/noto-emoticons/png/u1f981.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f981.png rename to gajim/data/emoticons/noto-emoticons/png/u1f981.png diff --git a/data/emoticons/noto-emoticons/png/u1f982.png b/gajim/data/emoticons/noto-emoticons/png/u1f982.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f982.png rename to gajim/data/emoticons/noto-emoticons/png/u1f982.png diff --git a/data/emoticons/noto-emoticons/png/u1f983.png b/gajim/data/emoticons/noto-emoticons/png/u1f983.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f983.png rename to gajim/data/emoticons/noto-emoticons/png/u1f983.png diff --git a/data/emoticons/noto-emoticons/png/u1f984.png b/gajim/data/emoticons/noto-emoticons/png/u1f984.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f984.png rename to gajim/data/emoticons/noto-emoticons/png/u1f984.png diff --git a/data/emoticons/noto-emoticons/png/u1f985.png b/gajim/data/emoticons/noto-emoticons/png/u1f985.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f985.png rename to gajim/data/emoticons/noto-emoticons/png/u1f985.png diff --git a/data/emoticons/noto-emoticons/png/u1f986.png b/gajim/data/emoticons/noto-emoticons/png/u1f986.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f986.png rename to gajim/data/emoticons/noto-emoticons/png/u1f986.png diff --git a/data/emoticons/noto-emoticons/png/u1f987.png b/gajim/data/emoticons/noto-emoticons/png/u1f987.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f987.png rename to gajim/data/emoticons/noto-emoticons/png/u1f987.png diff --git a/data/emoticons/noto-emoticons/png/u1f988.png b/gajim/data/emoticons/noto-emoticons/png/u1f988.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f988.png rename to gajim/data/emoticons/noto-emoticons/png/u1f988.png diff --git a/data/emoticons/noto-emoticons/png/u1f989.png b/gajim/data/emoticons/noto-emoticons/png/u1f989.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f989.png rename to gajim/data/emoticons/noto-emoticons/png/u1f989.png diff --git a/data/emoticons/noto-emoticons/png/u1f98a.png b/gajim/data/emoticons/noto-emoticons/png/u1f98a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f98a.png rename to gajim/data/emoticons/noto-emoticons/png/u1f98a.png diff --git a/data/emoticons/noto-emoticons/png/u1f98b.png b/gajim/data/emoticons/noto-emoticons/png/u1f98b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f98b.png rename to gajim/data/emoticons/noto-emoticons/png/u1f98b.png diff --git a/data/emoticons/noto-emoticons/png/u1f98c.png b/gajim/data/emoticons/noto-emoticons/png/u1f98c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f98c.png rename to gajim/data/emoticons/noto-emoticons/png/u1f98c.png diff --git a/data/emoticons/noto-emoticons/png/u1f98d.png b/gajim/data/emoticons/noto-emoticons/png/u1f98d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f98d.png rename to gajim/data/emoticons/noto-emoticons/png/u1f98d.png diff --git a/data/emoticons/noto-emoticons/png/u1f98e.png b/gajim/data/emoticons/noto-emoticons/png/u1f98e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f98e.png rename to gajim/data/emoticons/noto-emoticons/png/u1f98e.png diff --git a/data/emoticons/noto-emoticons/png/u1f98f.png b/gajim/data/emoticons/noto-emoticons/png/u1f98f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f98f.png rename to gajim/data/emoticons/noto-emoticons/png/u1f98f.png diff --git a/data/emoticons/noto-emoticons/png/u1f990.png b/gajim/data/emoticons/noto-emoticons/png/u1f990.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f990.png rename to gajim/data/emoticons/noto-emoticons/png/u1f990.png diff --git a/data/emoticons/noto-emoticons/png/u1f991.png b/gajim/data/emoticons/noto-emoticons/png/u1f991.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f991.png rename to gajim/data/emoticons/noto-emoticons/png/u1f991.png diff --git a/data/emoticons/noto-emoticons/png/u1f9c0.png b/gajim/data/emoticons/noto-emoticons/png/u1f9c0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u1f9c0.png rename to gajim/data/emoticons/noto-emoticons/png/u1f9c0.png diff --git a/data/emoticons/noto-emoticons/png/u203c.png b/gajim/data/emoticons/noto-emoticons/png/u203c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u203c.png rename to gajim/data/emoticons/noto-emoticons/png/u203c.png diff --git a/data/emoticons/noto-emoticons/png/u2049.png b/gajim/data/emoticons/noto-emoticons/png/u2049.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2049.png rename to gajim/data/emoticons/noto-emoticons/png/u2049.png diff --git a/data/emoticons/noto-emoticons/png/u20e3.png b/gajim/data/emoticons/noto-emoticons/png/u20e3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u20e3.png rename to gajim/data/emoticons/noto-emoticons/png/u20e3.png diff --git a/data/emoticons/noto-emoticons/png/u2122.png b/gajim/data/emoticons/noto-emoticons/png/u2122.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2122.png rename to gajim/data/emoticons/noto-emoticons/png/u2122.png diff --git a/data/emoticons/noto-emoticons/png/u2139.png b/gajim/data/emoticons/noto-emoticons/png/u2139.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2139.png rename to gajim/data/emoticons/noto-emoticons/png/u2139.png diff --git a/data/emoticons/noto-emoticons/png/u2194.png b/gajim/data/emoticons/noto-emoticons/png/u2194.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2194.png rename to gajim/data/emoticons/noto-emoticons/png/u2194.png diff --git a/data/emoticons/noto-emoticons/png/u2195.png b/gajim/data/emoticons/noto-emoticons/png/u2195.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2195.png rename to gajim/data/emoticons/noto-emoticons/png/u2195.png diff --git a/data/emoticons/noto-emoticons/png/u2196.png b/gajim/data/emoticons/noto-emoticons/png/u2196.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2196.png rename to gajim/data/emoticons/noto-emoticons/png/u2196.png diff --git a/data/emoticons/noto-emoticons/png/u2197.png b/gajim/data/emoticons/noto-emoticons/png/u2197.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2197.png rename to gajim/data/emoticons/noto-emoticons/png/u2197.png diff --git a/data/emoticons/noto-emoticons/png/u2198.png b/gajim/data/emoticons/noto-emoticons/png/u2198.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2198.png rename to gajim/data/emoticons/noto-emoticons/png/u2198.png diff --git a/data/emoticons/noto-emoticons/png/u2199.png b/gajim/data/emoticons/noto-emoticons/png/u2199.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2199.png rename to gajim/data/emoticons/noto-emoticons/png/u2199.png diff --git a/data/emoticons/noto-emoticons/png/u21a9.png b/gajim/data/emoticons/noto-emoticons/png/u21a9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u21a9.png rename to gajim/data/emoticons/noto-emoticons/png/u21a9.png diff --git a/data/emoticons/noto-emoticons/png/u21aa.png b/gajim/data/emoticons/noto-emoticons/png/u21aa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u21aa.png rename to gajim/data/emoticons/noto-emoticons/png/u21aa.png diff --git a/data/emoticons/noto-emoticons/png/u231a.png b/gajim/data/emoticons/noto-emoticons/png/u231a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u231a.png rename to gajim/data/emoticons/noto-emoticons/png/u231a.png diff --git a/data/emoticons/noto-emoticons/png/u231b.png b/gajim/data/emoticons/noto-emoticons/png/u231b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u231b.png rename to gajim/data/emoticons/noto-emoticons/png/u231b.png diff --git a/data/emoticons/noto-emoticons/png/u2328.png b/gajim/data/emoticons/noto-emoticons/png/u2328.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2328.png rename to gajim/data/emoticons/noto-emoticons/png/u2328.png diff --git a/data/emoticons/noto-emoticons/png/u23cf.png b/gajim/data/emoticons/noto-emoticons/png/u23cf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23cf.png rename to gajim/data/emoticons/noto-emoticons/png/u23cf.png diff --git a/data/emoticons/noto-emoticons/png/u23e9.png b/gajim/data/emoticons/noto-emoticons/png/u23e9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23e9.png rename to gajim/data/emoticons/noto-emoticons/png/u23e9.png diff --git a/data/emoticons/noto-emoticons/png/u23ea.png b/gajim/data/emoticons/noto-emoticons/png/u23ea.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23ea.png rename to gajim/data/emoticons/noto-emoticons/png/u23ea.png diff --git a/data/emoticons/noto-emoticons/png/u23eb.png b/gajim/data/emoticons/noto-emoticons/png/u23eb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23eb.png rename to gajim/data/emoticons/noto-emoticons/png/u23eb.png diff --git a/data/emoticons/noto-emoticons/png/u23ec.png b/gajim/data/emoticons/noto-emoticons/png/u23ec.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23ec.png rename to gajim/data/emoticons/noto-emoticons/png/u23ec.png diff --git a/data/emoticons/noto-emoticons/png/u23ed.png b/gajim/data/emoticons/noto-emoticons/png/u23ed.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23ed.png rename to gajim/data/emoticons/noto-emoticons/png/u23ed.png diff --git a/data/emoticons/noto-emoticons/png/u23ee.png b/gajim/data/emoticons/noto-emoticons/png/u23ee.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23ee.png rename to gajim/data/emoticons/noto-emoticons/png/u23ee.png diff --git a/data/emoticons/noto-emoticons/png/u23ef.png b/gajim/data/emoticons/noto-emoticons/png/u23ef.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23ef.png rename to gajim/data/emoticons/noto-emoticons/png/u23ef.png diff --git a/data/emoticons/noto-emoticons/png/u23f0.png b/gajim/data/emoticons/noto-emoticons/png/u23f0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23f0.png rename to gajim/data/emoticons/noto-emoticons/png/u23f0.png diff --git a/data/emoticons/noto-emoticons/png/u23f1.png b/gajim/data/emoticons/noto-emoticons/png/u23f1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23f1.png rename to gajim/data/emoticons/noto-emoticons/png/u23f1.png diff --git a/data/emoticons/noto-emoticons/png/u23f2.png b/gajim/data/emoticons/noto-emoticons/png/u23f2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23f2.png rename to gajim/data/emoticons/noto-emoticons/png/u23f2.png diff --git a/data/emoticons/noto-emoticons/png/u23f3.png b/gajim/data/emoticons/noto-emoticons/png/u23f3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23f3.png rename to gajim/data/emoticons/noto-emoticons/png/u23f3.png diff --git a/data/emoticons/noto-emoticons/png/u23f8.png b/gajim/data/emoticons/noto-emoticons/png/u23f8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23f8.png rename to gajim/data/emoticons/noto-emoticons/png/u23f8.png diff --git a/data/emoticons/noto-emoticons/png/u23f9.png b/gajim/data/emoticons/noto-emoticons/png/u23f9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23f9.png rename to gajim/data/emoticons/noto-emoticons/png/u23f9.png diff --git a/data/emoticons/noto-emoticons/png/u23fa.png b/gajim/data/emoticons/noto-emoticons/png/u23fa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u23fa.png rename to gajim/data/emoticons/noto-emoticons/png/u23fa.png diff --git a/data/emoticons/noto-emoticons/png/u24c2.png b/gajim/data/emoticons/noto-emoticons/png/u24c2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u24c2.png rename to gajim/data/emoticons/noto-emoticons/png/u24c2.png diff --git a/data/emoticons/noto-emoticons/png/u25aa.png b/gajim/data/emoticons/noto-emoticons/png/u25aa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u25aa.png rename to gajim/data/emoticons/noto-emoticons/png/u25aa.png diff --git a/data/emoticons/noto-emoticons/png/u25ab.png b/gajim/data/emoticons/noto-emoticons/png/u25ab.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u25ab.png rename to gajim/data/emoticons/noto-emoticons/png/u25ab.png diff --git a/data/emoticons/noto-emoticons/png/u25b6.png b/gajim/data/emoticons/noto-emoticons/png/u25b6.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u25b6.png rename to gajim/data/emoticons/noto-emoticons/png/u25b6.png diff --git a/data/emoticons/noto-emoticons/png/u25c0.png b/gajim/data/emoticons/noto-emoticons/png/u25c0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u25c0.png rename to gajim/data/emoticons/noto-emoticons/png/u25c0.png diff --git a/data/emoticons/noto-emoticons/png/u25fb.png b/gajim/data/emoticons/noto-emoticons/png/u25fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u25fb.png rename to gajim/data/emoticons/noto-emoticons/png/u25fb.png diff --git a/data/emoticons/noto-emoticons/png/u25fc.png b/gajim/data/emoticons/noto-emoticons/png/u25fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u25fc.png rename to gajim/data/emoticons/noto-emoticons/png/u25fc.png diff --git a/data/emoticons/noto-emoticons/png/u25fd.png b/gajim/data/emoticons/noto-emoticons/png/u25fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u25fd.png rename to gajim/data/emoticons/noto-emoticons/png/u25fd.png diff --git a/data/emoticons/noto-emoticons/png/u25fe.png b/gajim/data/emoticons/noto-emoticons/png/u25fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u25fe.png rename to gajim/data/emoticons/noto-emoticons/png/u25fe.png diff --git a/data/emoticons/noto-emoticons/png/u2600.png b/gajim/data/emoticons/noto-emoticons/png/u2600.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2600.png rename to gajim/data/emoticons/noto-emoticons/png/u2600.png diff --git a/data/emoticons/noto-emoticons/png/u2601.png b/gajim/data/emoticons/noto-emoticons/png/u2601.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2601.png rename to gajim/data/emoticons/noto-emoticons/png/u2601.png diff --git a/data/emoticons/noto-emoticons/png/u2602.png b/gajim/data/emoticons/noto-emoticons/png/u2602.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2602.png rename to gajim/data/emoticons/noto-emoticons/png/u2602.png diff --git a/data/emoticons/noto-emoticons/png/u2603.png b/gajim/data/emoticons/noto-emoticons/png/u2603.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2603.png rename to gajim/data/emoticons/noto-emoticons/png/u2603.png diff --git a/data/emoticons/noto-emoticons/png/u2604.png b/gajim/data/emoticons/noto-emoticons/png/u2604.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2604.png rename to gajim/data/emoticons/noto-emoticons/png/u2604.png diff --git a/data/emoticons/noto-emoticons/png/u260e.png b/gajim/data/emoticons/noto-emoticons/png/u260e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u260e.png rename to gajim/data/emoticons/noto-emoticons/png/u260e.png diff --git a/data/emoticons/noto-emoticons/png/u2611.png b/gajim/data/emoticons/noto-emoticons/png/u2611.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2611.png rename to gajim/data/emoticons/noto-emoticons/png/u2611.png diff --git a/data/emoticons/noto-emoticons/png/u2614.png b/gajim/data/emoticons/noto-emoticons/png/u2614.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2614.png rename to gajim/data/emoticons/noto-emoticons/png/u2614.png diff --git a/data/emoticons/noto-emoticons/png/u2615.png b/gajim/data/emoticons/noto-emoticons/png/u2615.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2615.png rename to gajim/data/emoticons/noto-emoticons/png/u2615.png diff --git a/data/emoticons/noto-emoticons/png/u2618.png b/gajim/data/emoticons/noto-emoticons/png/u2618.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2618.png rename to gajim/data/emoticons/noto-emoticons/png/u2618.png diff --git a/data/emoticons/noto-emoticons/png/u261d.png b/gajim/data/emoticons/noto-emoticons/png/u261d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u261d.png rename to gajim/data/emoticons/noto-emoticons/png/u261d.png diff --git a/data/emoticons/noto-emoticons/png/u261d_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u261d_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u261d_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u261d_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u261d_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u261d_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u261d_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u261d_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u261d_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u261d_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u261d_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u261d_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u261d_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u261d_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u261d_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u261d_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u261d_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u261d_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u261d_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u261d_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u2620.png b/gajim/data/emoticons/noto-emoticons/png/u2620.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2620.png rename to gajim/data/emoticons/noto-emoticons/png/u2620.png diff --git a/data/emoticons/noto-emoticons/png/u2622.png b/gajim/data/emoticons/noto-emoticons/png/u2622.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2622.png rename to gajim/data/emoticons/noto-emoticons/png/u2622.png diff --git a/data/emoticons/noto-emoticons/png/u2623.png b/gajim/data/emoticons/noto-emoticons/png/u2623.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2623.png rename to gajim/data/emoticons/noto-emoticons/png/u2623.png diff --git a/data/emoticons/noto-emoticons/png/u2626.png b/gajim/data/emoticons/noto-emoticons/png/u2626.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2626.png rename to gajim/data/emoticons/noto-emoticons/png/u2626.png diff --git a/data/emoticons/noto-emoticons/png/u262a.png b/gajim/data/emoticons/noto-emoticons/png/u262a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u262a.png rename to gajim/data/emoticons/noto-emoticons/png/u262a.png diff --git a/data/emoticons/noto-emoticons/png/u262e.png b/gajim/data/emoticons/noto-emoticons/png/u262e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u262e.png rename to gajim/data/emoticons/noto-emoticons/png/u262e.png diff --git a/data/emoticons/noto-emoticons/png/u262f.png b/gajim/data/emoticons/noto-emoticons/png/u262f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u262f.png rename to gajim/data/emoticons/noto-emoticons/png/u262f.png diff --git a/data/emoticons/noto-emoticons/png/u2638.png b/gajim/data/emoticons/noto-emoticons/png/u2638.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2638.png rename to gajim/data/emoticons/noto-emoticons/png/u2638.png diff --git a/data/emoticons/noto-emoticons/png/u2639.png b/gajim/data/emoticons/noto-emoticons/png/u2639.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2639.png rename to gajim/data/emoticons/noto-emoticons/png/u2639.png diff --git a/data/emoticons/noto-emoticons/png/u263a.png b/gajim/data/emoticons/noto-emoticons/png/u263a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u263a.png rename to gajim/data/emoticons/noto-emoticons/png/u263a.png diff --git a/data/emoticons/noto-emoticons/png/u2640.png b/gajim/data/emoticons/noto-emoticons/png/u2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2640.png rename to gajim/data/emoticons/noto-emoticons/png/u2640.png diff --git a/data/emoticons/noto-emoticons/png/u2642.png b/gajim/data/emoticons/noto-emoticons/png/u2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2642.png rename to gajim/data/emoticons/noto-emoticons/png/u2642.png diff --git a/data/emoticons/noto-emoticons/png/u2648.png b/gajim/data/emoticons/noto-emoticons/png/u2648.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2648.png rename to gajim/data/emoticons/noto-emoticons/png/u2648.png diff --git a/data/emoticons/noto-emoticons/png/u2649.png b/gajim/data/emoticons/noto-emoticons/png/u2649.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2649.png rename to gajim/data/emoticons/noto-emoticons/png/u2649.png diff --git a/data/emoticons/noto-emoticons/png/u264a.png b/gajim/data/emoticons/noto-emoticons/png/u264a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u264a.png rename to gajim/data/emoticons/noto-emoticons/png/u264a.png diff --git a/data/emoticons/noto-emoticons/png/u264b.png b/gajim/data/emoticons/noto-emoticons/png/u264b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u264b.png rename to gajim/data/emoticons/noto-emoticons/png/u264b.png diff --git a/data/emoticons/noto-emoticons/png/u264c.png b/gajim/data/emoticons/noto-emoticons/png/u264c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u264c.png rename to gajim/data/emoticons/noto-emoticons/png/u264c.png diff --git a/data/emoticons/noto-emoticons/png/u264d.png b/gajim/data/emoticons/noto-emoticons/png/u264d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u264d.png rename to gajim/data/emoticons/noto-emoticons/png/u264d.png diff --git a/data/emoticons/noto-emoticons/png/u264e.png b/gajim/data/emoticons/noto-emoticons/png/u264e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u264e.png rename to gajim/data/emoticons/noto-emoticons/png/u264e.png diff --git a/data/emoticons/noto-emoticons/png/u264f.png b/gajim/data/emoticons/noto-emoticons/png/u264f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u264f.png rename to gajim/data/emoticons/noto-emoticons/png/u264f.png diff --git a/data/emoticons/noto-emoticons/png/u2650.png b/gajim/data/emoticons/noto-emoticons/png/u2650.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2650.png rename to gajim/data/emoticons/noto-emoticons/png/u2650.png diff --git a/data/emoticons/noto-emoticons/png/u2651.png b/gajim/data/emoticons/noto-emoticons/png/u2651.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2651.png rename to gajim/data/emoticons/noto-emoticons/png/u2651.png diff --git a/data/emoticons/noto-emoticons/png/u2652.png b/gajim/data/emoticons/noto-emoticons/png/u2652.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2652.png rename to gajim/data/emoticons/noto-emoticons/png/u2652.png diff --git a/data/emoticons/noto-emoticons/png/u2653.png b/gajim/data/emoticons/noto-emoticons/png/u2653.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2653.png rename to gajim/data/emoticons/noto-emoticons/png/u2653.png diff --git a/data/emoticons/noto-emoticons/png/u2660.png b/gajim/data/emoticons/noto-emoticons/png/u2660.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2660.png rename to gajim/data/emoticons/noto-emoticons/png/u2660.png diff --git a/data/emoticons/noto-emoticons/png/u2663.png b/gajim/data/emoticons/noto-emoticons/png/u2663.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2663.png rename to gajim/data/emoticons/noto-emoticons/png/u2663.png diff --git a/data/emoticons/noto-emoticons/png/u2665.png b/gajim/data/emoticons/noto-emoticons/png/u2665.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2665.png rename to gajim/data/emoticons/noto-emoticons/png/u2665.png diff --git a/data/emoticons/noto-emoticons/png/u2666.png b/gajim/data/emoticons/noto-emoticons/png/u2666.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2666.png rename to gajim/data/emoticons/noto-emoticons/png/u2666.png diff --git a/data/emoticons/noto-emoticons/png/u2668.png b/gajim/data/emoticons/noto-emoticons/png/u2668.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2668.png rename to gajim/data/emoticons/noto-emoticons/png/u2668.png diff --git a/data/emoticons/noto-emoticons/png/u267b.png b/gajim/data/emoticons/noto-emoticons/png/u267b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u267b.png rename to gajim/data/emoticons/noto-emoticons/png/u267b.png diff --git a/data/emoticons/noto-emoticons/png/u267f.png b/gajim/data/emoticons/noto-emoticons/png/u267f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u267f.png rename to gajim/data/emoticons/noto-emoticons/png/u267f.png diff --git a/data/emoticons/noto-emoticons/png/u2692.png b/gajim/data/emoticons/noto-emoticons/png/u2692.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2692.png rename to gajim/data/emoticons/noto-emoticons/png/u2692.png diff --git a/data/emoticons/noto-emoticons/png/u2693.png b/gajim/data/emoticons/noto-emoticons/png/u2693.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2693.png rename to gajim/data/emoticons/noto-emoticons/png/u2693.png diff --git a/data/emoticons/noto-emoticons/png/u2694.png b/gajim/data/emoticons/noto-emoticons/png/u2694.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2694.png rename to gajim/data/emoticons/noto-emoticons/png/u2694.png diff --git a/data/emoticons/noto-emoticons/png/u2695.png b/gajim/data/emoticons/noto-emoticons/png/u2695.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2695.png rename to gajim/data/emoticons/noto-emoticons/png/u2695.png diff --git a/data/emoticons/noto-emoticons/png/u2696.png b/gajim/data/emoticons/noto-emoticons/png/u2696.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2696.png rename to gajim/data/emoticons/noto-emoticons/png/u2696.png diff --git a/data/emoticons/noto-emoticons/png/u2697.png b/gajim/data/emoticons/noto-emoticons/png/u2697.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2697.png rename to gajim/data/emoticons/noto-emoticons/png/u2697.png diff --git a/data/emoticons/noto-emoticons/png/u2699.png b/gajim/data/emoticons/noto-emoticons/png/u2699.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2699.png rename to gajim/data/emoticons/noto-emoticons/png/u2699.png diff --git a/data/emoticons/noto-emoticons/png/u269b.png b/gajim/data/emoticons/noto-emoticons/png/u269b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u269b.png rename to gajim/data/emoticons/noto-emoticons/png/u269b.png diff --git a/data/emoticons/noto-emoticons/png/u269c.png b/gajim/data/emoticons/noto-emoticons/png/u269c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u269c.png rename to gajim/data/emoticons/noto-emoticons/png/u269c.png diff --git a/data/emoticons/noto-emoticons/png/u26a0.png b/gajim/data/emoticons/noto-emoticons/png/u26a0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26a0.png rename to gajim/data/emoticons/noto-emoticons/png/u26a0.png diff --git a/data/emoticons/noto-emoticons/png/u26a1.png b/gajim/data/emoticons/noto-emoticons/png/u26a1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26a1.png rename to gajim/data/emoticons/noto-emoticons/png/u26a1.png diff --git a/data/emoticons/noto-emoticons/png/u26aa.png b/gajim/data/emoticons/noto-emoticons/png/u26aa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26aa.png rename to gajim/data/emoticons/noto-emoticons/png/u26aa.png diff --git a/data/emoticons/noto-emoticons/png/u26ab.png b/gajim/data/emoticons/noto-emoticons/png/u26ab.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26ab.png rename to gajim/data/emoticons/noto-emoticons/png/u26ab.png diff --git a/data/emoticons/noto-emoticons/png/u26b0.png b/gajim/data/emoticons/noto-emoticons/png/u26b0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26b0.png rename to gajim/data/emoticons/noto-emoticons/png/u26b0.png diff --git a/data/emoticons/noto-emoticons/png/u26b1.png b/gajim/data/emoticons/noto-emoticons/png/u26b1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26b1.png rename to gajim/data/emoticons/noto-emoticons/png/u26b1.png diff --git a/data/emoticons/noto-emoticons/png/u26bd.png b/gajim/data/emoticons/noto-emoticons/png/u26bd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26bd.png rename to gajim/data/emoticons/noto-emoticons/png/u26bd.png diff --git a/data/emoticons/noto-emoticons/png/u26be.png b/gajim/data/emoticons/noto-emoticons/png/u26be.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26be.png rename to gajim/data/emoticons/noto-emoticons/png/u26be.png diff --git a/data/emoticons/noto-emoticons/png/u26c4.png b/gajim/data/emoticons/noto-emoticons/png/u26c4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26c4.png rename to gajim/data/emoticons/noto-emoticons/png/u26c4.png diff --git a/data/emoticons/noto-emoticons/png/u26c5.png b/gajim/data/emoticons/noto-emoticons/png/u26c5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26c5.png rename to gajim/data/emoticons/noto-emoticons/png/u26c5.png diff --git a/data/emoticons/noto-emoticons/png/u26c8.png b/gajim/data/emoticons/noto-emoticons/png/u26c8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26c8.png rename to gajim/data/emoticons/noto-emoticons/png/u26c8.png diff --git a/data/emoticons/noto-emoticons/png/u26ce.png b/gajim/data/emoticons/noto-emoticons/png/u26ce.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26ce.png rename to gajim/data/emoticons/noto-emoticons/png/u26ce.png diff --git a/data/emoticons/noto-emoticons/png/u26cf.png b/gajim/data/emoticons/noto-emoticons/png/u26cf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26cf.png rename to gajim/data/emoticons/noto-emoticons/png/u26cf.png diff --git a/data/emoticons/noto-emoticons/png/u26d1.png b/gajim/data/emoticons/noto-emoticons/png/u26d1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26d1.png rename to gajim/data/emoticons/noto-emoticons/png/u26d1.png diff --git a/data/emoticons/noto-emoticons/png/u26d3.png b/gajim/data/emoticons/noto-emoticons/png/u26d3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26d3.png rename to gajim/data/emoticons/noto-emoticons/png/u26d3.png diff --git a/data/emoticons/noto-emoticons/png/u26d4.png b/gajim/data/emoticons/noto-emoticons/png/u26d4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26d4.png rename to gajim/data/emoticons/noto-emoticons/png/u26d4.png diff --git a/data/emoticons/noto-emoticons/png/u26e9.png b/gajim/data/emoticons/noto-emoticons/png/u26e9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26e9.png rename to gajim/data/emoticons/noto-emoticons/png/u26e9.png diff --git a/data/emoticons/noto-emoticons/png/u26ea.png b/gajim/data/emoticons/noto-emoticons/png/u26ea.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26ea.png rename to gajim/data/emoticons/noto-emoticons/png/u26ea.png diff --git a/data/emoticons/noto-emoticons/png/u26f0.png b/gajim/data/emoticons/noto-emoticons/png/u26f0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f0.png rename to gajim/data/emoticons/noto-emoticons/png/u26f0.png diff --git a/data/emoticons/noto-emoticons/png/u26f1.png b/gajim/data/emoticons/noto-emoticons/png/u26f1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f1.png rename to gajim/data/emoticons/noto-emoticons/png/u26f1.png diff --git a/data/emoticons/noto-emoticons/png/u26f2.png b/gajim/data/emoticons/noto-emoticons/png/u26f2.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f2.png rename to gajim/data/emoticons/noto-emoticons/png/u26f2.png diff --git a/data/emoticons/noto-emoticons/png/u26f3.png b/gajim/data/emoticons/noto-emoticons/png/u26f3.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f3.png rename to gajim/data/emoticons/noto-emoticons/png/u26f3.png diff --git a/data/emoticons/noto-emoticons/png/u26f4.png b/gajim/data/emoticons/noto-emoticons/png/u26f4.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f4.png rename to gajim/data/emoticons/noto-emoticons/png/u26f4.png diff --git a/data/emoticons/noto-emoticons/png/u26f5.png b/gajim/data/emoticons/noto-emoticons/png/u26f5.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f5.png rename to gajim/data/emoticons/noto-emoticons/png/u26f5.png diff --git a/data/emoticons/noto-emoticons/png/u26f7.png b/gajim/data/emoticons/noto-emoticons/png/u26f7.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f7.png rename to gajim/data/emoticons/noto-emoticons/png/u26f7.png diff --git a/data/emoticons/noto-emoticons/png/u26f8.png b/gajim/data/emoticons/noto-emoticons/png/u26f8.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f8.png rename to gajim/data/emoticons/noto-emoticons/png/u26f8.png diff --git a/data/emoticons/noto-emoticons/png/u26f9.png b/gajim/data/emoticons/noto-emoticons/png/u26f9.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fb_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fc_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fd_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3fe_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_1f3ff_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_200d_2640.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_200d_2640.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_200d_2640.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_200d_2640.png diff --git a/data/emoticons/noto-emoticons/png/u26f9_200d_2642.png b/gajim/data/emoticons/noto-emoticons/png/u26f9_200d_2642.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26f9_200d_2642.png rename to gajim/data/emoticons/noto-emoticons/png/u26f9_200d_2642.png diff --git a/data/emoticons/noto-emoticons/png/u26fa.png b/gajim/data/emoticons/noto-emoticons/png/u26fa.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26fa.png rename to gajim/data/emoticons/noto-emoticons/png/u26fa.png diff --git a/data/emoticons/noto-emoticons/png/u26fd.png b/gajim/data/emoticons/noto-emoticons/png/u26fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u26fd.png rename to gajim/data/emoticons/noto-emoticons/png/u26fd.png diff --git a/data/emoticons/noto-emoticons/png/u2702.png b/gajim/data/emoticons/noto-emoticons/png/u2702.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2702.png rename to gajim/data/emoticons/noto-emoticons/png/u2702.png diff --git a/data/emoticons/noto-emoticons/png/u2705.png b/gajim/data/emoticons/noto-emoticons/png/u2705.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2705.png rename to gajim/data/emoticons/noto-emoticons/png/u2705.png diff --git a/data/emoticons/noto-emoticons/png/u2708.png b/gajim/data/emoticons/noto-emoticons/png/u2708.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2708.png rename to gajim/data/emoticons/noto-emoticons/png/u2708.png diff --git a/data/emoticons/noto-emoticons/png/u2709.png b/gajim/data/emoticons/noto-emoticons/png/u2709.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2709.png rename to gajim/data/emoticons/noto-emoticons/png/u2709.png diff --git a/data/emoticons/noto-emoticons/png/u270a.png b/gajim/data/emoticons/noto-emoticons/png/u270a.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270a.png rename to gajim/data/emoticons/noto-emoticons/png/u270a.png diff --git a/data/emoticons/noto-emoticons/png/u270a_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u270a_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270a_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u270a_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u270a_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u270a_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270a_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u270a_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u270a_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u270a_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270a_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u270a_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u270a_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u270a_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270a_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u270a_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u270a_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u270a_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270a_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u270a_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u270b.png b/gajim/data/emoticons/noto-emoticons/png/u270b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270b.png rename to gajim/data/emoticons/noto-emoticons/png/u270b.png diff --git a/data/emoticons/noto-emoticons/png/u270b_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u270b_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270b_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u270b_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u270b_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u270b_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270b_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u270b_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u270b_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u270b_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270b_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u270b_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u270b_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u270b_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270b_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u270b_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u270b_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u270b_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270b_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u270b_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u270c.png b/gajim/data/emoticons/noto-emoticons/png/u270c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270c.png rename to gajim/data/emoticons/noto-emoticons/png/u270c.png diff --git a/data/emoticons/noto-emoticons/png/u270c_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u270c_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270c_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u270c_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u270c_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u270c_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270c_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u270c_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u270c_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u270c_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270c_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u270c_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u270c_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u270c_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270c_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u270c_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u270c_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u270c_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270c_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u270c_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u270d.png b/gajim/data/emoticons/noto-emoticons/png/u270d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270d.png rename to gajim/data/emoticons/noto-emoticons/png/u270d.png diff --git a/data/emoticons/noto-emoticons/png/u270d_1f3fb.png b/gajim/data/emoticons/noto-emoticons/png/u270d_1f3fb.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270d_1f3fb.png rename to gajim/data/emoticons/noto-emoticons/png/u270d_1f3fb.png diff --git a/data/emoticons/noto-emoticons/png/u270d_1f3fc.png b/gajim/data/emoticons/noto-emoticons/png/u270d_1f3fc.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270d_1f3fc.png rename to gajim/data/emoticons/noto-emoticons/png/u270d_1f3fc.png diff --git a/data/emoticons/noto-emoticons/png/u270d_1f3fd.png b/gajim/data/emoticons/noto-emoticons/png/u270d_1f3fd.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270d_1f3fd.png rename to gajim/data/emoticons/noto-emoticons/png/u270d_1f3fd.png diff --git a/data/emoticons/noto-emoticons/png/u270d_1f3fe.png b/gajim/data/emoticons/noto-emoticons/png/u270d_1f3fe.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270d_1f3fe.png rename to gajim/data/emoticons/noto-emoticons/png/u270d_1f3fe.png diff --git a/data/emoticons/noto-emoticons/png/u270d_1f3ff.png b/gajim/data/emoticons/noto-emoticons/png/u270d_1f3ff.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270d_1f3ff.png rename to gajim/data/emoticons/noto-emoticons/png/u270d_1f3ff.png diff --git a/data/emoticons/noto-emoticons/png/u270f.png b/gajim/data/emoticons/noto-emoticons/png/u270f.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u270f.png rename to gajim/data/emoticons/noto-emoticons/png/u270f.png diff --git a/data/emoticons/noto-emoticons/png/u2712.png b/gajim/data/emoticons/noto-emoticons/png/u2712.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2712.png rename to gajim/data/emoticons/noto-emoticons/png/u2712.png diff --git a/data/emoticons/noto-emoticons/png/u2714.png b/gajim/data/emoticons/noto-emoticons/png/u2714.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2714.png rename to gajim/data/emoticons/noto-emoticons/png/u2714.png diff --git a/data/emoticons/noto-emoticons/png/u2716.png b/gajim/data/emoticons/noto-emoticons/png/u2716.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2716.png rename to gajim/data/emoticons/noto-emoticons/png/u2716.png diff --git a/data/emoticons/noto-emoticons/png/u271d.png b/gajim/data/emoticons/noto-emoticons/png/u271d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u271d.png rename to gajim/data/emoticons/noto-emoticons/png/u271d.png diff --git a/data/emoticons/noto-emoticons/png/u2721.png b/gajim/data/emoticons/noto-emoticons/png/u2721.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2721.png rename to gajim/data/emoticons/noto-emoticons/png/u2721.png diff --git a/data/emoticons/noto-emoticons/png/u2728.png b/gajim/data/emoticons/noto-emoticons/png/u2728.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2728.png rename to gajim/data/emoticons/noto-emoticons/png/u2728.png diff --git a/data/emoticons/noto-emoticons/png/u2733.png b/gajim/data/emoticons/noto-emoticons/png/u2733.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2733.png rename to gajim/data/emoticons/noto-emoticons/png/u2733.png diff --git a/data/emoticons/noto-emoticons/png/u2734.png b/gajim/data/emoticons/noto-emoticons/png/u2734.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2734.png rename to gajim/data/emoticons/noto-emoticons/png/u2734.png diff --git a/data/emoticons/noto-emoticons/png/u2744.png b/gajim/data/emoticons/noto-emoticons/png/u2744.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2744.png rename to gajim/data/emoticons/noto-emoticons/png/u2744.png diff --git a/data/emoticons/noto-emoticons/png/u2747.png b/gajim/data/emoticons/noto-emoticons/png/u2747.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2747.png rename to gajim/data/emoticons/noto-emoticons/png/u2747.png diff --git a/data/emoticons/noto-emoticons/png/u274c.png b/gajim/data/emoticons/noto-emoticons/png/u274c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u274c.png rename to gajim/data/emoticons/noto-emoticons/png/u274c.png diff --git a/data/emoticons/noto-emoticons/png/u274e.png b/gajim/data/emoticons/noto-emoticons/png/u274e.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u274e.png rename to gajim/data/emoticons/noto-emoticons/png/u274e.png diff --git a/data/emoticons/noto-emoticons/png/u2753.png b/gajim/data/emoticons/noto-emoticons/png/u2753.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2753.png rename to gajim/data/emoticons/noto-emoticons/png/u2753.png diff --git a/data/emoticons/noto-emoticons/png/u2754.png b/gajim/data/emoticons/noto-emoticons/png/u2754.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2754.png rename to gajim/data/emoticons/noto-emoticons/png/u2754.png diff --git a/data/emoticons/noto-emoticons/png/u2755.png b/gajim/data/emoticons/noto-emoticons/png/u2755.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2755.png rename to gajim/data/emoticons/noto-emoticons/png/u2755.png diff --git a/data/emoticons/noto-emoticons/png/u2757.png b/gajim/data/emoticons/noto-emoticons/png/u2757.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2757.png rename to gajim/data/emoticons/noto-emoticons/png/u2757.png diff --git a/data/emoticons/noto-emoticons/png/u2763.png b/gajim/data/emoticons/noto-emoticons/png/u2763.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2763.png rename to gajim/data/emoticons/noto-emoticons/png/u2763.png diff --git a/data/emoticons/noto-emoticons/png/u2764.png b/gajim/data/emoticons/noto-emoticons/png/u2764.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2764.png rename to gajim/data/emoticons/noto-emoticons/png/u2764.png diff --git a/data/emoticons/noto-emoticons/png/u2795.png b/gajim/data/emoticons/noto-emoticons/png/u2795.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2795.png rename to gajim/data/emoticons/noto-emoticons/png/u2795.png diff --git a/data/emoticons/noto-emoticons/png/u2796.png b/gajim/data/emoticons/noto-emoticons/png/u2796.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2796.png rename to gajim/data/emoticons/noto-emoticons/png/u2796.png diff --git a/data/emoticons/noto-emoticons/png/u2797.png b/gajim/data/emoticons/noto-emoticons/png/u2797.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2797.png rename to gajim/data/emoticons/noto-emoticons/png/u2797.png diff --git a/data/emoticons/noto-emoticons/png/u27a1.png b/gajim/data/emoticons/noto-emoticons/png/u27a1.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u27a1.png rename to gajim/data/emoticons/noto-emoticons/png/u27a1.png diff --git a/data/emoticons/noto-emoticons/png/u27b0.png b/gajim/data/emoticons/noto-emoticons/png/u27b0.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u27b0.png rename to gajim/data/emoticons/noto-emoticons/png/u27b0.png diff --git a/data/emoticons/noto-emoticons/png/u27bf.png b/gajim/data/emoticons/noto-emoticons/png/u27bf.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u27bf.png rename to gajim/data/emoticons/noto-emoticons/png/u27bf.png diff --git a/data/emoticons/noto-emoticons/png/u2934.png b/gajim/data/emoticons/noto-emoticons/png/u2934.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2934.png rename to gajim/data/emoticons/noto-emoticons/png/u2934.png diff --git a/data/emoticons/noto-emoticons/png/u2935.png b/gajim/data/emoticons/noto-emoticons/png/u2935.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2935.png rename to gajim/data/emoticons/noto-emoticons/png/u2935.png diff --git a/data/emoticons/noto-emoticons/png/u2b05.png b/gajim/data/emoticons/noto-emoticons/png/u2b05.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2b05.png rename to gajim/data/emoticons/noto-emoticons/png/u2b05.png diff --git a/data/emoticons/noto-emoticons/png/u2b06.png b/gajim/data/emoticons/noto-emoticons/png/u2b06.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2b06.png rename to gajim/data/emoticons/noto-emoticons/png/u2b06.png diff --git a/data/emoticons/noto-emoticons/png/u2b07.png b/gajim/data/emoticons/noto-emoticons/png/u2b07.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2b07.png rename to gajim/data/emoticons/noto-emoticons/png/u2b07.png diff --git a/data/emoticons/noto-emoticons/png/u2b1b.png b/gajim/data/emoticons/noto-emoticons/png/u2b1b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2b1b.png rename to gajim/data/emoticons/noto-emoticons/png/u2b1b.png diff --git a/data/emoticons/noto-emoticons/png/u2b1c.png b/gajim/data/emoticons/noto-emoticons/png/u2b1c.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2b1c.png rename to gajim/data/emoticons/noto-emoticons/png/u2b1c.png diff --git a/data/emoticons/noto-emoticons/png/u2b50.png b/gajim/data/emoticons/noto-emoticons/png/u2b50.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2b50.png rename to gajim/data/emoticons/noto-emoticons/png/u2b50.png diff --git a/data/emoticons/noto-emoticons/png/u2b55.png b/gajim/data/emoticons/noto-emoticons/png/u2b55.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u2b55.png rename to gajim/data/emoticons/noto-emoticons/png/u2b55.png diff --git a/data/emoticons/noto-emoticons/png/u3030.png b/gajim/data/emoticons/noto-emoticons/png/u3030.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u3030.png rename to gajim/data/emoticons/noto-emoticons/png/u3030.png diff --git a/data/emoticons/noto-emoticons/png/u303d.png b/gajim/data/emoticons/noto-emoticons/png/u303d.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u303d.png rename to gajim/data/emoticons/noto-emoticons/png/u303d.png diff --git a/data/emoticons/noto-emoticons/png/u3297.png b/gajim/data/emoticons/noto-emoticons/png/u3297.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u3297.png rename to gajim/data/emoticons/noto-emoticons/png/u3297.png diff --git a/data/emoticons/noto-emoticons/png/u3299.png b/gajim/data/emoticons/noto-emoticons/png/u3299.png similarity index 100% rename from data/emoticons/noto-emoticons/png/u3299.png rename to gajim/data/emoticons/noto-emoticons/png/u3299.png diff --git a/data/emoticons/noto-emoticons/png/ufe82b.png b/gajim/data/emoticons/noto-emoticons/png/ufe82b.png similarity index 100% rename from data/emoticons/noto-emoticons/png/ufe82b.png rename to gajim/data/emoticons/noto-emoticons/png/ufe82b.png diff --git a/data/gui/Makefile.am b/gajim/data/gui/Makefile.am similarity index 100% rename from data/gui/Makefile.am rename to gajim/data/gui/Makefile.am diff --git a/data/gui/account_context_menu.ui b/gajim/data/gui/account_context_menu.ui similarity index 100% rename from data/gui/account_context_menu.ui rename to gajim/data/gui/account_context_menu.ui diff --git a/data/gui/account_creation_wizard_window.ui b/gajim/data/gui/account_creation_wizard_window.ui similarity index 100% rename from data/gui/account_creation_wizard_window.ui rename to gajim/data/gui/account_creation_wizard_window.ui diff --git a/data/gui/accounts_window.ui b/gajim/data/gui/accounts_window.ui similarity index 100% rename from data/gui/accounts_window.ui rename to gajim/data/gui/accounts_window.ui diff --git a/data/gui/add_new_contact_window.ui b/gajim/data/gui/add_new_contact_window.ui similarity index 100% rename from data/gui/add_new_contact_window.ui rename to gajim/data/gui/add_new_contact_window.ui diff --git a/data/gui/adhoc_commands_window.ui b/gajim/data/gui/adhoc_commands_window.ui similarity index 100% rename from data/gui/adhoc_commands_window.ui rename to gajim/data/gui/adhoc_commands_window.ui diff --git a/data/gui/advanced_configuration_window.ui b/gajim/data/gui/advanced_configuration_window.ui similarity index 100% rename from data/gui/advanced_configuration_window.ui rename to gajim/data/gui/advanced_configuration_window.ui diff --git a/data/gui/application_menu.ui b/gajim/data/gui/application_menu.ui similarity index 100% rename from data/gui/application_menu.ui rename to gajim/data/gui/application_menu.ui diff --git a/data/gui/archiving_313_preferences_item.ui b/gajim/data/gui/archiving_313_preferences_item.ui similarity index 100% rename from data/gui/archiving_313_preferences_item.ui rename to gajim/data/gui/archiving_313_preferences_item.ui diff --git a/data/gui/archiving_313_preferences_window.ui b/gajim/data/gui/archiving_313_preferences_window.ui similarity index 100% rename from data/gui/archiving_313_preferences_window.ui rename to gajim/data/gui/archiving_313_preferences_window.ui diff --git a/data/gui/atom_entry_window.ui b/gajim/data/gui/atom_entry_window.ui similarity index 100% rename from data/gui/atom_entry_window.ui rename to gajim/data/gui/atom_entry_window.ui diff --git a/data/gui/blocked_contacts_window.ui b/gajim/data/gui/blocked_contacts_window.ui similarity index 100% rename from data/gui/blocked_contacts_window.ui rename to gajim/data/gui/blocked_contacts_window.ui diff --git a/data/gui/change_activity_dialog.ui b/gajim/data/gui/change_activity_dialog.ui similarity index 100% rename from data/gui/change_activity_dialog.ui rename to gajim/data/gui/change_activity_dialog.ui diff --git a/data/gui/change_mood_dialog.ui b/gajim/data/gui/change_mood_dialog.ui similarity index 100% rename from data/gui/change_mood_dialog.ui rename to gajim/data/gui/change_mood_dialog.ui diff --git a/data/gui/change_password_dialog.ui b/gajim/data/gui/change_password_dialog.ui similarity index 100% rename from data/gui/change_password_dialog.ui rename to gajim/data/gui/change_password_dialog.ui diff --git a/data/gui/change_status_message_dialog.ui b/gajim/data/gui/change_status_message_dialog.ui similarity index 100% rename from data/gui/change_status_message_dialog.ui rename to gajim/data/gui/change_status_message_dialog.ui diff --git a/data/gui/chat_context_menu.ui b/gajim/data/gui/chat_context_menu.ui similarity index 100% rename from data/gui/chat_context_menu.ui rename to gajim/data/gui/chat_context_menu.ui diff --git a/data/gui/chat_control.ui b/gajim/data/gui/chat_control.ui similarity index 100% rename from data/gui/chat_control.ui rename to gajim/data/gui/chat_control.ui diff --git a/data/gui/chat_to_muc_window.ui b/gajim/data/gui/chat_to_muc_window.ui similarity index 100% rename from data/gui/chat_to_muc_window.ui rename to gajim/data/gui/chat_to_muc_window.ui diff --git a/data/gui/choose_gpg_key_dialog.ui b/gajim/data/gui/choose_gpg_key_dialog.ui similarity index 100% rename from data/gui/choose_gpg_key_dialog.ui rename to gajim/data/gui/choose_gpg_key_dialog.ui diff --git a/data/gui/contact_context_menu.ui b/gajim/data/gui/contact_context_menu.ui similarity index 100% rename from data/gui/contact_context_menu.ui rename to gajim/data/gui/contact_context_menu.ui diff --git a/data/gui/data_form_window.ui b/gajim/data/gui/data_form_window.ui similarity index 100% rename from data/gui/data_form_window.ui rename to gajim/data/gui/data_form_window.ui diff --git a/data/gui/dubbleinput_dialog.ui b/gajim/data/gui/dubbleinput_dialog.ui similarity index 100% rename from data/gui/dubbleinput_dialog.ui rename to gajim/data/gui/dubbleinput_dialog.ui diff --git a/data/gui/edit_groups_dialog.ui b/gajim/data/gui/edit_groups_dialog.ui similarity index 100% rename from data/gui/edit_groups_dialog.ui rename to gajim/data/gui/edit_groups_dialog.ui diff --git a/data/gui/esession_info_window.ui b/gajim/data/gui/esession_info_window.ui similarity index 100% rename from data/gui/esession_info_window.ui rename to gajim/data/gui/esession_info_window.ui diff --git a/data/gui/exception_dialog.ui b/gajim/data/gui/exception_dialog.ui similarity index 100% rename from data/gui/exception_dialog.ui rename to gajim/data/gui/exception_dialog.ui diff --git a/data/gui/features_window.ui b/gajim/data/gui/features_window.ui similarity index 100% rename from data/gui/features_window.ui rename to gajim/data/gui/features_window.ui diff --git a/data/gui/filetransfers.ui b/gajim/data/gui/filetransfers.ui similarity index 100% rename from data/gui/filetransfers.ui rename to gajim/data/gui/filetransfers.ui diff --git a/data/gui/gajim_themes_window.ui b/gajim/data/gui/gajim_themes_window.ui similarity index 100% rename from data/gui/gajim_themes_window.ui rename to gajim/data/gui/gajim_themes_window.ui diff --git a/data/gui/gc_control_popup_menu.ui b/gajim/data/gui/gc_control_popup_menu.ui similarity index 100% rename from data/gui/gc_control_popup_menu.ui rename to gajim/data/gui/gc_control_popup_menu.ui diff --git a/data/gui/gc_occupants_menu.ui b/gajim/data/gui/gc_occupants_menu.ui similarity index 100% rename from data/gui/gc_occupants_menu.ui rename to gajim/data/gui/gc_occupants_menu.ui diff --git a/data/gui/groupchat_control.ui b/gajim/data/gui/groupchat_control.ui similarity index 100% rename from data/gui/groupchat_control.ui rename to gajim/data/gui/groupchat_control.ui diff --git a/data/gui/groups_post_window.ui b/gajim/data/gui/groups_post_window.ui similarity index 100% rename from data/gui/groups_post_window.ui rename to gajim/data/gui/groups_post_window.ui diff --git a/data/gui/history_manager.ui b/gajim/data/gui/history_manager.ui similarity index 100% rename from data/gui/history_manager.ui rename to gajim/data/gui/history_manager.ui diff --git a/data/gui/history_window.ui b/gajim/data/gui/history_window.ui similarity index 100% rename from data/gui/history_window.ui rename to gajim/data/gui/history_window.ui diff --git a/data/gui/input_dialog.ui b/gajim/data/gui/input_dialog.ui similarity index 100% rename from data/gui/input_dialog.ui rename to gajim/data/gui/input_dialog.ui diff --git a/data/gui/input_text_dialog.ui b/gajim/data/gui/input_text_dialog.ui similarity index 100% rename from data/gui/input_text_dialog.ui rename to gajim/data/gui/input_text_dialog.ui diff --git a/data/gui/join_groupchat_window.ui b/gajim/data/gui/join_groupchat_window.ui similarity index 100% rename from data/gui/join_groupchat_window.ui rename to gajim/data/gui/join_groupchat_window.ui diff --git a/data/gui/manage_bookmarks_window.ui b/gajim/data/gui/manage_bookmarks_window.ui similarity index 100% rename from data/gui/manage_bookmarks_window.ui rename to gajim/data/gui/manage_bookmarks_window.ui diff --git a/data/gui/manage_pep_services_window.ui b/gajim/data/gui/manage_pep_services_window.ui similarity index 100% rename from data/gui/manage_pep_services_window.ui rename to gajim/data/gui/manage_pep_services_window.ui diff --git a/data/gui/manage_proxies_window.ui b/gajim/data/gui/manage_proxies_window.ui similarity index 100% rename from data/gui/manage_proxies_window.ui rename to gajim/data/gui/manage_proxies_window.ui diff --git a/data/gui/manage_sounds_window.ui b/gajim/data/gui/manage_sounds_window.ui similarity index 100% rename from data/gui/manage_sounds_window.ui rename to gajim/data/gui/manage_sounds_window.ui diff --git a/data/gui/message_window.ui b/gajim/data/gui/message_window.ui similarity index 100% rename from data/gui/message_window.ui rename to gajim/data/gui/message_window.ui diff --git a/data/gui/passphrase_dialog.ui b/gajim/data/gui/passphrase_dialog.ui similarity index 100% rename from data/gui/passphrase_dialog.ui rename to gajim/data/gui/passphrase_dialog.ui diff --git a/data/gui/plugins_window.ui b/gajim/data/gui/plugins_window.ui similarity index 100% rename from data/gui/plugins_window.ui rename to gajim/data/gui/plugins_window.ui diff --git a/data/gui/popup_notification_window.ui b/gajim/data/gui/popup_notification_window.ui similarity index 100% rename from data/gui/popup_notification_window.ui rename to gajim/data/gui/popup_notification_window.ui diff --git a/data/gui/preferences_window.ui b/gajim/data/gui/preferences_window.ui similarity index 100% rename from data/gui/preferences_window.ui rename to gajim/data/gui/preferences_window.ui diff --git a/data/gui/privacy_list_window.ui b/gajim/data/gui/privacy_list_window.ui similarity index 100% rename from data/gui/privacy_list_window.ui rename to gajim/data/gui/privacy_list_window.ui diff --git a/data/gui/privacy_lists_window.ui b/gajim/data/gui/privacy_lists_window.ui similarity index 100% rename from data/gui/privacy_lists_window.ui rename to gajim/data/gui/privacy_lists_window.ui diff --git a/data/gui/profile_window.ui b/gajim/data/gui/profile_window.ui similarity index 100% rename from data/gui/profile_window.ui rename to gajim/data/gui/profile_window.ui diff --git a/data/gui/progress_dialog.ui b/gajim/data/gui/progress_dialog.ui similarity index 100% rename from data/gui/progress_dialog.ui rename to gajim/data/gui/progress_dialog.ui diff --git a/data/gui/remove_account_window.ui b/gajim/data/gui/remove_account_window.ui similarity index 100% rename from data/gui/remove_account_window.ui rename to gajim/data/gui/remove_account_window.ui diff --git a/data/gui/roster_item_exchange_window.ui b/gajim/data/gui/roster_item_exchange_window.ui similarity index 100% rename from data/gui/roster_item_exchange_window.ui rename to gajim/data/gui/roster_item_exchange_window.ui diff --git a/data/gui/roster_window.ui b/gajim/data/gui/roster_window.ui similarity index 100% rename from data/gui/roster_window.ui rename to gajim/data/gui/roster_window.ui diff --git a/data/gui/search_window.ui b/gajim/data/gui/search_window.ui similarity index 100% rename from data/gui/search_window.ui rename to gajim/data/gui/search_window.ui diff --git a/data/gui/service_discovery_window.ui b/gajim/data/gui/service_discovery_window.ui similarity index 100% rename from data/gui/service_discovery_window.ui rename to gajim/data/gui/service_discovery_window.ui diff --git a/data/gui/service_registration_window.ui b/gajim/data/gui/service_registration_window.ui similarity index 100% rename from data/gui/service_registration_window.ui rename to gajim/data/gui/service_registration_window.ui diff --git a/data/gui/shortcuts_window.ui b/gajim/data/gui/shortcuts_window.ui similarity index 100% rename from data/gui/shortcuts_window.ui rename to gajim/data/gui/shortcuts_window.ui diff --git a/data/gui/single_message_window.ui b/gajim/data/gui/single_message_window.ui similarity index 100% rename from data/gui/single_message_window.ui rename to gajim/data/gui/single_message_window.ui diff --git a/data/gui/subscription_request_popup_menu.ui b/gajim/data/gui/subscription_request_popup_menu.ui similarity index 100% rename from data/gui/subscription_request_popup_menu.ui rename to gajim/data/gui/subscription_request_popup_menu.ui diff --git a/data/gui/subscription_request_window.ui b/gajim/data/gui/subscription_request_window.ui similarity index 100% rename from data/gui/subscription_request_window.ui rename to gajim/data/gui/subscription_request_window.ui diff --git a/data/gui/synchronise_select_account_dialog.ui b/gajim/data/gui/synchronise_select_account_dialog.ui similarity index 100% rename from data/gui/synchronise_select_account_dialog.ui rename to gajim/data/gui/synchronise_select_account_dialog.ui diff --git a/data/gui/synchronise_select_contacts_dialog.ui b/gajim/data/gui/synchronise_select_contacts_dialog.ui similarity index 100% rename from data/gui/synchronise_select_contacts_dialog.ui rename to gajim/data/gui/synchronise_select_contacts_dialog.ui diff --git a/data/gui/systray_context_menu.ui b/gajim/data/gui/systray_context_menu.ui similarity index 100% rename from data/gui/systray_context_menu.ui rename to gajim/data/gui/systray_context_menu.ui diff --git a/data/gui/tooltip_gc_contact.ui b/gajim/data/gui/tooltip_gc_contact.ui similarity index 100% rename from data/gui/tooltip_gc_contact.ui rename to gajim/data/gui/tooltip_gc_contact.ui diff --git a/data/gui/tooltip_roster_contact.ui b/gajim/data/gui/tooltip_roster_contact.ui similarity index 100% rename from data/gui/tooltip_roster_contact.ui rename to gajim/data/gui/tooltip_roster_contact.ui diff --git a/data/gui/vcard_information_window.ui b/gajim/data/gui/vcard_information_window.ui similarity index 100% rename from data/gui/vcard_information_window.ui rename to gajim/data/gui/vcard_information_window.ui diff --git a/data/gui/voip_call_received_dialog.ui b/gajim/data/gui/voip_call_received_dialog.ui similarity index 100% rename from data/gui/voip_call_received_dialog.ui rename to gajim/data/gui/voip_call_received_dialog.ui diff --git a/data/gui/xml_console_window.ui b/gajim/data/gui/xml_console_window.ui similarity index 100% rename from data/gui/xml_console_window.ui rename to gajim/data/gui/xml_console_window.ui diff --git a/data/gui/zeroconf_context_menu.ui b/gajim/data/gui/zeroconf_context_menu.ui similarity index 100% rename from data/gui/zeroconf_context_menu.ui rename to gajim/data/gui/zeroconf_context_menu.ui diff --git a/data/gui/zeroconf_information_window.ui b/gajim/data/gui/zeroconf_information_window.ui similarity index 100% rename from data/gui/zeroconf_information_window.ui rename to gajim/data/gui/zeroconf_information_window.ui diff --git a/data/iconsets/Makefile.am b/gajim/data/iconsets/Makefile.am similarity index 100% rename from data/iconsets/Makefile.am rename to gajim/data/iconsets/Makefile.am diff --git a/data/iconsets/dcraven/16x16/away.png b/gajim/data/iconsets/dcraven/16x16/away.png similarity index 100% rename from data/iconsets/dcraven/16x16/away.png rename to gajim/data/iconsets/dcraven/16x16/away.png diff --git a/data/iconsets/dcraven/16x16/chat.png b/gajim/data/iconsets/dcraven/16x16/chat.png similarity index 100% rename from data/iconsets/dcraven/16x16/chat.png rename to gajim/data/iconsets/dcraven/16x16/chat.png diff --git a/data/iconsets/dcraven/16x16/closed.png b/gajim/data/iconsets/dcraven/16x16/closed.png similarity index 100% rename from data/iconsets/dcraven/16x16/closed.png rename to gajim/data/iconsets/dcraven/16x16/closed.png diff --git a/data/iconsets/dcraven/16x16/connecting.png b/gajim/data/iconsets/dcraven/16x16/connecting.png similarity index 100% rename from data/iconsets/dcraven/16x16/connecting.png rename to gajim/data/iconsets/dcraven/16x16/connecting.png diff --git a/data/iconsets/dcraven/16x16/dnd.png b/gajim/data/iconsets/dcraven/16x16/dnd.png similarity index 100% rename from data/iconsets/dcraven/16x16/dnd.png rename to gajim/data/iconsets/dcraven/16x16/dnd.png diff --git a/data/iconsets/dcraven/16x16/error.png b/gajim/data/iconsets/dcraven/16x16/error.png similarity index 100% rename from data/iconsets/dcraven/16x16/error.png rename to gajim/data/iconsets/dcraven/16x16/error.png diff --git a/data/iconsets/dcraven/16x16/event.png b/gajim/data/iconsets/dcraven/16x16/event.png similarity index 100% rename from data/iconsets/dcraven/16x16/event.png rename to gajim/data/iconsets/dcraven/16x16/event.png diff --git a/data/iconsets/dcraven/16x16/invisible.png b/gajim/data/iconsets/dcraven/16x16/invisible.png similarity index 100% rename from data/iconsets/dcraven/16x16/invisible.png rename to gajim/data/iconsets/dcraven/16x16/invisible.png diff --git a/data/iconsets/dcraven/16x16/muc_active.png b/gajim/data/iconsets/dcraven/16x16/muc_active.png similarity index 100% rename from data/iconsets/dcraven/16x16/muc_active.png rename to gajim/data/iconsets/dcraven/16x16/muc_active.png diff --git a/data/iconsets/dcraven/16x16/muc_inactive.png b/gajim/data/iconsets/dcraven/16x16/muc_inactive.png similarity index 100% rename from data/iconsets/dcraven/16x16/muc_inactive.png rename to gajim/data/iconsets/dcraven/16x16/muc_inactive.png diff --git a/data/iconsets/dcraven/16x16/not_in_roster.png b/gajim/data/iconsets/dcraven/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/dcraven/16x16/not_in_roster.png rename to gajim/data/iconsets/dcraven/16x16/not_in_roster.png diff --git a/data/iconsets/dcraven/16x16/offline.png b/gajim/data/iconsets/dcraven/16x16/offline.png similarity index 100% rename from data/iconsets/dcraven/16x16/offline.png rename to gajim/data/iconsets/dcraven/16x16/offline.png diff --git a/data/iconsets/dcraven/16x16/online.png b/gajim/data/iconsets/dcraven/16x16/online.png similarity index 100% rename from data/iconsets/dcraven/16x16/online.png rename to gajim/data/iconsets/dcraven/16x16/online.png diff --git a/data/iconsets/dcraven/16x16/opened.png b/gajim/data/iconsets/dcraven/16x16/opened.png similarity index 100% rename from data/iconsets/dcraven/16x16/opened.png rename to gajim/data/iconsets/dcraven/16x16/opened.png diff --git a/data/iconsets/dcraven/16x16/requested.png b/gajim/data/iconsets/dcraven/16x16/requested.png similarity index 100% rename from data/iconsets/dcraven/16x16/requested.png rename to gajim/data/iconsets/dcraven/16x16/requested.png diff --git a/data/iconsets/dcraven/16x16/xa.png b/gajim/data/iconsets/dcraven/16x16/xa.png similarity index 100% rename from data/iconsets/dcraven/16x16/xa.png rename to gajim/data/iconsets/dcraven/16x16/xa.png diff --git a/data/iconsets/dcraven/32x32/away.png b/gajim/data/iconsets/dcraven/32x32/away.png similarity index 100% rename from data/iconsets/dcraven/32x32/away.png rename to gajim/data/iconsets/dcraven/32x32/away.png diff --git a/data/iconsets/dcraven/32x32/chat.png b/gajim/data/iconsets/dcraven/32x32/chat.png similarity index 100% rename from data/iconsets/dcraven/32x32/chat.png rename to gajim/data/iconsets/dcraven/32x32/chat.png diff --git a/data/iconsets/dcraven/32x32/closed.png b/gajim/data/iconsets/dcraven/32x32/closed.png similarity index 100% rename from data/iconsets/dcraven/32x32/closed.png rename to gajim/data/iconsets/dcraven/32x32/closed.png diff --git a/data/iconsets/dcraven/32x32/connecting.png b/gajim/data/iconsets/dcraven/32x32/connecting.png similarity index 100% rename from data/iconsets/dcraven/32x32/connecting.png rename to gajim/data/iconsets/dcraven/32x32/connecting.png diff --git a/data/iconsets/dcraven/32x32/dnd.png b/gajim/data/iconsets/dcraven/32x32/dnd.png similarity index 100% rename from data/iconsets/dcraven/32x32/dnd.png rename to gajim/data/iconsets/dcraven/32x32/dnd.png diff --git a/data/iconsets/dcraven/32x32/error.png b/gajim/data/iconsets/dcraven/32x32/error.png similarity index 100% rename from data/iconsets/dcraven/32x32/error.png rename to gajim/data/iconsets/dcraven/32x32/error.png diff --git a/data/iconsets/dcraven/32x32/event.png b/gajim/data/iconsets/dcraven/32x32/event.png similarity index 100% rename from data/iconsets/dcraven/32x32/event.png rename to gajim/data/iconsets/dcraven/32x32/event.png diff --git a/data/iconsets/dcraven/32x32/invisible.png b/gajim/data/iconsets/dcraven/32x32/invisible.png similarity index 100% rename from data/iconsets/dcraven/32x32/invisible.png rename to gajim/data/iconsets/dcraven/32x32/invisible.png diff --git a/data/iconsets/dcraven/32x32/muc_active.png b/gajim/data/iconsets/dcraven/32x32/muc_active.png similarity index 100% rename from data/iconsets/dcraven/32x32/muc_active.png rename to gajim/data/iconsets/dcraven/32x32/muc_active.png diff --git a/data/iconsets/dcraven/32x32/muc_inactive.png b/gajim/data/iconsets/dcraven/32x32/muc_inactive.png similarity index 100% rename from data/iconsets/dcraven/32x32/muc_inactive.png rename to gajim/data/iconsets/dcraven/32x32/muc_inactive.png diff --git a/data/iconsets/dcraven/32x32/not_in_roster.png b/gajim/data/iconsets/dcraven/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/dcraven/32x32/not_in_roster.png rename to gajim/data/iconsets/dcraven/32x32/not_in_roster.png diff --git a/data/iconsets/dcraven/32x32/offline.png b/gajim/data/iconsets/dcraven/32x32/offline.png similarity index 100% rename from data/iconsets/dcraven/32x32/offline.png rename to gajim/data/iconsets/dcraven/32x32/offline.png diff --git a/data/iconsets/dcraven/32x32/online.png b/gajim/data/iconsets/dcraven/32x32/online.png similarity index 100% rename from data/iconsets/dcraven/32x32/online.png rename to gajim/data/iconsets/dcraven/32x32/online.png diff --git a/data/iconsets/dcraven/32x32/opened.png b/gajim/data/iconsets/dcraven/32x32/opened.png similarity index 100% rename from data/iconsets/dcraven/32x32/opened.png rename to gajim/data/iconsets/dcraven/32x32/opened.png diff --git a/data/iconsets/dcraven/32x32/requested.png b/gajim/data/iconsets/dcraven/32x32/requested.png similarity index 100% rename from data/iconsets/dcraven/32x32/requested.png rename to gajim/data/iconsets/dcraven/32x32/requested.png diff --git a/data/iconsets/dcraven/32x32/xa.png b/gajim/data/iconsets/dcraven/32x32/xa.png similarity index 100% rename from data/iconsets/dcraven/32x32/xa.png rename to gajim/data/iconsets/dcraven/32x32/xa.png diff --git a/data/iconsets/dcraven/48x48/offline.png b/gajim/data/iconsets/dcraven/48x48/offline.png similarity index 100% rename from data/iconsets/dcraven/48x48/offline.png rename to gajim/data/iconsets/dcraven/48x48/offline.png diff --git a/data/iconsets/dcraven/48x48/online.png b/gajim/data/iconsets/dcraven/48x48/online.png similarity index 100% rename from data/iconsets/dcraven/48x48/online.png rename to gajim/data/iconsets/dcraven/48x48/online.png diff --git a/data/iconsets/gnome/16x16/away.png b/gajim/data/iconsets/gnome/16x16/away.png similarity index 100% rename from data/iconsets/gnome/16x16/away.png rename to gajim/data/iconsets/gnome/16x16/away.png diff --git a/data/iconsets/gnome/16x16/chat.png b/gajim/data/iconsets/gnome/16x16/chat.png similarity index 100% rename from data/iconsets/gnome/16x16/chat.png rename to gajim/data/iconsets/gnome/16x16/chat.png diff --git a/data/iconsets/gnome/16x16/closed.png b/gajim/data/iconsets/gnome/16x16/closed.png similarity index 100% rename from data/iconsets/gnome/16x16/closed.png rename to gajim/data/iconsets/gnome/16x16/closed.png diff --git a/data/iconsets/gnome/16x16/connecting.gif b/gajim/data/iconsets/gnome/16x16/connecting.gif similarity index 100% rename from data/iconsets/gnome/16x16/connecting.gif rename to gajim/data/iconsets/gnome/16x16/connecting.gif diff --git a/data/iconsets/gnome/16x16/dnd.png b/gajim/data/iconsets/gnome/16x16/dnd.png similarity index 100% rename from data/iconsets/gnome/16x16/dnd.png rename to gajim/data/iconsets/gnome/16x16/dnd.png diff --git a/data/iconsets/gnome/16x16/error.png b/gajim/data/iconsets/gnome/16x16/error.png similarity index 100% rename from data/iconsets/gnome/16x16/error.png rename to gajim/data/iconsets/gnome/16x16/error.png diff --git a/data/iconsets/gnome/16x16/event.gif b/gajim/data/iconsets/gnome/16x16/event.gif similarity index 100% rename from data/iconsets/gnome/16x16/event.gif rename to gajim/data/iconsets/gnome/16x16/event.gif diff --git a/data/iconsets/gnome/16x16/invisible.png b/gajim/data/iconsets/gnome/16x16/invisible.png similarity index 100% rename from data/iconsets/gnome/16x16/invisible.png rename to gajim/data/iconsets/gnome/16x16/invisible.png diff --git a/data/iconsets/gnome/16x16/muc_active.png b/gajim/data/iconsets/gnome/16x16/muc_active.png similarity index 100% rename from data/iconsets/gnome/16x16/muc_active.png rename to gajim/data/iconsets/gnome/16x16/muc_active.png diff --git a/data/iconsets/gnome/16x16/muc_inactive.png b/gajim/data/iconsets/gnome/16x16/muc_inactive.png similarity index 100% rename from data/iconsets/gnome/16x16/muc_inactive.png rename to gajim/data/iconsets/gnome/16x16/muc_inactive.png diff --git a/data/iconsets/gnome/16x16/not_in_roster.png b/gajim/data/iconsets/gnome/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/gnome/16x16/not_in_roster.png rename to gajim/data/iconsets/gnome/16x16/not_in_roster.png diff --git a/data/iconsets/gnome/16x16/offline.png b/gajim/data/iconsets/gnome/16x16/offline.png similarity index 100% rename from data/iconsets/gnome/16x16/offline.png rename to gajim/data/iconsets/gnome/16x16/offline.png diff --git a/data/iconsets/gnome/16x16/online.png b/gajim/data/iconsets/gnome/16x16/online.png similarity index 100% rename from data/iconsets/gnome/16x16/online.png rename to gajim/data/iconsets/gnome/16x16/online.png diff --git a/data/iconsets/gnome/16x16/opened.png b/gajim/data/iconsets/gnome/16x16/opened.png similarity index 100% rename from data/iconsets/gnome/16x16/opened.png rename to gajim/data/iconsets/gnome/16x16/opened.png diff --git a/data/iconsets/gnome/16x16/requested.png b/gajim/data/iconsets/gnome/16x16/requested.png similarity index 100% rename from data/iconsets/gnome/16x16/requested.png rename to gajim/data/iconsets/gnome/16x16/requested.png diff --git a/data/iconsets/gnome/16x16/xa.png b/gajim/data/iconsets/gnome/16x16/xa.png similarity index 100% rename from data/iconsets/gnome/16x16/xa.png rename to gajim/data/iconsets/gnome/16x16/xa.png diff --git a/data/iconsets/gnome/32x32/away.png b/gajim/data/iconsets/gnome/32x32/away.png similarity index 100% rename from data/iconsets/gnome/32x32/away.png rename to gajim/data/iconsets/gnome/32x32/away.png diff --git a/data/iconsets/gnome/32x32/chat.png b/gajim/data/iconsets/gnome/32x32/chat.png similarity index 100% rename from data/iconsets/gnome/32x32/chat.png rename to gajim/data/iconsets/gnome/32x32/chat.png diff --git a/data/iconsets/gnome/32x32/dnd.png b/gajim/data/iconsets/gnome/32x32/dnd.png similarity index 100% rename from data/iconsets/gnome/32x32/dnd.png rename to gajim/data/iconsets/gnome/32x32/dnd.png diff --git a/data/iconsets/gnome/32x32/muc_active.png b/gajim/data/iconsets/gnome/32x32/muc_active.png similarity index 100% rename from data/iconsets/gnome/32x32/muc_active.png rename to gajim/data/iconsets/gnome/32x32/muc_active.png diff --git a/data/iconsets/gnome/32x32/muc_inactive.png b/gajim/data/iconsets/gnome/32x32/muc_inactive.png similarity index 100% rename from data/iconsets/gnome/32x32/muc_inactive.png rename to gajim/data/iconsets/gnome/32x32/muc_inactive.png diff --git a/data/iconsets/gnome/32x32/not_in_roster.png b/gajim/data/iconsets/gnome/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/gnome/32x32/not_in_roster.png rename to gajim/data/iconsets/gnome/32x32/not_in_roster.png diff --git a/data/iconsets/gnome/32x32/offline.png b/gajim/data/iconsets/gnome/32x32/offline.png similarity index 100% rename from data/iconsets/gnome/32x32/offline.png rename to gajim/data/iconsets/gnome/32x32/offline.png diff --git a/data/iconsets/gnome/32x32/online.png b/gajim/data/iconsets/gnome/32x32/online.png similarity index 100% rename from data/iconsets/gnome/32x32/online.png rename to gajim/data/iconsets/gnome/32x32/online.png diff --git a/data/iconsets/gnome/32x32/requested.png b/gajim/data/iconsets/gnome/32x32/requested.png similarity index 100% rename from data/iconsets/gnome/32x32/requested.png rename to gajim/data/iconsets/gnome/32x32/requested.png diff --git a/data/iconsets/gnome/32x32/xa.png b/gajim/data/iconsets/gnome/32x32/xa.png similarity index 100% rename from data/iconsets/gnome/32x32/xa.png rename to gajim/data/iconsets/gnome/32x32/xa.png diff --git a/data/iconsets/gnome/48x48/offline.png b/gajim/data/iconsets/gnome/48x48/offline.png similarity index 100% rename from data/iconsets/gnome/48x48/offline.png rename to gajim/data/iconsets/gnome/48x48/offline.png diff --git a/data/iconsets/gnome/48x48/online.png b/gajim/data/iconsets/gnome/48x48/online.png similarity index 100% rename from data/iconsets/gnome/48x48/online.png rename to gajim/data/iconsets/gnome/48x48/online.png diff --git a/data/iconsets/goojim/16x16/away.png b/gajim/data/iconsets/goojim/16x16/away.png similarity index 100% rename from data/iconsets/goojim/16x16/away.png rename to gajim/data/iconsets/goojim/16x16/away.png diff --git a/data/iconsets/goojim/16x16/chat.png b/gajim/data/iconsets/goojim/16x16/chat.png similarity index 100% rename from data/iconsets/goojim/16x16/chat.png rename to gajim/data/iconsets/goojim/16x16/chat.png diff --git a/data/iconsets/goojim/16x16/closed.png b/gajim/data/iconsets/goojim/16x16/closed.png similarity index 100% rename from data/iconsets/goojim/16x16/closed.png rename to gajim/data/iconsets/goojim/16x16/closed.png diff --git a/data/iconsets/goojim/16x16/connecting.png b/gajim/data/iconsets/goojim/16x16/connecting.png similarity index 100% rename from data/iconsets/goojim/16x16/connecting.png rename to gajim/data/iconsets/goojim/16x16/connecting.png diff --git a/data/iconsets/goojim/16x16/dnd.png b/gajim/data/iconsets/goojim/16x16/dnd.png similarity index 100% rename from data/iconsets/goojim/16x16/dnd.png rename to gajim/data/iconsets/goojim/16x16/dnd.png diff --git a/data/iconsets/goojim/16x16/error.png b/gajim/data/iconsets/goojim/16x16/error.png similarity index 100% rename from data/iconsets/goojim/16x16/error.png rename to gajim/data/iconsets/goojim/16x16/error.png diff --git a/data/iconsets/goojim/16x16/event.png b/gajim/data/iconsets/goojim/16x16/event.png similarity index 100% rename from data/iconsets/goojim/16x16/event.png rename to gajim/data/iconsets/goojim/16x16/event.png diff --git a/data/iconsets/goojim/16x16/invisible.png b/gajim/data/iconsets/goojim/16x16/invisible.png similarity index 100% rename from data/iconsets/goojim/16x16/invisible.png rename to gajim/data/iconsets/goojim/16x16/invisible.png diff --git a/data/iconsets/goojim/16x16/muc_active.png b/gajim/data/iconsets/goojim/16x16/muc_active.png similarity index 100% rename from data/iconsets/goojim/16x16/muc_active.png rename to gajim/data/iconsets/goojim/16x16/muc_active.png diff --git a/data/iconsets/goojim/16x16/muc_inactive.png b/gajim/data/iconsets/goojim/16x16/muc_inactive.png similarity index 100% rename from data/iconsets/goojim/16x16/muc_inactive.png rename to gajim/data/iconsets/goojim/16x16/muc_inactive.png diff --git a/data/iconsets/goojim/16x16/not_in_roster.png b/gajim/data/iconsets/goojim/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/goojim/16x16/not_in_roster.png rename to gajim/data/iconsets/goojim/16x16/not_in_roster.png diff --git a/data/iconsets/goojim/16x16/offline.png b/gajim/data/iconsets/goojim/16x16/offline.png similarity index 100% rename from data/iconsets/goojim/16x16/offline.png rename to gajim/data/iconsets/goojim/16x16/offline.png diff --git a/data/iconsets/goojim/16x16/online.png b/gajim/data/iconsets/goojim/16x16/online.png similarity index 100% rename from data/iconsets/goojim/16x16/online.png rename to gajim/data/iconsets/goojim/16x16/online.png diff --git a/data/iconsets/goojim/16x16/opened.png b/gajim/data/iconsets/goojim/16x16/opened.png similarity index 100% rename from data/iconsets/goojim/16x16/opened.png rename to gajim/data/iconsets/goojim/16x16/opened.png diff --git a/data/iconsets/goojim/16x16/requested.png b/gajim/data/iconsets/goojim/16x16/requested.png similarity index 100% rename from data/iconsets/goojim/16x16/requested.png rename to gajim/data/iconsets/goojim/16x16/requested.png diff --git a/data/iconsets/goojim/16x16/xa.png b/gajim/data/iconsets/goojim/16x16/xa.png similarity index 100% rename from data/iconsets/goojim/16x16/xa.png rename to gajim/data/iconsets/goojim/16x16/xa.png diff --git a/data/iconsets/goojim/32x32/away.png b/gajim/data/iconsets/goojim/32x32/away.png similarity index 100% rename from data/iconsets/goojim/32x32/away.png rename to gajim/data/iconsets/goojim/32x32/away.png diff --git a/data/iconsets/goojim/32x32/chat.png b/gajim/data/iconsets/goojim/32x32/chat.png similarity index 100% rename from data/iconsets/goojim/32x32/chat.png rename to gajim/data/iconsets/goojim/32x32/chat.png diff --git a/data/iconsets/goojim/32x32/closed.png b/gajim/data/iconsets/goojim/32x32/closed.png similarity index 100% rename from data/iconsets/goojim/32x32/closed.png rename to gajim/data/iconsets/goojim/32x32/closed.png diff --git a/data/iconsets/goojim/32x32/connecting.png b/gajim/data/iconsets/goojim/32x32/connecting.png similarity index 100% rename from data/iconsets/goojim/32x32/connecting.png rename to gajim/data/iconsets/goojim/32x32/connecting.png diff --git a/data/iconsets/goojim/32x32/dnd.png b/gajim/data/iconsets/goojim/32x32/dnd.png similarity index 100% rename from data/iconsets/goojim/32x32/dnd.png rename to gajim/data/iconsets/goojim/32x32/dnd.png diff --git a/data/iconsets/goojim/32x32/error.png b/gajim/data/iconsets/goojim/32x32/error.png similarity index 100% rename from data/iconsets/goojim/32x32/error.png rename to gajim/data/iconsets/goojim/32x32/error.png diff --git a/data/iconsets/goojim/32x32/event.png b/gajim/data/iconsets/goojim/32x32/event.png similarity index 100% rename from data/iconsets/goojim/32x32/event.png rename to gajim/data/iconsets/goojim/32x32/event.png diff --git a/data/iconsets/goojim/32x32/invisible.png b/gajim/data/iconsets/goojim/32x32/invisible.png similarity index 100% rename from data/iconsets/goojim/32x32/invisible.png rename to gajim/data/iconsets/goojim/32x32/invisible.png diff --git a/data/iconsets/goojim/32x32/muc_active.png b/gajim/data/iconsets/goojim/32x32/muc_active.png similarity index 100% rename from data/iconsets/goojim/32x32/muc_active.png rename to gajim/data/iconsets/goojim/32x32/muc_active.png diff --git a/data/iconsets/goojim/32x32/muc_inactive.png b/gajim/data/iconsets/goojim/32x32/muc_inactive.png similarity index 100% rename from data/iconsets/goojim/32x32/muc_inactive.png rename to gajim/data/iconsets/goojim/32x32/muc_inactive.png diff --git a/data/iconsets/goojim/32x32/not_in_roster.png b/gajim/data/iconsets/goojim/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/goojim/32x32/not_in_roster.png rename to gajim/data/iconsets/goojim/32x32/not_in_roster.png diff --git a/data/iconsets/goojim/32x32/offline.png b/gajim/data/iconsets/goojim/32x32/offline.png similarity index 100% rename from data/iconsets/goojim/32x32/offline.png rename to gajim/data/iconsets/goojim/32x32/offline.png diff --git a/data/iconsets/goojim/32x32/online.png b/gajim/data/iconsets/goojim/32x32/online.png similarity index 100% rename from data/iconsets/goojim/32x32/online.png rename to gajim/data/iconsets/goojim/32x32/online.png diff --git a/data/iconsets/goojim/32x32/opened.png b/gajim/data/iconsets/goojim/32x32/opened.png similarity index 100% rename from data/iconsets/goojim/32x32/opened.png rename to gajim/data/iconsets/goojim/32x32/opened.png diff --git a/data/iconsets/goojim/32x32/requested.png b/gajim/data/iconsets/goojim/32x32/requested.png similarity index 100% rename from data/iconsets/goojim/32x32/requested.png rename to gajim/data/iconsets/goojim/32x32/requested.png diff --git a/data/iconsets/goojim/32x32/xa.png b/gajim/data/iconsets/goojim/32x32/xa.png similarity index 100% rename from data/iconsets/goojim/32x32/xa.png rename to gajim/data/iconsets/goojim/32x32/xa.png diff --git a/data/iconsets/goojim/48x48/offline.png b/gajim/data/iconsets/goojim/48x48/offline.png similarity index 100% rename from data/iconsets/goojim/48x48/offline.png rename to gajim/data/iconsets/goojim/48x48/offline.png diff --git a/data/iconsets/goojim/48x48/online.png b/gajim/data/iconsets/goojim/48x48/online.png similarity index 100% rename from data/iconsets/goojim/48x48/online.png rename to gajim/data/iconsets/goojim/48x48/online.png diff --git a/data/iconsets/gota/16x16/away.png b/gajim/data/iconsets/gota/16x16/away.png similarity index 100% rename from data/iconsets/gota/16x16/away.png rename to gajim/data/iconsets/gota/16x16/away.png diff --git a/data/iconsets/gota/16x16/chat.png b/gajim/data/iconsets/gota/16x16/chat.png similarity index 100% rename from data/iconsets/gota/16x16/chat.png rename to gajim/data/iconsets/gota/16x16/chat.png diff --git a/data/iconsets/gota/16x16/closed.png b/gajim/data/iconsets/gota/16x16/closed.png similarity index 100% rename from data/iconsets/gota/16x16/closed.png rename to gajim/data/iconsets/gota/16x16/closed.png diff --git a/data/iconsets/gota/16x16/connecting.gif b/gajim/data/iconsets/gota/16x16/connecting.gif similarity index 100% rename from data/iconsets/gota/16x16/connecting.gif rename to gajim/data/iconsets/gota/16x16/connecting.gif diff --git a/data/iconsets/gota/16x16/dnd.png b/gajim/data/iconsets/gota/16x16/dnd.png similarity index 100% rename from data/iconsets/gota/16x16/dnd.png rename to gajim/data/iconsets/gota/16x16/dnd.png diff --git a/data/iconsets/gota/16x16/error.png b/gajim/data/iconsets/gota/16x16/error.png similarity index 100% rename from data/iconsets/gota/16x16/error.png rename to gajim/data/iconsets/gota/16x16/error.png diff --git a/data/iconsets/gota/16x16/event.gif b/gajim/data/iconsets/gota/16x16/event.gif similarity index 100% rename from data/iconsets/gota/16x16/event.gif rename to gajim/data/iconsets/gota/16x16/event.gif diff --git a/data/iconsets/gota/16x16/invisible.png b/gajim/data/iconsets/gota/16x16/invisible.png similarity index 100% rename from data/iconsets/gota/16x16/invisible.png rename to gajim/data/iconsets/gota/16x16/invisible.png diff --git a/data/iconsets/gota/16x16/muc_active.png b/gajim/data/iconsets/gota/16x16/muc_active.png similarity index 100% rename from data/iconsets/gota/16x16/muc_active.png rename to gajim/data/iconsets/gota/16x16/muc_active.png diff --git a/data/iconsets/gota/16x16/muc_inactive.png b/gajim/data/iconsets/gota/16x16/muc_inactive.png similarity index 100% rename from data/iconsets/gota/16x16/muc_inactive.png rename to gajim/data/iconsets/gota/16x16/muc_inactive.png diff --git a/data/iconsets/gota/16x16/not_in_roster.png b/gajim/data/iconsets/gota/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/gota/16x16/not_in_roster.png rename to gajim/data/iconsets/gota/16x16/not_in_roster.png diff --git a/data/iconsets/gota/16x16/offline.png b/gajim/data/iconsets/gota/16x16/offline.png similarity index 100% rename from data/iconsets/gota/16x16/offline.png rename to gajim/data/iconsets/gota/16x16/offline.png diff --git a/data/iconsets/gota/16x16/online.png b/gajim/data/iconsets/gota/16x16/online.png similarity index 100% rename from data/iconsets/gota/16x16/online.png rename to gajim/data/iconsets/gota/16x16/online.png diff --git a/data/iconsets/gota/16x16/opened.png b/gajim/data/iconsets/gota/16x16/opened.png similarity index 100% rename from data/iconsets/gota/16x16/opened.png rename to gajim/data/iconsets/gota/16x16/opened.png diff --git a/data/iconsets/gota/16x16/requested.png b/gajim/data/iconsets/gota/16x16/requested.png similarity index 100% rename from data/iconsets/gota/16x16/requested.png rename to gajim/data/iconsets/gota/16x16/requested.png diff --git a/data/iconsets/gota/16x16/xa.png b/gajim/data/iconsets/gota/16x16/xa.png similarity index 100% rename from data/iconsets/gota/16x16/xa.png rename to gajim/data/iconsets/gota/16x16/xa.png diff --git a/data/iconsets/gota/32x32/away.png b/gajim/data/iconsets/gota/32x32/away.png similarity index 100% rename from data/iconsets/gota/32x32/away.png rename to gajim/data/iconsets/gota/32x32/away.png diff --git a/data/iconsets/gota/32x32/chat.png b/gajim/data/iconsets/gota/32x32/chat.png similarity index 100% rename from data/iconsets/gota/32x32/chat.png rename to gajim/data/iconsets/gota/32x32/chat.png diff --git a/data/iconsets/gota/32x32/closed.png b/gajim/data/iconsets/gota/32x32/closed.png similarity index 100% rename from data/iconsets/gota/32x32/closed.png rename to gajim/data/iconsets/gota/32x32/closed.png diff --git a/data/iconsets/gota/32x32/connecting.gif b/gajim/data/iconsets/gota/32x32/connecting.gif similarity index 100% rename from data/iconsets/gota/32x32/connecting.gif rename to gajim/data/iconsets/gota/32x32/connecting.gif diff --git a/data/iconsets/gota/32x32/dnd.png b/gajim/data/iconsets/gota/32x32/dnd.png similarity index 100% rename from data/iconsets/gota/32x32/dnd.png rename to gajim/data/iconsets/gota/32x32/dnd.png diff --git a/data/iconsets/gota/32x32/error.png b/gajim/data/iconsets/gota/32x32/error.png similarity index 100% rename from data/iconsets/gota/32x32/error.png rename to gajim/data/iconsets/gota/32x32/error.png diff --git a/data/iconsets/gota/32x32/event.gif b/gajim/data/iconsets/gota/32x32/event.gif similarity index 100% rename from data/iconsets/gota/32x32/event.gif rename to gajim/data/iconsets/gota/32x32/event.gif diff --git a/data/iconsets/gota/32x32/invisible.png b/gajim/data/iconsets/gota/32x32/invisible.png similarity index 100% rename from data/iconsets/gota/32x32/invisible.png rename to gajim/data/iconsets/gota/32x32/invisible.png diff --git a/data/iconsets/gota/32x32/muc_active.png b/gajim/data/iconsets/gota/32x32/muc_active.png similarity index 100% rename from data/iconsets/gota/32x32/muc_active.png rename to gajim/data/iconsets/gota/32x32/muc_active.png diff --git a/data/iconsets/gota/32x32/muc_inactive.png b/gajim/data/iconsets/gota/32x32/muc_inactive.png similarity index 100% rename from data/iconsets/gota/32x32/muc_inactive.png rename to gajim/data/iconsets/gota/32x32/muc_inactive.png diff --git a/data/iconsets/gota/32x32/not_in_roster.png b/gajim/data/iconsets/gota/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/gota/32x32/not_in_roster.png rename to gajim/data/iconsets/gota/32x32/not_in_roster.png diff --git a/data/iconsets/gota/32x32/offline.png b/gajim/data/iconsets/gota/32x32/offline.png similarity index 100% rename from data/iconsets/gota/32x32/offline.png rename to gajim/data/iconsets/gota/32x32/offline.png diff --git a/data/iconsets/gota/32x32/online.png b/gajim/data/iconsets/gota/32x32/online.png similarity index 100% rename from data/iconsets/gota/32x32/online.png rename to gajim/data/iconsets/gota/32x32/online.png diff --git a/data/iconsets/gota/32x32/opened.png b/gajim/data/iconsets/gota/32x32/opened.png similarity index 100% rename from data/iconsets/gota/32x32/opened.png rename to gajim/data/iconsets/gota/32x32/opened.png diff --git a/data/iconsets/gota/32x32/requested.png b/gajim/data/iconsets/gota/32x32/requested.png similarity index 100% rename from data/iconsets/gota/32x32/requested.png rename to gajim/data/iconsets/gota/32x32/requested.png diff --git a/data/iconsets/gota/32x32/xa.png b/gajim/data/iconsets/gota/32x32/xa.png similarity index 100% rename from data/iconsets/gota/32x32/xa.png rename to gajim/data/iconsets/gota/32x32/xa.png diff --git a/data/iconsets/gota/48x48/offline.png b/gajim/data/iconsets/gota/48x48/offline.png similarity index 100% rename from data/iconsets/gota/48x48/offline.png rename to gajim/data/iconsets/gota/48x48/offline.png diff --git a/data/iconsets/gota/48x48/online.png b/gajim/data/iconsets/gota/48x48/online.png similarity index 100% rename from data/iconsets/gota/48x48/online.png rename to gajim/data/iconsets/gota/48x48/online.png diff --git a/data/iconsets/jabberbulb/16x16/away.png b/gajim/data/iconsets/jabberbulb/16x16/away.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/away.png rename to gajim/data/iconsets/jabberbulb/16x16/away.png diff --git a/data/iconsets/jabberbulb/16x16/chat.png b/gajim/data/iconsets/jabberbulb/16x16/chat.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/chat.png rename to gajim/data/iconsets/jabberbulb/16x16/chat.png diff --git a/data/iconsets/jabberbulb/16x16/closed.png b/gajim/data/iconsets/jabberbulb/16x16/closed.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/closed.png rename to gajim/data/iconsets/jabberbulb/16x16/closed.png diff --git a/data/iconsets/jabberbulb/16x16/connecting.png b/gajim/data/iconsets/jabberbulb/16x16/connecting.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/connecting.png rename to gajim/data/iconsets/jabberbulb/16x16/connecting.png diff --git a/data/iconsets/jabberbulb/16x16/dnd.png b/gajim/data/iconsets/jabberbulb/16x16/dnd.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/dnd.png rename to gajim/data/iconsets/jabberbulb/16x16/dnd.png diff --git a/data/iconsets/jabberbulb/16x16/error.png b/gajim/data/iconsets/jabberbulb/16x16/error.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/error.png rename to gajim/data/iconsets/jabberbulb/16x16/error.png diff --git a/data/iconsets/jabberbulb/16x16/event.gif b/gajim/data/iconsets/jabberbulb/16x16/event.gif similarity index 100% rename from data/iconsets/jabberbulb/16x16/event.gif rename to gajim/data/iconsets/jabberbulb/16x16/event.gif diff --git a/data/iconsets/jabberbulb/16x16/invisible.png b/gajim/data/iconsets/jabberbulb/16x16/invisible.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/invisible.png rename to gajim/data/iconsets/jabberbulb/16x16/invisible.png diff --git a/data/iconsets/jabberbulb/16x16/muc_active.png b/gajim/data/iconsets/jabberbulb/16x16/muc_active.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/muc_active.png rename to gajim/data/iconsets/jabberbulb/16x16/muc_active.png diff --git a/data/iconsets/jabberbulb/16x16/muc_inactive.png b/gajim/data/iconsets/jabberbulb/16x16/muc_inactive.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/muc_inactive.png rename to gajim/data/iconsets/jabberbulb/16x16/muc_inactive.png diff --git a/data/iconsets/jabberbulb/16x16/not_in_roster.png b/gajim/data/iconsets/jabberbulb/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/not_in_roster.png rename to gajim/data/iconsets/jabberbulb/16x16/not_in_roster.png diff --git a/data/iconsets/jabberbulb/16x16/offline.png b/gajim/data/iconsets/jabberbulb/16x16/offline.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/offline.png rename to gajim/data/iconsets/jabberbulb/16x16/offline.png diff --git a/data/iconsets/jabberbulb/16x16/online.png b/gajim/data/iconsets/jabberbulb/16x16/online.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/online.png rename to gajim/data/iconsets/jabberbulb/16x16/online.png diff --git a/data/iconsets/jabberbulb/16x16/opened.png b/gajim/data/iconsets/jabberbulb/16x16/opened.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/opened.png rename to gajim/data/iconsets/jabberbulb/16x16/opened.png diff --git a/data/iconsets/jabberbulb/16x16/requested.png b/gajim/data/iconsets/jabberbulb/16x16/requested.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/requested.png rename to gajim/data/iconsets/jabberbulb/16x16/requested.png diff --git a/data/iconsets/jabberbulb/16x16/xa.png b/gajim/data/iconsets/jabberbulb/16x16/xa.png similarity index 100% rename from data/iconsets/jabberbulb/16x16/xa.png rename to gajim/data/iconsets/jabberbulb/16x16/xa.png diff --git a/data/iconsets/jabberbulb/32x32/away.png b/gajim/data/iconsets/jabberbulb/32x32/away.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/away.png rename to gajim/data/iconsets/jabberbulb/32x32/away.png diff --git a/data/iconsets/jabberbulb/32x32/chat.png b/gajim/data/iconsets/jabberbulb/32x32/chat.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/chat.png rename to gajim/data/iconsets/jabberbulb/32x32/chat.png diff --git a/data/iconsets/jabberbulb/32x32/dnd.png b/gajim/data/iconsets/jabberbulb/32x32/dnd.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/dnd.png rename to gajim/data/iconsets/jabberbulb/32x32/dnd.png diff --git a/data/iconsets/jabberbulb/32x32/error.png b/gajim/data/iconsets/jabberbulb/32x32/error.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/error.png rename to gajim/data/iconsets/jabberbulb/32x32/error.png diff --git a/data/iconsets/jabberbulb/32x32/invisible.png b/gajim/data/iconsets/jabberbulb/32x32/invisible.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/invisible.png rename to gajim/data/iconsets/jabberbulb/32x32/invisible.png diff --git a/data/iconsets/jabberbulb/32x32/muc_active.png b/gajim/data/iconsets/jabberbulb/32x32/muc_active.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/muc_active.png rename to gajim/data/iconsets/jabberbulb/32x32/muc_active.png diff --git a/data/iconsets/jabberbulb/32x32/muc_inactive.png b/gajim/data/iconsets/jabberbulb/32x32/muc_inactive.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/muc_inactive.png rename to gajim/data/iconsets/jabberbulb/32x32/muc_inactive.png diff --git a/data/iconsets/jabberbulb/32x32/not_in_roster.png b/gajim/data/iconsets/jabberbulb/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/not_in_roster.png rename to gajim/data/iconsets/jabberbulb/32x32/not_in_roster.png diff --git a/data/iconsets/jabberbulb/32x32/offline.png b/gajim/data/iconsets/jabberbulb/32x32/offline.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/offline.png rename to gajim/data/iconsets/jabberbulb/32x32/offline.png diff --git a/data/iconsets/jabberbulb/32x32/online.png b/gajim/data/iconsets/jabberbulb/32x32/online.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/online.png rename to gajim/data/iconsets/jabberbulb/32x32/online.png diff --git a/data/iconsets/jabberbulb/32x32/requested.png b/gajim/data/iconsets/jabberbulb/32x32/requested.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/requested.png rename to gajim/data/iconsets/jabberbulb/32x32/requested.png diff --git a/data/iconsets/jabberbulb/32x32/xa.png b/gajim/data/iconsets/jabberbulb/32x32/xa.png similarity index 100% rename from data/iconsets/jabberbulb/32x32/xa.png rename to gajim/data/iconsets/jabberbulb/32x32/xa.png diff --git a/data/iconsets/jabberbulb/48x48/offline.png b/gajim/data/iconsets/jabberbulb/48x48/offline.png similarity index 100% rename from data/iconsets/jabberbulb/48x48/offline.png rename to gajim/data/iconsets/jabberbulb/48x48/offline.png diff --git a/data/iconsets/jabberbulb/48x48/online.png b/gajim/data/iconsets/jabberbulb/48x48/online.png similarity index 100% rename from data/iconsets/jabberbulb/48x48/online.png rename to gajim/data/iconsets/jabberbulb/48x48/online.png diff --git a/data/iconsets/sun/16x16/away.png b/gajim/data/iconsets/sun/16x16/away.png similarity index 100% rename from data/iconsets/sun/16x16/away.png rename to gajim/data/iconsets/sun/16x16/away.png diff --git a/data/iconsets/sun/16x16/chat.png b/gajim/data/iconsets/sun/16x16/chat.png similarity index 100% rename from data/iconsets/sun/16x16/chat.png rename to gajim/data/iconsets/sun/16x16/chat.png diff --git a/data/iconsets/sun/16x16/closed.png b/gajim/data/iconsets/sun/16x16/closed.png similarity index 100% rename from data/iconsets/sun/16x16/closed.png rename to gajim/data/iconsets/sun/16x16/closed.png diff --git a/data/iconsets/sun/16x16/connecting.gif b/gajim/data/iconsets/sun/16x16/connecting.gif similarity index 100% rename from data/iconsets/sun/16x16/connecting.gif rename to gajim/data/iconsets/sun/16x16/connecting.gif diff --git a/data/iconsets/sun/16x16/dnd.png b/gajim/data/iconsets/sun/16x16/dnd.png similarity index 100% rename from data/iconsets/sun/16x16/dnd.png rename to gajim/data/iconsets/sun/16x16/dnd.png diff --git a/data/iconsets/sun/16x16/error.png b/gajim/data/iconsets/sun/16x16/error.png similarity index 100% rename from data/iconsets/sun/16x16/error.png rename to gajim/data/iconsets/sun/16x16/error.png diff --git a/data/iconsets/sun/16x16/event.gif b/gajim/data/iconsets/sun/16x16/event.gif similarity index 100% rename from data/iconsets/sun/16x16/event.gif rename to gajim/data/iconsets/sun/16x16/event.gif diff --git a/data/iconsets/sun/16x16/invisible.png b/gajim/data/iconsets/sun/16x16/invisible.png similarity index 100% rename from data/iconsets/sun/16x16/invisible.png rename to gajim/data/iconsets/sun/16x16/invisible.png diff --git a/data/iconsets/sun/16x16/muc_active.png b/gajim/data/iconsets/sun/16x16/muc_active.png similarity index 100% rename from data/iconsets/sun/16x16/muc_active.png rename to gajim/data/iconsets/sun/16x16/muc_active.png diff --git a/data/iconsets/sun/16x16/muc_inactive.png b/gajim/data/iconsets/sun/16x16/muc_inactive.png similarity index 100% rename from data/iconsets/sun/16x16/muc_inactive.png rename to gajim/data/iconsets/sun/16x16/muc_inactive.png diff --git a/data/iconsets/sun/16x16/not_in_roster.png b/gajim/data/iconsets/sun/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/sun/16x16/not_in_roster.png rename to gajim/data/iconsets/sun/16x16/not_in_roster.png diff --git a/data/iconsets/sun/16x16/offline.png b/gajim/data/iconsets/sun/16x16/offline.png similarity index 100% rename from data/iconsets/sun/16x16/offline.png rename to gajim/data/iconsets/sun/16x16/offline.png diff --git a/data/iconsets/sun/16x16/online.png b/gajim/data/iconsets/sun/16x16/online.png similarity index 100% rename from data/iconsets/sun/16x16/online.png rename to gajim/data/iconsets/sun/16x16/online.png diff --git a/data/iconsets/sun/16x16/opened.png b/gajim/data/iconsets/sun/16x16/opened.png similarity index 100% rename from data/iconsets/sun/16x16/opened.png rename to gajim/data/iconsets/sun/16x16/opened.png diff --git a/data/iconsets/sun/16x16/requested.png b/gajim/data/iconsets/sun/16x16/requested.png similarity index 100% rename from data/iconsets/sun/16x16/requested.png rename to gajim/data/iconsets/sun/16x16/requested.png diff --git a/data/iconsets/sun/16x16/xa.png b/gajim/data/iconsets/sun/16x16/xa.png similarity index 100% rename from data/iconsets/sun/16x16/xa.png rename to gajim/data/iconsets/sun/16x16/xa.png diff --git a/data/iconsets/sun/32x32/away.png b/gajim/data/iconsets/sun/32x32/away.png similarity index 100% rename from data/iconsets/sun/32x32/away.png rename to gajim/data/iconsets/sun/32x32/away.png diff --git a/data/iconsets/sun/32x32/chat.png b/gajim/data/iconsets/sun/32x32/chat.png similarity index 100% rename from data/iconsets/sun/32x32/chat.png rename to gajim/data/iconsets/sun/32x32/chat.png diff --git a/data/iconsets/sun/32x32/dnd.png b/gajim/data/iconsets/sun/32x32/dnd.png similarity index 100% rename from data/iconsets/sun/32x32/dnd.png rename to gajim/data/iconsets/sun/32x32/dnd.png diff --git a/data/iconsets/sun/32x32/error.png b/gajim/data/iconsets/sun/32x32/error.png similarity index 100% rename from data/iconsets/sun/32x32/error.png rename to gajim/data/iconsets/sun/32x32/error.png diff --git a/data/iconsets/sun/32x32/invisible.png b/gajim/data/iconsets/sun/32x32/invisible.png similarity index 100% rename from data/iconsets/sun/32x32/invisible.png rename to gajim/data/iconsets/sun/32x32/invisible.png diff --git a/data/iconsets/sun/32x32/muc_active.png b/gajim/data/iconsets/sun/32x32/muc_active.png similarity index 100% rename from data/iconsets/sun/32x32/muc_active.png rename to gajim/data/iconsets/sun/32x32/muc_active.png diff --git a/data/iconsets/sun/32x32/muc_inactive.png b/gajim/data/iconsets/sun/32x32/muc_inactive.png similarity index 100% rename from data/iconsets/sun/32x32/muc_inactive.png rename to gajim/data/iconsets/sun/32x32/muc_inactive.png diff --git a/data/iconsets/sun/32x32/not_in_roster.png b/gajim/data/iconsets/sun/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/sun/32x32/not_in_roster.png rename to gajim/data/iconsets/sun/32x32/not_in_roster.png diff --git a/data/iconsets/sun/32x32/offline.png b/gajim/data/iconsets/sun/32x32/offline.png similarity index 100% rename from data/iconsets/sun/32x32/offline.png rename to gajim/data/iconsets/sun/32x32/offline.png diff --git a/data/iconsets/sun/32x32/online.png b/gajim/data/iconsets/sun/32x32/online.png similarity index 100% rename from data/iconsets/sun/32x32/online.png rename to gajim/data/iconsets/sun/32x32/online.png diff --git a/data/iconsets/sun/32x32/requested.png b/gajim/data/iconsets/sun/32x32/requested.png similarity index 100% rename from data/iconsets/sun/32x32/requested.png rename to gajim/data/iconsets/sun/32x32/requested.png diff --git a/data/iconsets/sun/32x32/xa.png b/gajim/data/iconsets/sun/32x32/xa.png similarity index 100% rename from data/iconsets/sun/32x32/xa.png rename to gajim/data/iconsets/sun/32x32/xa.png diff --git a/data/iconsets/sun/48x48/offline.png b/gajim/data/iconsets/sun/48x48/offline.png similarity index 100% rename from data/iconsets/sun/48x48/offline.png rename to gajim/data/iconsets/sun/48x48/offline.png diff --git a/data/iconsets/sun/48x48/online.png b/gajim/data/iconsets/sun/48x48/online.png similarity index 100% rename from data/iconsets/sun/48x48/online.png rename to gajim/data/iconsets/sun/48x48/online.png diff --git a/data/iconsets/transports/aim/16x16/away.png b/gajim/data/iconsets/transports/aim/16x16/away.png similarity index 100% rename from data/iconsets/transports/aim/16x16/away.png rename to gajim/data/iconsets/transports/aim/16x16/away.png diff --git a/data/iconsets/transports/aim/16x16/chat.png b/gajim/data/iconsets/transports/aim/16x16/chat.png similarity index 100% rename from data/iconsets/transports/aim/16x16/chat.png rename to gajim/data/iconsets/transports/aim/16x16/chat.png diff --git a/data/iconsets/transports/aim/16x16/dnd.png b/gajim/data/iconsets/transports/aim/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/aim/16x16/dnd.png rename to gajim/data/iconsets/transports/aim/16x16/dnd.png diff --git a/data/iconsets/transports/aim/16x16/not_in_roster.png b/gajim/data/iconsets/transports/aim/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/transports/aim/16x16/not_in_roster.png rename to gajim/data/iconsets/transports/aim/16x16/not_in_roster.png diff --git a/data/iconsets/transports/aim/16x16/offline.png b/gajim/data/iconsets/transports/aim/16x16/offline.png similarity index 100% rename from data/iconsets/transports/aim/16x16/offline.png rename to gajim/data/iconsets/transports/aim/16x16/offline.png diff --git a/data/iconsets/transports/aim/16x16/online.png b/gajim/data/iconsets/transports/aim/16x16/online.png similarity index 100% rename from data/iconsets/transports/aim/16x16/online.png rename to gajim/data/iconsets/transports/aim/16x16/online.png diff --git a/data/iconsets/transports/aim/16x16/xa.png b/gajim/data/iconsets/transports/aim/16x16/xa.png similarity index 100% rename from data/iconsets/transports/aim/16x16/xa.png rename to gajim/data/iconsets/transports/aim/16x16/xa.png diff --git a/data/iconsets/transports/aim/32x32/away.png b/gajim/data/iconsets/transports/aim/32x32/away.png similarity index 100% rename from data/iconsets/transports/aim/32x32/away.png rename to gajim/data/iconsets/transports/aim/32x32/away.png diff --git a/data/iconsets/transports/aim/32x32/chat.png b/gajim/data/iconsets/transports/aim/32x32/chat.png similarity index 100% rename from data/iconsets/transports/aim/32x32/chat.png rename to gajim/data/iconsets/transports/aim/32x32/chat.png diff --git a/data/iconsets/transports/aim/32x32/dnd.png b/gajim/data/iconsets/transports/aim/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/aim/32x32/dnd.png rename to gajim/data/iconsets/transports/aim/32x32/dnd.png diff --git a/data/iconsets/transports/aim/32x32/not_in_roster.png b/gajim/data/iconsets/transports/aim/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/transports/aim/32x32/not_in_roster.png rename to gajim/data/iconsets/transports/aim/32x32/not_in_roster.png diff --git a/data/iconsets/transports/aim/32x32/offline.png b/gajim/data/iconsets/transports/aim/32x32/offline.png similarity index 100% rename from data/iconsets/transports/aim/32x32/offline.png rename to gajim/data/iconsets/transports/aim/32x32/offline.png diff --git a/data/iconsets/transports/aim/32x32/online.png b/gajim/data/iconsets/transports/aim/32x32/online.png similarity index 100% rename from data/iconsets/transports/aim/32x32/online.png rename to gajim/data/iconsets/transports/aim/32x32/online.png diff --git a/data/iconsets/transports/aim/32x32/xa.png b/gajim/data/iconsets/transports/aim/32x32/xa.png similarity index 100% rename from data/iconsets/transports/aim/32x32/xa.png rename to gajim/data/iconsets/transports/aim/32x32/xa.png diff --git a/data/iconsets/transports/aim/48x48/offline.png b/gajim/data/iconsets/transports/aim/48x48/offline.png similarity index 100% rename from data/iconsets/transports/aim/48x48/offline.png rename to gajim/data/iconsets/transports/aim/48x48/offline.png diff --git a/data/iconsets/transports/aim/48x48/online.png b/gajim/data/iconsets/transports/aim/48x48/online.png similarity index 100% rename from data/iconsets/transports/aim/48x48/online.png rename to gajim/data/iconsets/transports/aim/48x48/online.png diff --git a/data/iconsets/transports/facebook/16x16/away.png b/gajim/data/iconsets/transports/facebook/16x16/away.png similarity index 100% rename from data/iconsets/transports/facebook/16x16/away.png rename to gajim/data/iconsets/transports/facebook/16x16/away.png diff --git a/data/iconsets/transports/facebook/16x16/chat.png b/gajim/data/iconsets/transports/facebook/16x16/chat.png similarity index 100% rename from data/iconsets/transports/facebook/16x16/chat.png rename to gajim/data/iconsets/transports/facebook/16x16/chat.png diff --git a/data/iconsets/transports/facebook/16x16/dnd.png b/gajim/data/iconsets/transports/facebook/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/facebook/16x16/dnd.png rename to gajim/data/iconsets/transports/facebook/16x16/dnd.png diff --git a/data/iconsets/transports/facebook/16x16/not_in_roster.png b/gajim/data/iconsets/transports/facebook/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/transports/facebook/16x16/not_in_roster.png rename to gajim/data/iconsets/transports/facebook/16x16/not_in_roster.png diff --git a/data/iconsets/transports/facebook/16x16/offline.png b/gajim/data/iconsets/transports/facebook/16x16/offline.png similarity index 100% rename from data/iconsets/transports/facebook/16x16/offline.png rename to gajim/data/iconsets/transports/facebook/16x16/offline.png diff --git a/data/iconsets/transports/facebook/16x16/online.png b/gajim/data/iconsets/transports/facebook/16x16/online.png similarity index 100% rename from data/iconsets/transports/facebook/16x16/online.png rename to gajim/data/iconsets/transports/facebook/16x16/online.png diff --git a/data/iconsets/transports/facebook/16x16/xa.png b/gajim/data/iconsets/transports/facebook/16x16/xa.png similarity index 100% rename from data/iconsets/transports/facebook/16x16/xa.png rename to gajim/data/iconsets/transports/facebook/16x16/xa.png diff --git a/data/iconsets/transports/facebook/32x32/away.png b/gajim/data/iconsets/transports/facebook/32x32/away.png similarity index 100% rename from data/iconsets/transports/facebook/32x32/away.png rename to gajim/data/iconsets/transports/facebook/32x32/away.png diff --git a/data/iconsets/transports/facebook/32x32/chat.png b/gajim/data/iconsets/transports/facebook/32x32/chat.png similarity index 100% rename from data/iconsets/transports/facebook/32x32/chat.png rename to gajim/data/iconsets/transports/facebook/32x32/chat.png diff --git a/data/iconsets/transports/facebook/32x32/dnd.png b/gajim/data/iconsets/transports/facebook/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/facebook/32x32/dnd.png rename to gajim/data/iconsets/transports/facebook/32x32/dnd.png diff --git a/data/iconsets/transports/facebook/32x32/not_in_roster.png b/gajim/data/iconsets/transports/facebook/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/transports/facebook/32x32/not_in_roster.png rename to gajim/data/iconsets/transports/facebook/32x32/not_in_roster.png diff --git a/data/iconsets/transports/facebook/32x32/offline.png b/gajim/data/iconsets/transports/facebook/32x32/offline.png similarity index 100% rename from data/iconsets/transports/facebook/32x32/offline.png rename to gajim/data/iconsets/transports/facebook/32x32/offline.png diff --git a/data/iconsets/transports/facebook/32x32/online.png b/gajim/data/iconsets/transports/facebook/32x32/online.png similarity index 100% rename from data/iconsets/transports/facebook/32x32/online.png rename to gajim/data/iconsets/transports/facebook/32x32/online.png diff --git a/data/iconsets/transports/facebook/32x32/xa.png b/gajim/data/iconsets/transports/facebook/32x32/xa.png similarity index 100% rename from data/iconsets/transports/facebook/32x32/xa.png rename to gajim/data/iconsets/transports/facebook/32x32/xa.png diff --git a/data/iconsets/transports/facebook/48x48/offline.png b/gajim/data/iconsets/transports/facebook/48x48/offline.png similarity index 100% rename from data/iconsets/transports/facebook/48x48/offline.png rename to gajim/data/iconsets/transports/facebook/48x48/offline.png diff --git a/data/iconsets/transports/facebook/48x48/online.png b/gajim/data/iconsets/transports/facebook/48x48/online.png similarity index 100% rename from data/iconsets/transports/facebook/48x48/online.png rename to gajim/data/iconsets/transports/facebook/48x48/online.png diff --git a/data/iconsets/transports/gadu-gadu/16x16/away.png b/gajim/data/iconsets/transports/gadu-gadu/16x16/away.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/16x16/away.png rename to gajim/data/iconsets/transports/gadu-gadu/16x16/away.png diff --git a/data/iconsets/transports/gadu-gadu/16x16/chat.png b/gajim/data/iconsets/transports/gadu-gadu/16x16/chat.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/16x16/chat.png rename to gajim/data/iconsets/transports/gadu-gadu/16x16/chat.png diff --git a/data/iconsets/transports/gadu-gadu/16x16/dnd.png b/gajim/data/iconsets/transports/gadu-gadu/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/16x16/dnd.png rename to gajim/data/iconsets/transports/gadu-gadu/16x16/dnd.png diff --git a/data/iconsets/transports/gadu-gadu/16x16/invisible.png b/gajim/data/iconsets/transports/gadu-gadu/16x16/invisible.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/16x16/invisible.png rename to gajim/data/iconsets/transports/gadu-gadu/16x16/invisible.png diff --git a/data/iconsets/transports/gadu-gadu/16x16/not_in_roster.png b/gajim/data/iconsets/transports/gadu-gadu/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/16x16/not_in_roster.png rename to gajim/data/iconsets/transports/gadu-gadu/16x16/not_in_roster.png diff --git a/data/iconsets/transports/gadu-gadu/16x16/offline.png b/gajim/data/iconsets/transports/gadu-gadu/16x16/offline.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/16x16/offline.png rename to gajim/data/iconsets/transports/gadu-gadu/16x16/offline.png diff --git a/data/iconsets/transports/gadu-gadu/16x16/online.png b/gajim/data/iconsets/transports/gadu-gadu/16x16/online.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/16x16/online.png rename to gajim/data/iconsets/transports/gadu-gadu/16x16/online.png diff --git a/data/iconsets/transports/gadu-gadu/16x16/xa.png b/gajim/data/iconsets/transports/gadu-gadu/16x16/xa.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/16x16/xa.png rename to gajim/data/iconsets/transports/gadu-gadu/16x16/xa.png diff --git a/data/iconsets/transports/gadu-gadu/32x32/away.png b/gajim/data/iconsets/transports/gadu-gadu/32x32/away.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/32x32/away.png rename to gajim/data/iconsets/transports/gadu-gadu/32x32/away.png diff --git a/data/iconsets/transports/gadu-gadu/32x32/chat.png b/gajim/data/iconsets/transports/gadu-gadu/32x32/chat.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/32x32/chat.png rename to gajim/data/iconsets/transports/gadu-gadu/32x32/chat.png diff --git a/data/iconsets/transports/gadu-gadu/32x32/dnd.png b/gajim/data/iconsets/transports/gadu-gadu/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/32x32/dnd.png rename to gajim/data/iconsets/transports/gadu-gadu/32x32/dnd.png diff --git a/data/iconsets/transports/gadu-gadu/32x32/invisible.png b/gajim/data/iconsets/transports/gadu-gadu/32x32/invisible.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/32x32/invisible.png rename to gajim/data/iconsets/transports/gadu-gadu/32x32/invisible.png diff --git a/data/iconsets/transports/gadu-gadu/32x32/not_in_roster.png b/gajim/data/iconsets/transports/gadu-gadu/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/32x32/not_in_roster.png rename to gajim/data/iconsets/transports/gadu-gadu/32x32/not_in_roster.png diff --git a/data/iconsets/transports/gadu-gadu/32x32/offline.png b/gajim/data/iconsets/transports/gadu-gadu/32x32/offline.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/32x32/offline.png rename to gajim/data/iconsets/transports/gadu-gadu/32x32/offline.png diff --git a/data/iconsets/transports/gadu-gadu/32x32/online.png b/gajim/data/iconsets/transports/gadu-gadu/32x32/online.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/32x32/online.png rename to gajim/data/iconsets/transports/gadu-gadu/32x32/online.png diff --git a/data/iconsets/transports/gadu-gadu/32x32/xa.png b/gajim/data/iconsets/transports/gadu-gadu/32x32/xa.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/32x32/xa.png rename to gajim/data/iconsets/transports/gadu-gadu/32x32/xa.png diff --git a/data/iconsets/transports/gadu-gadu/48x48/offline.png b/gajim/data/iconsets/transports/gadu-gadu/48x48/offline.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/48x48/offline.png rename to gajim/data/iconsets/transports/gadu-gadu/48x48/offline.png diff --git a/data/iconsets/transports/gadu-gadu/48x48/online.png b/gajim/data/iconsets/transports/gadu-gadu/48x48/online.png similarity index 100% rename from data/iconsets/transports/gadu-gadu/48x48/online.png rename to gajim/data/iconsets/transports/gadu-gadu/48x48/online.png diff --git a/data/iconsets/transports/icq/16x16/away.png b/gajim/data/iconsets/transports/icq/16x16/away.png similarity index 100% rename from data/iconsets/transports/icq/16x16/away.png rename to gajim/data/iconsets/transports/icq/16x16/away.png diff --git a/data/iconsets/transports/icq/16x16/chat.png b/gajim/data/iconsets/transports/icq/16x16/chat.png similarity index 100% rename from data/iconsets/transports/icq/16x16/chat.png rename to gajim/data/iconsets/transports/icq/16x16/chat.png diff --git a/data/iconsets/transports/icq/16x16/dnd.png b/gajim/data/iconsets/transports/icq/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/icq/16x16/dnd.png rename to gajim/data/iconsets/transports/icq/16x16/dnd.png diff --git a/data/iconsets/transports/icq/16x16/not_in_roster.png b/gajim/data/iconsets/transports/icq/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/transports/icq/16x16/not_in_roster.png rename to gajim/data/iconsets/transports/icq/16x16/not_in_roster.png diff --git a/data/iconsets/transports/icq/16x16/offline.png b/gajim/data/iconsets/transports/icq/16x16/offline.png similarity index 100% rename from data/iconsets/transports/icq/16x16/offline.png rename to gajim/data/iconsets/transports/icq/16x16/offline.png diff --git a/data/iconsets/transports/icq/16x16/online.png b/gajim/data/iconsets/transports/icq/16x16/online.png similarity index 100% rename from data/iconsets/transports/icq/16x16/online.png rename to gajim/data/iconsets/transports/icq/16x16/online.png diff --git a/data/iconsets/transports/icq/16x16/xa.png b/gajim/data/iconsets/transports/icq/16x16/xa.png similarity index 100% rename from data/iconsets/transports/icq/16x16/xa.png rename to gajim/data/iconsets/transports/icq/16x16/xa.png diff --git a/data/iconsets/transports/icq/32x32/away.png b/gajim/data/iconsets/transports/icq/32x32/away.png similarity index 100% rename from data/iconsets/transports/icq/32x32/away.png rename to gajim/data/iconsets/transports/icq/32x32/away.png diff --git a/data/iconsets/transports/icq/32x32/chat.png b/gajim/data/iconsets/transports/icq/32x32/chat.png similarity index 100% rename from data/iconsets/transports/icq/32x32/chat.png rename to gajim/data/iconsets/transports/icq/32x32/chat.png diff --git a/data/iconsets/transports/icq/32x32/dnd.png b/gajim/data/iconsets/transports/icq/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/icq/32x32/dnd.png rename to gajim/data/iconsets/transports/icq/32x32/dnd.png diff --git a/data/iconsets/transports/icq/32x32/not_in_roster.png b/gajim/data/iconsets/transports/icq/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/transports/icq/32x32/not_in_roster.png rename to gajim/data/iconsets/transports/icq/32x32/not_in_roster.png diff --git a/data/iconsets/transports/icq/32x32/offline.png b/gajim/data/iconsets/transports/icq/32x32/offline.png similarity index 100% rename from data/iconsets/transports/icq/32x32/offline.png rename to gajim/data/iconsets/transports/icq/32x32/offline.png diff --git a/data/iconsets/transports/icq/32x32/online.png b/gajim/data/iconsets/transports/icq/32x32/online.png similarity index 100% rename from data/iconsets/transports/icq/32x32/online.png rename to gajim/data/iconsets/transports/icq/32x32/online.png diff --git a/data/iconsets/transports/icq/32x32/xa.png b/gajim/data/iconsets/transports/icq/32x32/xa.png similarity index 100% rename from data/iconsets/transports/icq/32x32/xa.png rename to gajim/data/iconsets/transports/icq/32x32/xa.png diff --git a/data/iconsets/transports/icq/48x48/offline.png b/gajim/data/iconsets/transports/icq/48x48/offline.png similarity index 100% rename from data/iconsets/transports/icq/48x48/offline.png rename to gajim/data/iconsets/transports/icq/48x48/offline.png diff --git a/data/iconsets/transports/icq/48x48/online.png b/gajim/data/iconsets/transports/icq/48x48/online.png similarity index 100% rename from data/iconsets/transports/icq/48x48/online.png rename to gajim/data/iconsets/transports/icq/48x48/online.png diff --git a/data/iconsets/transports/irc/16x16/away.png b/gajim/data/iconsets/transports/irc/16x16/away.png similarity index 100% rename from data/iconsets/transports/irc/16x16/away.png rename to gajim/data/iconsets/transports/irc/16x16/away.png diff --git a/data/iconsets/transports/irc/16x16/chat.png b/gajim/data/iconsets/transports/irc/16x16/chat.png similarity index 100% rename from data/iconsets/transports/irc/16x16/chat.png rename to gajim/data/iconsets/transports/irc/16x16/chat.png diff --git a/data/iconsets/transports/irc/16x16/dnd.png b/gajim/data/iconsets/transports/irc/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/irc/16x16/dnd.png rename to gajim/data/iconsets/transports/irc/16x16/dnd.png diff --git a/data/iconsets/transports/irc/16x16/not_in_roster.png b/gajim/data/iconsets/transports/irc/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/transports/irc/16x16/not_in_roster.png rename to gajim/data/iconsets/transports/irc/16x16/not_in_roster.png diff --git a/data/iconsets/transports/irc/16x16/offline.png b/gajim/data/iconsets/transports/irc/16x16/offline.png similarity index 100% rename from data/iconsets/transports/irc/16x16/offline.png rename to gajim/data/iconsets/transports/irc/16x16/offline.png diff --git a/data/iconsets/transports/irc/16x16/online.png b/gajim/data/iconsets/transports/irc/16x16/online.png similarity index 100% rename from data/iconsets/transports/irc/16x16/online.png rename to gajim/data/iconsets/transports/irc/16x16/online.png diff --git a/data/iconsets/transports/irc/16x16/xa.png b/gajim/data/iconsets/transports/irc/16x16/xa.png similarity index 100% rename from data/iconsets/transports/irc/16x16/xa.png rename to gajim/data/iconsets/transports/irc/16x16/xa.png diff --git a/data/iconsets/transports/irc/32x32/away.png b/gajim/data/iconsets/transports/irc/32x32/away.png similarity index 100% rename from data/iconsets/transports/irc/32x32/away.png rename to gajim/data/iconsets/transports/irc/32x32/away.png diff --git a/data/iconsets/transports/irc/32x32/chat.png b/gajim/data/iconsets/transports/irc/32x32/chat.png similarity index 100% rename from data/iconsets/transports/irc/32x32/chat.png rename to gajim/data/iconsets/transports/irc/32x32/chat.png diff --git a/data/iconsets/transports/irc/32x32/dnd.png b/gajim/data/iconsets/transports/irc/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/irc/32x32/dnd.png rename to gajim/data/iconsets/transports/irc/32x32/dnd.png diff --git a/data/iconsets/transports/irc/32x32/not_in_roster.png b/gajim/data/iconsets/transports/irc/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/transports/irc/32x32/not_in_roster.png rename to gajim/data/iconsets/transports/irc/32x32/not_in_roster.png diff --git a/data/iconsets/transports/irc/32x32/offline.png b/gajim/data/iconsets/transports/irc/32x32/offline.png similarity index 100% rename from data/iconsets/transports/irc/32x32/offline.png rename to gajim/data/iconsets/transports/irc/32x32/offline.png diff --git a/data/iconsets/transports/irc/32x32/online.png b/gajim/data/iconsets/transports/irc/32x32/online.png similarity index 100% rename from data/iconsets/transports/irc/32x32/online.png rename to gajim/data/iconsets/transports/irc/32x32/online.png diff --git a/data/iconsets/transports/irc/32x32/xa.png b/gajim/data/iconsets/transports/irc/32x32/xa.png similarity index 100% rename from data/iconsets/transports/irc/32x32/xa.png rename to gajim/data/iconsets/transports/irc/32x32/xa.png diff --git a/data/iconsets/transports/mrim/16x16/away.png b/gajim/data/iconsets/transports/mrim/16x16/away.png similarity index 100% rename from data/iconsets/transports/mrim/16x16/away.png rename to gajim/data/iconsets/transports/mrim/16x16/away.png diff --git a/data/iconsets/transports/mrim/16x16/chat.png b/gajim/data/iconsets/transports/mrim/16x16/chat.png similarity index 100% rename from data/iconsets/transports/mrim/16x16/chat.png rename to gajim/data/iconsets/transports/mrim/16x16/chat.png diff --git a/data/iconsets/transports/mrim/16x16/dnd.png b/gajim/data/iconsets/transports/mrim/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/mrim/16x16/dnd.png rename to gajim/data/iconsets/transports/mrim/16x16/dnd.png diff --git a/data/iconsets/transports/mrim/16x16/not_in_roster.png b/gajim/data/iconsets/transports/mrim/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/transports/mrim/16x16/not_in_roster.png rename to gajim/data/iconsets/transports/mrim/16x16/not_in_roster.png diff --git a/data/iconsets/transports/mrim/16x16/offline.png b/gajim/data/iconsets/transports/mrim/16x16/offline.png similarity index 100% rename from data/iconsets/transports/mrim/16x16/offline.png rename to gajim/data/iconsets/transports/mrim/16x16/offline.png diff --git a/data/iconsets/transports/mrim/16x16/online.png b/gajim/data/iconsets/transports/mrim/16x16/online.png similarity index 100% rename from data/iconsets/transports/mrim/16x16/online.png rename to gajim/data/iconsets/transports/mrim/16x16/online.png diff --git a/data/iconsets/transports/mrim/16x16/xa.png b/gajim/data/iconsets/transports/mrim/16x16/xa.png similarity index 100% rename from data/iconsets/transports/mrim/16x16/xa.png rename to gajim/data/iconsets/transports/mrim/16x16/xa.png diff --git a/data/iconsets/transports/mrim/32x32/away.png b/gajim/data/iconsets/transports/mrim/32x32/away.png similarity index 100% rename from data/iconsets/transports/mrim/32x32/away.png rename to gajim/data/iconsets/transports/mrim/32x32/away.png diff --git a/data/iconsets/transports/mrim/32x32/chat.png b/gajim/data/iconsets/transports/mrim/32x32/chat.png similarity index 100% rename from data/iconsets/transports/mrim/32x32/chat.png rename to gajim/data/iconsets/transports/mrim/32x32/chat.png diff --git a/data/iconsets/transports/mrim/32x32/dnd.png b/gajim/data/iconsets/transports/mrim/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/mrim/32x32/dnd.png rename to gajim/data/iconsets/transports/mrim/32x32/dnd.png diff --git a/data/iconsets/transports/mrim/32x32/not_in_roster.png b/gajim/data/iconsets/transports/mrim/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/transports/mrim/32x32/not_in_roster.png rename to gajim/data/iconsets/transports/mrim/32x32/not_in_roster.png diff --git a/data/iconsets/transports/mrim/32x32/offline.png b/gajim/data/iconsets/transports/mrim/32x32/offline.png similarity index 100% rename from data/iconsets/transports/mrim/32x32/offline.png rename to gajim/data/iconsets/transports/mrim/32x32/offline.png diff --git a/data/iconsets/transports/mrim/32x32/online.png b/gajim/data/iconsets/transports/mrim/32x32/online.png similarity index 100% rename from data/iconsets/transports/mrim/32x32/online.png rename to gajim/data/iconsets/transports/mrim/32x32/online.png diff --git a/data/iconsets/transports/mrim/32x32/xa.png b/gajim/data/iconsets/transports/mrim/32x32/xa.png similarity index 100% rename from data/iconsets/transports/mrim/32x32/xa.png rename to gajim/data/iconsets/transports/mrim/32x32/xa.png diff --git a/data/iconsets/transports/mrim/48x48/offline.png b/gajim/data/iconsets/transports/mrim/48x48/offline.png similarity index 100% rename from data/iconsets/transports/mrim/48x48/offline.png rename to gajim/data/iconsets/transports/mrim/48x48/offline.png diff --git a/data/iconsets/transports/mrim/48x48/online.png b/gajim/data/iconsets/transports/mrim/48x48/online.png similarity index 100% rename from data/iconsets/transports/mrim/48x48/online.png rename to gajim/data/iconsets/transports/mrim/48x48/online.png diff --git a/data/iconsets/transports/msn/16x16/away.png b/gajim/data/iconsets/transports/msn/16x16/away.png similarity index 100% rename from data/iconsets/transports/msn/16x16/away.png rename to gajim/data/iconsets/transports/msn/16x16/away.png diff --git a/data/iconsets/transports/msn/16x16/chat.png b/gajim/data/iconsets/transports/msn/16x16/chat.png similarity index 100% rename from data/iconsets/transports/msn/16x16/chat.png rename to gajim/data/iconsets/transports/msn/16x16/chat.png diff --git a/data/iconsets/transports/msn/16x16/dnd.png b/gajim/data/iconsets/transports/msn/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/msn/16x16/dnd.png rename to gajim/data/iconsets/transports/msn/16x16/dnd.png diff --git a/data/iconsets/transports/msn/16x16/not_in_roster.png b/gajim/data/iconsets/transports/msn/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/transports/msn/16x16/not_in_roster.png rename to gajim/data/iconsets/transports/msn/16x16/not_in_roster.png diff --git a/data/iconsets/transports/msn/16x16/offline.png b/gajim/data/iconsets/transports/msn/16x16/offline.png similarity index 100% rename from data/iconsets/transports/msn/16x16/offline.png rename to gajim/data/iconsets/transports/msn/16x16/offline.png diff --git a/data/iconsets/transports/msn/16x16/online.png b/gajim/data/iconsets/transports/msn/16x16/online.png similarity index 100% rename from data/iconsets/transports/msn/16x16/online.png rename to gajim/data/iconsets/transports/msn/16x16/online.png diff --git a/data/iconsets/transports/msn/16x16/xa.png b/gajim/data/iconsets/transports/msn/16x16/xa.png similarity index 100% rename from data/iconsets/transports/msn/16x16/xa.png rename to gajim/data/iconsets/transports/msn/16x16/xa.png diff --git a/data/iconsets/transports/msn/32x32/away.png b/gajim/data/iconsets/transports/msn/32x32/away.png similarity index 100% rename from data/iconsets/transports/msn/32x32/away.png rename to gajim/data/iconsets/transports/msn/32x32/away.png diff --git a/data/iconsets/transports/msn/32x32/chat.png b/gajim/data/iconsets/transports/msn/32x32/chat.png similarity index 100% rename from data/iconsets/transports/msn/32x32/chat.png rename to gajim/data/iconsets/transports/msn/32x32/chat.png diff --git a/data/iconsets/transports/msn/32x32/dnd.png b/gajim/data/iconsets/transports/msn/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/msn/32x32/dnd.png rename to gajim/data/iconsets/transports/msn/32x32/dnd.png diff --git a/data/iconsets/transports/msn/32x32/not_in_roster.png b/gajim/data/iconsets/transports/msn/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/transports/msn/32x32/not_in_roster.png rename to gajim/data/iconsets/transports/msn/32x32/not_in_roster.png diff --git a/data/iconsets/transports/msn/32x32/offline.png b/gajim/data/iconsets/transports/msn/32x32/offline.png similarity index 100% rename from data/iconsets/transports/msn/32x32/offline.png rename to gajim/data/iconsets/transports/msn/32x32/offline.png diff --git a/data/iconsets/transports/msn/32x32/online.png b/gajim/data/iconsets/transports/msn/32x32/online.png similarity index 100% rename from data/iconsets/transports/msn/32x32/online.png rename to gajim/data/iconsets/transports/msn/32x32/online.png diff --git a/data/iconsets/transports/msn/32x32/xa.png b/gajim/data/iconsets/transports/msn/32x32/xa.png similarity index 100% rename from data/iconsets/transports/msn/32x32/xa.png rename to gajim/data/iconsets/transports/msn/32x32/xa.png diff --git a/data/iconsets/transports/msn/48x48/offline.png b/gajim/data/iconsets/transports/msn/48x48/offline.png similarity index 100% rename from data/iconsets/transports/msn/48x48/offline.png rename to gajim/data/iconsets/transports/msn/48x48/offline.png diff --git a/data/iconsets/transports/msn/48x48/online.png b/gajim/data/iconsets/transports/msn/48x48/online.png similarity index 100% rename from data/iconsets/transports/msn/48x48/online.png rename to gajim/data/iconsets/transports/msn/48x48/online.png diff --git a/data/iconsets/transports/sms/16x16/away.png b/gajim/data/iconsets/transports/sms/16x16/away.png similarity index 100% rename from data/iconsets/transports/sms/16x16/away.png rename to gajim/data/iconsets/transports/sms/16x16/away.png diff --git a/data/iconsets/transports/sms/16x16/chat.png b/gajim/data/iconsets/transports/sms/16x16/chat.png similarity index 100% rename from data/iconsets/transports/sms/16x16/chat.png rename to gajim/data/iconsets/transports/sms/16x16/chat.png diff --git a/data/iconsets/transports/sms/16x16/dnd.png b/gajim/data/iconsets/transports/sms/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/sms/16x16/dnd.png rename to gajim/data/iconsets/transports/sms/16x16/dnd.png diff --git a/data/iconsets/transports/sms/16x16/offline.png b/gajim/data/iconsets/transports/sms/16x16/offline.png similarity index 100% rename from data/iconsets/transports/sms/16x16/offline.png rename to gajim/data/iconsets/transports/sms/16x16/offline.png diff --git a/data/iconsets/transports/sms/16x16/online.png b/gajim/data/iconsets/transports/sms/16x16/online.png similarity index 100% rename from data/iconsets/transports/sms/16x16/online.png rename to gajim/data/iconsets/transports/sms/16x16/online.png diff --git a/data/iconsets/transports/sms/16x16/xa.png b/gajim/data/iconsets/transports/sms/16x16/xa.png similarity index 100% rename from data/iconsets/transports/sms/16x16/xa.png rename to gajim/data/iconsets/transports/sms/16x16/xa.png diff --git a/data/iconsets/transports/sms/32x32/away.png b/gajim/data/iconsets/transports/sms/32x32/away.png similarity index 100% rename from data/iconsets/transports/sms/32x32/away.png rename to gajim/data/iconsets/transports/sms/32x32/away.png diff --git a/data/iconsets/transports/sms/32x32/chat.png b/gajim/data/iconsets/transports/sms/32x32/chat.png similarity index 100% rename from data/iconsets/transports/sms/32x32/chat.png rename to gajim/data/iconsets/transports/sms/32x32/chat.png diff --git a/data/iconsets/transports/sms/32x32/dnd.png b/gajim/data/iconsets/transports/sms/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/sms/32x32/dnd.png rename to gajim/data/iconsets/transports/sms/32x32/dnd.png diff --git a/data/iconsets/transports/sms/32x32/offline.png b/gajim/data/iconsets/transports/sms/32x32/offline.png similarity index 100% rename from data/iconsets/transports/sms/32x32/offline.png rename to gajim/data/iconsets/transports/sms/32x32/offline.png diff --git a/data/iconsets/transports/sms/32x32/online.png b/gajim/data/iconsets/transports/sms/32x32/online.png similarity index 100% rename from data/iconsets/transports/sms/32x32/online.png rename to gajim/data/iconsets/transports/sms/32x32/online.png diff --git a/data/iconsets/transports/sms/32x32/xa.png b/gajim/data/iconsets/transports/sms/32x32/xa.png similarity index 100% rename from data/iconsets/transports/sms/32x32/xa.png rename to gajim/data/iconsets/transports/sms/32x32/xa.png diff --git a/data/iconsets/transports/tlen/16x16/away.png b/gajim/data/iconsets/transports/tlen/16x16/away.png similarity index 100% rename from data/iconsets/transports/tlen/16x16/away.png rename to gajim/data/iconsets/transports/tlen/16x16/away.png diff --git a/data/iconsets/transports/tlen/16x16/chat.png b/gajim/data/iconsets/transports/tlen/16x16/chat.png similarity index 100% rename from data/iconsets/transports/tlen/16x16/chat.png rename to gajim/data/iconsets/transports/tlen/16x16/chat.png diff --git a/data/iconsets/transports/tlen/16x16/dnd.png b/gajim/data/iconsets/transports/tlen/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/tlen/16x16/dnd.png rename to gajim/data/iconsets/transports/tlen/16x16/dnd.png diff --git a/data/iconsets/transports/tlen/16x16/not_in_roster.png b/gajim/data/iconsets/transports/tlen/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/transports/tlen/16x16/not_in_roster.png rename to gajim/data/iconsets/transports/tlen/16x16/not_in_roster.png diff --git a/data/iconsets/transports/tlen/16x16/offline.png b/gajim/data/iconsets/transports/tlen/16x16/offline.png similarity index 100% rename from data/iconsets/transports/tlen/16x16/offline.png rename to gajim/data/iconsets/transports/tlen/16x16/offline.png diff --git a/data/iconsets/transports/tlen/16x16/online.png b/gajim/data/iconsets/transports/tlen/16x16/online.png similarity index 100% rename from data/iconsets/transports/tlen/16x16/online.png rename to gajim/data/iconsets/transports/tlen/16x16/online.png diff --git a/data/iconsets/transports/tlen/16x16/xa.png b/gajim/data/iconsets/transports/tlen/16x16/xa.png similarity index 100% rename from data/iconsets/transports/tlen/16x16/xa.png rename to gajim/data/iconsets/transports/tlen/16x16/xa.png diff --git a/data/iconsets/transports/tlen/32x32/away.png b/gajim/data/iconsets/transports/tlen/32x32/away.png similarity index 100% rename from data/iconsets/transports/tlen/32x32/away.png rename to gajim/data/iconsets/transports/tlen/32x32/away.png diff --git a/data/iconsets/transports/tlen/32x32/chat.png b/gajim/data/iconsets/transports/tlen/32x32/chat.png similarity index 100% rename from data/iconsets/transports/tlen/32x32/chat.png rename to gajim/data/iconsets/transports/tlen/32x32/chat.png diff --git a/data/iconsets/transports/tlen/32x32/dnd.png b/gajim/data/iconsets/transports/tlen/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/tlen/32x32/dnd.png rename to gajim/data/iconsets/transports/tlen/32x32/dnd.png diff --git a/data/iconsets/transports/tlen/32x32/not_in_roster.png b/gajim/data/iconsets/transports/tlen/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/transports/tlen/32x32/not_in_roster.png rename to gajim/data/iconsets/transports/tlen/32x32/not_in_roster.png diff --git a/data/iconsets/transports/tlen/32x32/offline.png b/gajim/data/iconsets/transports/tlen/32x32/offline.png similarity index 100% rename from data/iconsets/transports/tlen/32x32/offline.png rename to gajim/data/iconsets/transports/tlen/32x32/offline.png diff --git a/data/iconsets/transports/tlen/32x32/online.png b/gajim/data/iconsets/transports/tlen/32x32/online.png similarity index 100% rename from data/iconsets/transports/tlen/32x32/online.png rename to gajim/data/iconsets/transports/tlen/32x32/online.png diff --git a/data/iconsets/transports/tlen/32x32/xa.png b/gajim/data/iconsets/transports/tlen/32x32/xa.png similarity index 100% rename from data/iconsets/transports/tlen/32x32/xa.png rename to gajim/data/iconsets/transports/tlen/32x32/xa.png diff --git a/data/iconsets/transports/tlen/48x48/offline.png b/gajim/data/iconsets/transports/tlen/48x48/offline.png similarity index 100% rename from data/iconsets/transports/tlen/48x48/offline.png rename to gajim/data/iconsets/transports/tlen/48x48/offline.png diff --git a/data/iconsets/transports/tlen/48x48/online.png b/gajim/data/iconsets/transports/tlen/48x48/online.png similarity index 100% rename from data/iconsets/transports/tlen/48x48/online.png rename to gajim/data/iconsets/transports/tlen/48x48/online.png diff --git a/data/iconsets/transports/weather/16x16/away.png b/gajim/data/iconsets/transports/weather/16x16/away.png similarity index 100% rename from data/iconsets/transports/weather/16x16/away.png rename to gajim/data/iconsets/transports/weather/16x16/away.png diff --git a/data/iconsets/transports/weather/16x16/chat.png b/gajim/data/iconsets/transports/weather/16x16/chat.png similarity index 100% rename from data/iconsets/transports/weather/16x16/chat.png rename to gajim/data/iconsets/transports/weather/16x16/chat.png diff --git a/data/iconsets/transports/weather/16x16/dnd.png b/gajim/data/iconsets/transports/weather/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/weather/16x16/dnd.png rename to gajim/data/iconsets/transports/weather/16x16/dnd.png diff --git a/data/iconsets/transports/weather/16x16/offline.png b/gajim/data/iconsets/transports/weather/16x16/offline.png similarity index 100% rename from data/iconsets/transports/weather/16x16/offline.png rename to gajim/data/iconsets/transports/weather/16x16/offline.png diff --git a/data/iconsets/transports/weather/16x16/online.png b/gajim/data/iconsets/transports/weather/16x16/online.png similarity index 100% rename from data/iconsets/transports/weather/16x16/online.png rename to gajim/data/iconsets/transports/weather/16x16/online.png diff --git a/data/iconsets/transports/weather/16x16/xa.png b/gajim/data/iconsets/transports/weather/16x16/xa.png similarity index 100% rename from data/iconsets/transports/weather/16x16/xa.png rename to gajim/data/iconsets/transports/weather/16x16/xa.png diff --git a/data/iconsets/transports/weather/32x32/away.png b/gajim/data/iconsets/transports/weather/32x32/away.png similarity index 100% rename from data/iconsets/transports/weather/32x32/away.png rename to gajim/data/iconsets/transports/weather/32x32/away.png diff --git a/data/iconsets/transports/weather/32x32/chat.png b/gajim/data/iconsets/transports/weather/32x32/chat.png similarity index 100% rename from data/iconsets/transports/weather/32x32/chat.png rename to gajim/data/iconsets/transports/weather/32x32/chat.png diff --git a/data/iconsets/transports/weather/32x32/dnd.png b/gajim/data/iconsets/transports/weather/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/weather/32x32/dnd.png rename to gajim/data/iconsets/transports/weather/32x32/dnd.png diff --git a/data/iconsets/transports/weather/32x32/offline.png b/gajim/data/iconsets/transports/weather/32x32/offline.png similarity index 100% rename from data/iconsets/transports/weather/32x32/offline.png rename to gajim/data/iconsets/transports/weather/32x32/offline.png diff --git a/data/iconsets/transports/weather/32x32/online.png b/gajim/data/iconsets/transports/weather/32x32/online.png similarity index 100% rename from data/iconsets/transports/weather/32x32/online.png rename to gajim/data/iconsets/transports/weather/32x32/online.png diff --git a/data/iconsets/transports/weather/32x32/xa.png b/gajim/data/iconsets/transports/weather/32x32/xa.png similarity index 100% rename from data/iconsets/transports/weather/32x32/xa.png rename to gajim/data/iconsets/transports/weather/32x32/xa.png diff --git a/data/iconsets/transports/yahoo/16x16/away.png b/gajim/data/iconsets/transports/yahoo/16x16/away.png similarity index 100% rename from data/iconsets/transports/yahoo/16x16/away.png rename to gajim/data/iconsets/transports/yahoo/16x16/away.png diff --git a/data/iconsets/transports/yahoo/16x16/chat.png b/gajim/data/iconsets/transports/yahoo/16x16/chat.png similarity index 100% rename from data/iconsets/transports/yahoo/16x16/chat.png rename to gajim/data/iconsets/transports/yahoo/16x16/chat.png diff --git a/data/iconsets/transports/yahoo/16x16/dnd.png b/gajim/data/iconsets/transports/yahoo/16x16/dnd.png similarity index 100% rename from data/iconsets/transports/yahoo/16x16/dnd.png rename to gajim/data/iconsets/transports/yahoo/16x16/dnd.png diff --git a/data/iconsets/transports/yahoo/16x16/not_in_roster.png b/gajim/data/iconsets/transports/yahoo/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/transports/yahoo/16x16/not_in_roster.png rename to gajim/data/iconsets/transports/yahoo/16x16/not_in_roster.png diff --git a/data/iconsets/transports/yahoo/16x16/offline.png b/gajim/data/iconsets/transports/yahoo/16x16/offline.png similarity index 100% rename from data/iconsets/transports/yahoo/16x16/offline.png rename to gajim/data/iconsets/transports/yahoo/16x16/offline.png diff --git a/data/iconsets/transports/yahoo/16x16/online.png b/gajim/data/iconsets/transports/yahoo/16x16/online.png similarity index 100% rename from data/iconsets/transports/yahoo/16x16/online.png rename to gajim/data/iconsets/transports/yahoo/16x16/online.png diff --git a/data/iconsets/transports/yahoo/16x16/xa.png b/gajim/data/iconsets/transports/yahoo/16x16/xa.png similarity index 100% rename from data/iconsets/transports/yahoo/16x16/xa.png rename to gajim/data/iconsets/transports/yahoo/16x16/xa.png diff --git a/data/iconsets/transports/yahoo/32x32/away.png b/gajim/data/iconsets/transports/yahoo/32x32/away.png similarity index 100% rename from data/iconsets/transports/yahoo/32x32/away.png rename to gajim/data/iconsets/transports/yahoo/32x32/away.png diff --git a/data/iconsets/transports/yahoo/32x32/chat.png b/gajim/data/iconsets/transports/yahoo/32x32/chat.png similarity index 100% rename from data/iconsets/transports/yahoo/32x32/chat.png rename to gajim/data/iconsets/transports/yahoo/32x32/chat.png diff --git a/data/iconsets/transports/yahoo/32x32/dnd.png b/gajim/data/iconsets/transports/yahoo/32x32/dnd.png similarity index 100% rename from data/iconsets/transports/yahoo/32x32/dnd.png rename to gajim/data/iconsets/transports/yahoo/32x32/dnd.png diff --git a/data/iconsets/transports/yahoo/32x32/not_in_roster.png b/gajim/data/iconsets/transports/yahoo/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/transports/yahoo/32x32/not_in_roster.png rename to gajim/data/iconsets/transports/yahoo/32x32/not_in_roster.png diff --git a/data/iconsets/transports/yahoo/32x32/offline.png b/gajim/data/iconsets/transports/yahoo/32x32/offline.png similarity index 100% rename from data/iconsets/transports/yahoo/32x32/offline.png rename to gajim/data/iconsets/transports/yahoo/32x32/offline.png diff --git a/data/iconsets/transports/yahoo/32x32/online.png b/gajim/data/iconsets/transports/yahoo/32x32/online.png similarity index 100% rename from data/iconsets/transports/yahoo/32x32/online.png rename to gajim/data/iconsets/transports/yahoo/32x32/online.png diff --git a/data/iconsets/transports/yahoo/32x32/xa.png b/gajim/data/iconsets/transports/yahoo/32x32/xa.png similarity index 100% rename from data/iconsets/transports/yahoo/32x32/xa.png rename to gajim/data/iconsets/transports/yahoo/32x32/xa.png diff --git a/data/iconsets/transports/yahoo/48x48/offline.png b/gajim/data/iconsets/transports/yahoo/48x48/offline.png similarity index 100% rename from data/iconsets/transports/yahoo/48x48/offline.png rename to gajim/data/iconsets/transports/yahoo/48x48/offline.png diff --git a/data/iconsets/transports/yahoo/48x48/online.png b/gajim/data/iconsets/transports/yahoo/48x48/online.png similarity index 100% rename from data/iconsets/transports/yahoo/48x48/online.png rename to gajim/data/iconsets/transports/yahoo/48x48/online.png diff --git a/data/iconsets/wroop/16x16/away.png b/gajim/data/iconsets/wroop/16x16/away.png similarity index 100% rename from data/iconsets/wroop/16x16/away.png rename to gajim/data/iconsets/wroop/16x16/away.png diff --git a/data/iconsets/wroop/16x16/chat.png b/gajim/data/iconsets/wroop/16x16/chat.png similarity index 100% rename from data/iconsets/wroop/16x16/chat.png rename to gajim/data/iconsets/wroop/16x16/chat.png diff --git a/data/iconsets/wroop/16x16/closed.png b/gajim/data/iconsets/wroop/16x16/closed.png similarity index 100% rename from data/iconsets/wroop/16x16/closed.png rename to gajim/data/iconsets/wroop/16x16/closed.png diff --git a/data/iconsets/wroop/16x16/connecting.gif b/gajim/data/iconsets/wroop/16x16/connecting.gif similarity index 100% rename from data/iconsets/wroop/16x16/connecting.gif rename to gajim/data/iconsets/wroop/16x16/connecting.gif diff --git a/data/iconsets/wroop/16x16/dnd.png b/gajim/data/iconsets/wroop/16x16/dnd.png similarity index 100% rename from data/iconsets/wroop/16x16/dnd.png rename to gajim/data/iconsets/wroop/16x16/dnd.png diff --git a/data/iconsets/wroop/16x16/error.png b/gajim/data/iconsets/wroop/16x16/error.png similarity index 100% rename from data/iconsets/wroop/16x16/error.png rename to gajim/data/iconsets/wroop/16x16/error.png diff --git a/data/iconsets/wroop/16x16/event.gif b/gajim/data/iconsets/wroop/16x16/event.gif similarity index 100% rename from data/iconsets/wroop/16x16/event.gif rename to gajim/data/iconsets/wroop/16x16/event.gif diff --git a/data/iconsets/wroop/16x16/invisible.png b/gajim/data/iconsets/wroop/16x16/invisible.png similarity index 100% rename from data/iconsets/wroop/16x16/invisible.png rename to gajim/data/iconsets/wroop/16x16/invisible.png diff --git a/data/iconsets/wroop/16x16/muc_active.png b/gajim/data/iconsets/wroop/16x16/muc_active.png similarity index 100% rename from data/iconsets/wroop/16x16/muc_active.png rename to gajim/data/iconsets/wroop/16x16/muc_active.png diff --git a/data/iconsets/wroop/16x16/muc_inactive.png b/gajim/data/iconsets/wroop/16x16/muc_inactive.png similarity index 100% rename from data/iconsets/wroop/16x16/muc_inactive.png rename to gajim/data/iconsets/wroop/16x16/muc_inactive.png diff --git a/data/iconsets/wroop/16x16/not_in_roster.png b/gajim/data/iconsets/wroop/16x16/not_in_roster.png similarity index 100% rename from data/iconsets/wroop/16x16/not_in_roster.png rename to gajim/data/iconsets/wroop/16x16/not_in_roster.png diff --git a/data/iconsets/wroop/16x16/offline.png b/gajim/data/iconsets/wroop/16x16/offline.png similarity index 100% rename from data/iconsets/wroop/16x16/offline.png rename to gajim/data/iconsets/wroop/16x16/offline.png diff --git a/data/iconsets/wroop/16x16/online.png b/gajim/data/iconsets/wroop/16x16/online.png similarity index 100% rename from data/iconsets/wroop/16x16/online.png rename to gajim/data/iconsets/wroop/16x16/online.png diff --git a/data/iconsets/wroop/16x16/opened.png b/gajim/data/iconsets/wroop/16x16/opened.png similarity index 100% rename from data/iconsets/wroop/16x16/opened.png rename to gajim/data/iconsets/wroop/16x16/opened.png diff --git a/data/iconsets/wroop/16x16/requested.png b/gajim/data/iconsets/wroop/16x16/requested.png similarity index 100% rename from data/iconsets/wroop/16x16/requested.png rename to gajim/data/iconsets/wroop/16x16/requested.png diff --git a/data/iconsets/wroop/16x16/xa.png b/gajim/data/iconsets/wroop/16x16/xa.png similarity index 100% rename from data/iconsets/wroop/16x16/xa.png rename to gajim/data/iconsets/wroop/16x16/xa.png diff --git a/data/iconsets/wroop/32x32/away.png b/gajim/data/iconsets/wroop/32x32/away.png similarity index 100% rename from data/iconsets/wroop/32x32/away.png rename to gajim/data/iconsets/wroop/32x32/away.png diff --git a/data/iconsets/wroop/32x32/chat.png b/gajim/data/iconsets/wroop/32x32/chat.png similarity index 100% rename from data/iconsets/wroop/32x32/chat.png rename to gajim/data/iconsets/wroop/32x32/chat.png diff --git a/data/iconsets/wroop/32x32/dnd.png b/gajim/data/iconsets/wroop/32x32/dnd.png similarity index 100% rename from data/iconsets/wroop/32x32/dnd.png rename to gajim/data/iconsets/wroop/32x32/dnd.png diff --git a/data/iconsets/wroop/32x32/error.png b/gajim/data/iconsets/wroop/32x32/error.png similarity index 100% rename from data/iconsets/wroop/32x32/error.png rename to gajim/data/iconsets/wroop/32x32/error.png diff --git a/data/iconsets/wroop/32x32/invisible.png b/gajim/data/iconsets/wroop/32x32/invisible.png similarity index 100% rename from data/iconsets/wroop/32x32/invisible.png rename to gajim/data/iconsets/wroop/32x32/invisible.png diff --git a/data/iconsets/wroop/32x32/muc_active.png b/gajim/data/iconsets/wroop/32x32/muc_active.png similarity index 100% rename from data/iconsets/wroop/32x32/muc_active.png rename to gajim/data/iconsets/wroop/32x32/muc_active.png diff --git a/data/iconsets/wroop/32x32/muc_inactive.png b/gajim/data/iconsets/wroop/32x32/muc_inactive.png similarity index 100% rename from data/iconsets/wroop/32x32/muc_inactive.png rename to gajim/data/iconsets/wroop/32x32/muc_inactive.png diff --git a/data/iconsets/wroop/32x32/not_in_roster.png b/gajim/data/iconsets/wroop/32x32/not_in_roster.png similarity index 100% rename from data/iconsets/wroop/32x32/not_in_roster.png rename to gajim/data/iconsets/wroop/32x32/not_in_roster.png diff --git a/data/iconsets/wroop/32x32/offline.png b/gajim/data/iconsets/wroop/32x32/offline.png similarity index 100% rename from data/iconsets/wroop/32x32/offline.png rename to gajim/data/iconsets/wroop/32x32/offline.png diff --git a/data/iconsets/wroop/32x32/online.png b/gajim/data/iconsets/wroop/32x32/online.png similarity index 100% rename from data/iconsets/wroop/32x32/online.png rename to gajim/data/iconsets/wroop/32x32/online.png diff --git a/data/iconsets/wroop/32x32/requested.png b/gajim/data/iconsets/wroop/32x32/requested.png similarity index 100% rename from data/iconsets/wroop/32x32/requested.png rename to gajim/data/iconsets/wroop/32x32/requested.png diff --git a/data/iconsets/wroop/32x32/xa.png b/gajim/data/iconsets/wroop/32x32/xa.png similarity index 100% rename from data/iconsets/wroop/32x32/xa.png rename to gajim/data/iconsets/wroop/32x32/xa.png diff --git a/data/iconsets/wroop/48x48/away.png b/gajim/data/iconsets/wroop/48x48/away.png similarity index 100% rename from data/iconsets/wroop/48x48/away.png rename to gajim/data/iconsets/wroop/48x48/away.png diff --git a/data/iconsets/wroop/48x48/chat.png b/gajim/data/iconsets/wroop/48x48/chat.png similarity index 100% rename from data/iconsets/wroop/48x48/chat.png rename to gajim/data/iconsets/wroop/48x48/chat.png diff --git a/data/iconsets/wroop/48x48/dnd.png b/gajim/data/iconsets/wroop/48x48/dnd.png similarity index 100% rename from data/iconsets/wroop/48x48/dnd.png rename to gajim/data/iconsets/wroop/48x48/dnd.png diff --git a/data/iconsets/wroop/48x48/error.png b/gajim/data/iconsets/wroop/48x48/error.png similarity index 100% rename from data/iconsets/wroop/48x48/error.png rename to gajim/data/iconsets/wroop/48x48/error.png diff --git a/data/iconsets/wroop/48x48/invisible.png b/gajim/data/iconsets/wroop/48x48/invisible.png similarity index 100% rename from data/iconsets/wroop/48x48/invisible.png rename to gajim/data/iconsets/wroop/48x48/invisible.png diff --git a/data/iconsets/wroop/48x48/muc_active.png b/gajim/data/iconsets/wroop/48x48/muc_active.png similarity index 100% rename from data/iconsets/wroop/48x48/muc_active.png rename to gajim/data/iconsets/wroop/48x48/muc_active.png diff --git a/data/iconsets/wroop/48x48/muc_inactive.png b/gajim/data/iconsets/wroop/48x48/muc_inactive.png similarity index 100% rename from data/iconsets/wroop/48x48/muc_inactive.png rename to gajim/data/iconsets/wroop/48x48/muc_inactive.png diff --git a/data/iconsets/wroop/48x48/not_in_roster.png b/gajim/data/iconsets/wroop/48x48/not_in_roster.png similarity index 100% rename from data/iconsets/wroop/48x48/not_in_roster.png rename to gajim/data/iconsets/wroop/48x48/not_in_roster.png diff --git a/data/iconsets/wroop/48x48/offline.png b/gajim/data/iconsets/wroop/48x48/offline.png similarity index 100% rename from data/iconsets/wroop/48x48/offline.png rename to gajim/data/iconsets/wroop/48x48/offline.png diff --git a/data/iconsets/wroop/48x48/online.png b/gajim/data/iconsets/wroop/48x48/online.png similarity index 100% rename from data/iconsets/wroop/48x48/online.png rename to gajim/data/iconsets/wroop/48x48/online.png diff --git a/data/iconsets/wroop/48x48/requested.png b/gajim/data/iconsets/wroop/48x48/requested.png similarity index 100% rename from data/iconsets/wroop/48x48/requested.png rename to gajim/data/iconsets/wroop/48x48/requested.png diff --git a/data/iconsets/wroop/48x48/xa.png b/gajim/data/iconsets/wroop/48x48/xa.png similarity index 100% rename from data/iconsets/wroop/48x48/xa.png rename to gajim/data/iconsets/wroop/48x48/xa.png diff --git a/data/moods/Makefile.am b/gajim/data/moods/Makefile.am similarity index 100% rename from data/moods/Makefile.am rename to gajim/data/moods/Makefile.am diff --git a/data/moods/default/afraid.png b/gajim/data/moods/default/afraid.png similarity index 100% rename from data/moods/default/afraid.png rename to gajim/data/moods/default/afraid.png diff --git a/data/moods/default/amazed.png b/gajim/data/moods/default/amazed.png similarity index 100% rename from data/moods/default/amazed.png rename to gajim/data/moods/default/amazed.png diff --git a/data/moods/default/amorous.png b/gajim/data/moods/default/amorous.png similarity index 100% rename from data/moods/default/amorous.png rename to gajim/data/moods/default/amorous.png diff --git a/data/moods/default/angry.png b/gajim/data/moods/default/angry.png similarity index 100% rename from data/moods/default/angry.png rename to gajim/data/moods/default/angry.png diff --git a/data/moods/default/annoyed.png b/gajim/data/moods/default/annoyed.png similarity index 100% rename from data/moods/default/annoyed.png rename to gajim/data/moods/default/annoyed.png diff --git a/data/moods/default/anxious.png b/gajim/data/moods/default/anxious.png similarity index 100% rename from data/moods/default/anxious.png rename to gajim/data/moods/default/anxious.png diff --git a/data/moods/default/aroused.png b/gajim/data/moods/default/aroused.png similarity index 100% rename from data/moods/default/aroused.png rename to gajim/data/moods/default/aroused.png diff --git a/data/moods/default/ashamed.png b/gajim/data/moods/default/ashamed.png similarity index 100% rename from data/moods/default/ashamed.png rename to gajim/data/moods/default/ashamed.png diff --git a/data/moods/default/bored.png b/gajim/data/moods/default/bored.png similarity index 100% rename from data/moods/default/bored.png rename to gajim/data/moods/default/bored.png diff --git a/data/moods/default/brave.png b/gajim/data/moods/default/brave.png similarity index 100% rename from data/moods/default/brave.png rename to gajim/data/moods/default/brave.png diff --git a/data/moods/default/calm.png b/gajim/data/moods/default/calm.png similarity index 100% rename from data/moods/default/calm.png rename to gajim/data/moods/default/calm.png diff --git a/data/moods/default/cautious.png b/gajim/data/moods/default/cautious.png similarity index 100% rename from data/moods/default/cautious.png rename to gajim/data/moods/default/cautious.png diff --git a/data/moods/default/cold.png b/gajim/data/moods/default/cold.png similarity index 100% rename from data/moods/default/cold.png rename to gajim/data/moods/default/cold.png diff --git a/data/moods/default/confident.png b/gajim/data/moods/default/confident.png similarity index 100% rename from data/moods/default/confident.png rename to gajim/data/moods/default/confident.png diff --git a/data/moods/default/confused.png b/gajim/data/moods/default/confused.png similarity index 100% rename from data/moods/default/confused.png rename to gajim/data/moods/default/confused.png diff --git a/data/moods/default/contemplative.png b/gajim/data/moods/default/contemplative.png similarity index 100% rename from data/moods/default/contemplative.png rename to gajim/data/moods/default/contemplative.png diff --git a/data/moods/default/contented.png b/gajim/data/moods/default/contented.png similarity index 100% rename from data/moods/default/contented.png rename to gajim/data/moods/default/contented.png diff --git a/data/moods/default/cranky.png b/gajim/data/moods/default/cranky.png similarity index 100% rename from data/moods/default/cranky.png rename to gajim/data/moods/default/cranky.png diff --git a/data/moods/default/crazy.png b/gajim/data/moods/default/crazy.png similarity index 100% rename from data/moods/default/crazy.png rename to gajim/data/moods/default/crazy.png diff --git a/data/moods/default/creative.png b/gajim/data/moods/default/creative.png similarity index 100% rename from data/moods/default/creative.png rename to gajim/data/moods/default/creative.png diff --git a/data/moods/default/curious.png b/gajim/data/moods/default/curious.png similarity index 100% rename from data/moods/default/curious.png rename to gajim/data/moods/default/curious.png diff --git a/data/moods/default/dejected.png b/gajim/data/moods/default/dejected.png similarity index 100% rename from data/moods/default/dejected.png rename to gajim/data/moods/default/dejected.png diff --git a/data/moods/default/depressed.png b/gajim/data/moods/default/depressed.png similarity index 100% rename from data/moods/default/depressed.png rename to gajim/data/moods/default/depressed.png diff --git a/data/moods/default/disappointed.png b/gajim/data/moods/default/disappointed.png similarity index 100% rename from data/moods/default/disappointed.png rename to gajim/data/moods/default/disappointed.png diff --git a/data/moods/default/disgusted.png b/gajim/data/moods/default/disgusted.png similarity index 100% rename from data/moods/default/disgusted.png rename to gajim/data/moods/default/disgusted.png diff --git a/data/moods/default/dismayed.png b/gajim/data/moods/default/dismayed.png similarity index 100% rename from data/moods/default/dismayed.png rename to gajim/data/moods/default/dismayed.png diff --git a/data/moods/default/distracted.png b/gajim/data/moods/default/distracted.png similarity index 100% rename from data/moods/default/distracted.png rename to gajim/data/moods/default/distracted.png diff --git a/data/moods/default/embarrassed.png b/gajim/data/moods/default/embarrassed.png similarity index 100% rename from data/moods/default/embarrassed.png rename to gajim/data/moods/default/embarrassed.png diff --git a/data/moods/default/envious.png b/gajim/data/moods/default/envious.png similarity index 100% rename from data/moods/default/envious.png rename to gajim/data/moods/default/envious.png diff --git a/data/moods/default/excited.png b/gajim/data/moods/default/excited.png similarity index 100% rename from data/moods/default/excited.png rename to gajim/data/moods/default/excited.png diff --git a/data/moods/default/flirtatious.png b/gajim/data/moods/default/flirtatious.png similarity index 100% rename from data/moods/default/flirtatious.png rename to gajim/data/moods/default/flirtatious.png diff --git a/data/moods/default/frustrated.png b/gajim/data/moods/default/frustrated.png similarity index 100% rename from data/moods/default/frustrated.png rename to gajim/data/moods/default/frustrated.png diff --git a/data/moods/default/grateful.png b/gajim/data/moods/default/grateful.png similarity index 100% rename from data/moods/default/grateful.png rename to gajim/data/moods/default/grateful.png diff --git a/data/moods/default/grieving.png b/gajim/data/moods/default/grieving.png similarity index 100% rename from data/moods/default/grieving.png rename to gajim/data/moods/default/grieving.png diff --git a/data/moods/default/grumpy.png b/gajim/data/moods/default/grumpy.png similarity index 100% rename from data/moods/default/grumpy.png rename to gajim/data/moods/default/grumpy.png diff --git a/data/moods/default/guilty.png b/gajim/data/moods/default/guilty.png similarity index 100% rename from data/moods/default/guilty.png rename to gajim/data/moods/default/guilty.png diff --git a/data/moods/default/happy.png b/gajim/data/moods/default/happy.png similarity index 100% rename from data/moods/default/happy.png rename to gajim/data/moods/default/happy.png diff --git a/data/moods/default/hopeful.png b/gajim/data/moods/default/hopeful.png similarity index 100% rename from data/moods/default/hopeful.png rename to gajim/data/moods/default/hopeful.png diff --git a/data/moods/default/hot.png b/gajim/data/moods/default/hot.png similarity index 100% rename from data/moods/default/hot.png rename to gajim/data/moods/default/hot.png diff --git a/data/moods/default/humbled.png b/gajim/data/moods/default/humbled.png similarity index 100% rename from data/moods/default/humbled.png rename to gajim/data/moods/default/humbled.png diff --git a/data/moods/default/humiliated.png b/gajim/data/moods/default/humiliated.png similarity index 100% rename from data/moods/default/humiliated.png rename to gajim/data/moods/default/humiliated.png diff --git a/data/moods/default/hungry.png b/gajim/data/moods/default/hungry.png similarity index 100% rename from data/moods/default/hungry.png rename to gajim/data/moods/default/hungry.png diff --git a/data/moods/default/hurt.png b/gajim/data/moods/default/hurt.png similarity index 100% rename from data/moods/default/hurt.png rename to gajim/data/moods/default/hurt.png diff --git a/data/moods/default/impressed.png b/gajim/data/moods/default/impressed.png similarity index 100% rename from data/moods/default/impressed.png rename to gajim/data/moods/default/impressed.png diff --git a/data/moods/default/in_awe.png b/gajim/data/moods/default/in_awe.png similarity index 100% rename from data/moods/default/in_awe.png rename to gajim/data/moods/default/in_awe.png diff --git a/data/moods/default/in_love.png b/gajim/data/moods/default/in_love.png similarity index 100% rename from data/moods/default/in_love.png rename to gajim/data/moods/default/in_love.png diff --git a/data/moods/default/indignant.png b/gajim/data/moods/default/indignant.png similarity index 100% rename from data/moods/default/indignant.png rename to gajim/data/moods/default/indignant.png diff --git a/data/moods/default/interested.png b/gajim/data/moods/default/interested.png similarity index 100% rename from data/moods/default/interested.png rename to gajim/data/moods/default/interested.png diff --git a/data/moods/default/intoxicated.png b/gajim/data/moods/default/intoxicated.png similarity index 100% rename from data/moods/default/intoxicated.png rename to gajim/data/moods/default/intoxicated.png diff --git a/data/moods/default/invincible.png b/gajim/data/moods/default/invincible.png similarity index 100% rename from data/moods/default/invincible.png rename to gajim/data/moods/default/invincible.png diff --git a/data/moods/default/jealous.png b/gajim/data/moods/default/jealous.png similarity index 100% rename from data/moods/default/jealous.png rename to gajim/data/moods/default/jealous.png diff --git a/data/moods/default/lonely.png b/gajim/data/moods/default/lonely.png similarity index 100% rename from data/moods/default/lonely.png rename to gajim/data/moods/default/lonely.png diff --git a/data/moods/default/lost.png b/gajim/data/moods/default/lost.png similarity index 100% rename from data/moods/default/lost.png rename to gajim/data/moods/default/lost.png diff --git a/data/moods/default/lucky.png b/gajim/data/moods/default/lucky.png similarity index 100% rename from data/moods/default/lucky.png rename to gajim/data/moods/default/lucky.png diff --git a/data/moods/default/mean.png b/gajim/data/moods/default/mean.png similarity index 100% rename from data/moods/default/mean.png rename to gajim/data/moods/default/mean.png diff --git a/data/moods/default/moody.png b/gajim/data/moods/default/moody.png similarity index 100% rename from data/moods/default/moody.png rename to gajim/data/moods/default/moody.png diff --git a/data/moods/default/nervous.png b/gajim/data/moods/default/nervous.png similarity index 100% rename from data/moods/default/nervous.png rename to gajim/data/moods/default/nervous.png diff --git a/data/moods/default/neutral.png b/gajim/data/moods/default/neutral.png similarity index 100% rename from data/moods/default/neutral.png rename to gajim/data/moods/default/neutral.png diff --git a/data/moods/default/offended.png b/gajim/data/moods/default/offended.png similarity index 100% rename from data/moods/default/offended.png rename to gajim/data/moods/default/offended.png diff --git a/data/moods/default/outraged.png b/gajim/data/moods/default/outraged.png similarity index 100% rename from data/moods/default/outraged.png rename to gajim/data/moods/default/outraged.png diff --git a/data/moods/default/playful.png b/gajim/data/moods/default/playful.png similarity index 100% rename from data/moods/default/playful.png rename to gajim/data/moods/default/playful.png diff --git a/data/moods/default/proud.png b/gajim/data/moods/default/proud.png similarity index 100% rename from data/moods/default/proud.png rename to gajim/data/moods/default/proud.png diff --git a/data/moods/default/relaxed.png b/gajim/data/moods/default/relaxed.png similarity index 100% rename from data/moods/default/relaxed.png rename to gajim/data/moods/default/relaxed.png diff --git a/data/moods/default/relieved.png b/gajim/data/moods/default/relieved.png similarity index 100% rename from data/moods/default/relieved.png rename to gajim/data/moods/default/relieved.png diff --git a/data/moods/default/remorseful.png b/gajim/data/moods/default/remorseful.png similarity index 100% rename from data/moods/default/remorseful.png rename to gajim/data/moods/default/remorseful.png diff --git a/data/moods/default/restless.png b/gajim/data/moods/default/restless.png similarity index 100% rename from data/moods/default/restless.png rename to gajim/data/moods/default/restless.png diff --git a/data/moods/default/sad.png b/gajim/data/moods/default/sad.png similarity index 100% rename from data/moods/default/sad.png rename to gajim/data/moods/default/sad.png diff --git a/data/moods/default/sarcastic.png b/gajim/data/moods/default/sarcastic.png similarity index 100% rename from data/moods/default/sarcastic.png rename to gajim/data/moods/default/sarcastic.png diff --git a/data/moods/default/satisfied.png b/gajim/data/moods/default/satisfied.png similarity index 100% rename from data/moods/default/satisfied.png rename to gajim/data/moods/default/satisfied.png diff --git a/data/moods/default/serious.png b/gajim/data/moods/default/serious.png similarity index 100% rename from data/moods/default/serious.png rename to gajim/data/moods/default/serious.png diff --git a/data/moods/default/shocked.png b/gajim/data/moods/default/shocked.png similarity index 100% rename from data/moods/default/shocked.png rename to gajim/data/moods/default/shocked.png diff --git a/data/moods/default/shy.png b/gajim/data/moods/default/shy.png similarity index 100% rename from data/moods/default/shy.png rename to gajim/data/moods/default/shy.png diff --git a/data/moods/default/sick.png b/gajim/data/moods/default/sick.png similarity index 100% rename from data/moods/default/sick.png rename to gajim/data/moods/default/sick.png diff --git a/data/moods/default/sleepy.png b/gajim/data/moods/default/sleepy.png similarity index 100% rename from data/moods/default/sleepy.png rename to gajim/data/moods/default/sleepy.png diff --git a/data/moods/default/spontaneous.png b/gajim/data/moods/default/spontaneous.png similarity index 100% rename from data/moods/default/spontaneous.png rename to gajim/data/moods/default/spontaneous.png diff --git a/data/moods/default/stressed.png b/gajim/data/moods/default/stressed.png similarity index 100% rename from data/moods/default/stressed.png rename to gajim/data/moods/default/stressed.png diff --git a/data/moods/default/strong.png b/gajim/data/moods/default/strong.png similarity index 100% rename from data/moods/default/strong.png rename to gajim/data/moods/default/strong.png diff --git a/data/moods/default/surprised.png b/gajim/data/moods/default/surprised.png similarity index 100% rename from data/moods/default/surprised.png rename to gajim/data/moods/default/surprised.png diff --git a/data/moods/default/thankful.png b/gajim/data/moods/default/thankful.png similarity index 100% rename from data/moods/default/thankful.png rename to gajim/data/moods/default/thankful.png diff --git a/data/moods/default/thirsty.png b/gajim/data/moods/default/thirsty.png similarity index 100% rename from data/moods/default/thirsty.png rename to gajim/data/moods/default/thirsty.png diff --git a/data/moods/default/tired.png b/gajim/data/moods/default/tired.png similarity index 100% rename from data/moods/default/tired.png rename to gajim/data/moods/default/tired.png diff --git a/data/moods/default/undefined.png b/gajim/data/moods/default/undefined.png similarity index 100% rename from data/moods/default/undefined.png rename to gajim/data/moods/default/undefined.png diff --git a/data/moods/default/unknown.png b/gajim/data/moods/default/unknown.png similarity index 100% rename from data/moods/default/unknown.png rename to gajim/data/moods/default/unknown.png diff --git a/data/moods/default/weak.png b/gajim/data/moods/default/weak.png similarity index 100% rename from data/moods/default/weak.png rename to gajim/data/moods/default/weak.png diff --git a/data/moods/default/worried.png b/gajim/data/moods/default/worried.png similarity index 100% rename from data/moods/default/worried.png rename to gajim/data/moods/default/worried.png diff --git a/data/other/cacerts.pem b/gajim/data/other/cacerts.pem similarity index 100% rename from data/other/cacerts.pem rename to gajim/data/other/cacerts.pem diff --git a/data/other/dh4096.pem b/gajim/data/other/dh4096.pem similarity index 100% rename from data/other/dh4096.pem rename to gajim/data/other/dh4096.pem diff --git a/data/other/servers.xml b/gajim/data/other/servers.xml similarity index 100% rename from data/other/servers.xml rename to gajim/data/other/servers.xml diff --git a/data/sounds/attention.wav b/gajim/data/sounds/attention.wav similarity index 100% rename from data/sounds/attention.wav rename to gajim/data/sounds/attention.wav diff --git a/data/sounds/bounce.wav b/gajim/data/sounds/bounce.wav similarity index 100% rename from data/sounds/bounce.wav rename to gajim/data/sounds/bounce.wav diff --git a/data/sounds/connected.wav b/gajim/data/sounds/connected.wav similarity index 100% rename from data/sounds/connected.wav rename to gajim/data/sounds/connected.wav diff --git a/data/sounds/disconnected.wav b/gajim/data/sounds/disconnected.wav similarity index 100% rename from data/sounds/disconnected.wav rename to gajim/data/sounds/disconnected.wav diff --git a/data/sounds/gc_message1.wav b/gajim/data/sounds/gc_message1.wav similarity index 100% rename from data/sounds/gc_message1.wav rename to gajim/data/sounds/gc_message1.wav diff --git a/data/sounds/gc_message2.wav b/gajim/data/sounds/gc_message2.wav similarity index 100% rename from data/sounds/gc_message2.wav rename to gajim/data/sounds/gc_message2.wav diff --git a/data/sounds/message1.wav b/gajim/data/sounds/message1.wav similarity index 100% rename from data/sounds/message1.wav rename to gajim/data/sounds/message1.wav diff --git a/data/sounds/message2.wav b/gajim/data/sounds/message2.wav similarity index 100% rename from data/sounds/message2.wav rename to gajim/data/sounds/message2.wav diff --git a/data/sounds/sent.wav b/gajim/data/sounds/sent.wav similarity index 100% rename from data/sounds/sent.wav rename to gajim/data/sounds/sent.wav diff --git a/data/style/gajim.css b/gajim/data/style/gajim.css similarity index 100% rename from data/style/gajim.css rename to gajim/data/style/gajim.css From 0080c6101447cfd2d1bec6bbab1d89cb22328452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= Date: Sat, 16 Sep 2017 12:18:22 +0200 Subject: [PATCH 16/30] Install data to new location --- autogen.sh | 2 +- configure.ac | 11 ++++++----- data/Makefile.am | 15 +-------------- gajim/Makefile.am | 2 ++ gajim/common/configpaths.py | 4 +++- gajim/data/Makefile.am | 19 +++++++++++++++++++ gajim/data/activities/Makefile.am | 2 +- gajim/data/emoticons/Makefile.am | 2 +- gajim/data/gui/Makefile.am | 3 +-- gajim/data/iconsets/Makefile.am | 2 +- gajim/data/moods/Makefile.am | 2 +- test/lib/__init__.py | 4 ++-- test/test_pluginmanager.py | 2 +- 13 files changed, 40 insertions(+), 30 deletions(-) create mode 100644 gajim/data/Makefile.am diff --git a/autogen.sh b/autogen.sh index 72fbe878a..776f47d7b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -3,7 +3,7 @@ CONF_ARGS="" echo "[encoding: UTF-8]" > po/POTFILES.in \ - && for p in `ls data/gui/*.ui`; do echo "[type: gettext/glade]$p" >> \ + && for p in `ls gajim/data/gui/*.ui`; do echo "[type: gettext/glade]$p" >> \ po/POTFILES.in; done \ && ls -1 data/org.gajim.Gajim.appdata.xml.in data/org.gajim.Gajim.desktop.in.in data/gajim-remote.desktop.in.in \ gajim/*.py gajim/common/*.py gajim/command_system/*.py gajim/command_system/implementation/*.py gajim/common/zeroconf/*.py gajim/plugins/*.py | grep -v ipython_view.py >> \ diff --git a/configure.ac b/configure.ac index 528da7752..03ec71a9d 100644 --- a/configure.ac +++ b/configure.ac @@ -54,12 +54,13 @@ AC_SUBST(PACKAGE) AC_CONFIG_FILES([ Makefile data/Makefile - data/gui/Makefile - data/emoticons/Makefile + gajim/data/Makefile + gajim/data/gui/Makefile + gajim/data/emoticons/Makefile data/pixmaps/Makefile - data/iconsets/Makefile - data/moods/Makefile - data/activities/Makefile + gajim/data/iconsets/Makefile + gajim/data/moods/Makefile + gajim/data/activities/Makefile icons/Makefile data/org.gajim.Gajim.appdata.xml data/org.gajim.Gajim.desktop.in diff --git a/data/Makefile.am b/data/Makefile.am index 2e22a4932..3b02d6d18 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = gui emoticons pixmaps iconsets moods activities +SUBDIRS = pixmaps @INTLTOOL_DESKTOP_RULE@ appstreamdir = $(datadir)/metainfo/ @@ -13,25 +13,12 @@ desktop_DATA = $(desktop_in_files:.desktop.in.in=.desktop) installdefsdir = $(gajim_srcdir)/common installdefs_DATA = defs.py -soundsdir = $(pkgdatadir)/data/sounds -sounds_DATA = $(srcdir)/sounds/*.wav - -styledir = $(pkgdatadir)/data/style -style_DATA = $(srcdir)/style/*.css - -otherdir = $(pkgdatadir)/data/other -other_DATA = other/servers.xml other/dh4096.pem -# other/cacert.pem is used only on Windows. On Unix platforms -# use CA certificates installed in /etc/ssl/certs man_MANS = gajim.1 gajim-remote.1 gajim-history-manager.1 EXTRA_DIST = $(appstream_in_files) \ $(desktop_in_files) \ - $(sounds_DATA) \ - $(style_DATA) \ - $(other_DATA) \ $(man_MANS) \ defs.py.in diff --git a/gajim/Makefile.am b/gajim/Makefile.am index 6bf92b1bd..c9bfb66bb 100644 --- a/gajim/Makefile.am +++ b/gajim/Makefile.am @@ -1,3 +1,5 @@ +SUBDIRS = data + INCLUDES = \ $(PYTHON_INCLUDES) export MACOSX_DEPLOYMENT_TARGET=10.4 diff --git a/gajim/common/configpaths.py b/gajim/common/configpaths.py index dc40d0969..20871109d 100644 --- a/gajim/common/configpaths.py +++ b/gajim/common/configpaths.py @@ -98,9 +98,11 @@ class ConfigPaths: base = expand('~/.local/share') self.data_root = os.path.join(base, 'gajim') - basedir = os.environ.get('GAJIM_BASEDIR', defs.basedir) + import pkg_resources + basedir = pkg_resources.resource_filename("gajim", ".") self.add('DATA', None, os.path.join(basedir, 'data')) self.add('GUI', None, os.path.join(basedir, 'data', 'gui')) + basedir = os.environ.get('GAJIM_BASEDIR', defs.basedir) self.add('ICONS', None, os.path.join(basedir, 'icons')) self.add('HOME', None, os.path.expanduser('~')) self.add('PLUGINS_BASE', None, os.path.join(basedir, 'plugins')) diff --git a/gajim/data/Makefile.am b/gajim/data/Makefile.am new file mode 100644 index 000000000..bee085790 --- /dev/null +++ b/gajim/data/Makefile.am @@ -0,0 +1,19 @@ +SUBDIRS = gui emoticons iconsets moods activities +@INTLTOOL_DESKTOP_RULE@ + +soundsdir = $(gajim_srcdir)/data/sounds +sounds_DATA = $(srcdir)/sounds/*.wav + +styledir = $(gajim_srcdir)/data/style +style_DATA = $(srcdir)/style/*.css + +otherdir = $(gajim_srcdir)/data/other +other_DATA = other/servers.xml other/dh4096.pem +# other/cacert.pem is used only on Windows. On Unix platforms +# use CA certificates installed in /etc/ssl/certs + +EXTRA_DIST = $(sounds_DATA) \ + $(style_DATA) \ + $(other_DATA) + +MAINTAINERCLEANFILES = Makefile.in diff --git a/gajim/data/activities/Makefile.am b/gajim/data/activities/Makefile.am index a0f242a53..12f725a6b 100644 --- a/gajim/data/activities/Makefile.am +++ b/gajim/data/activities/Makefile.am @@ -1,4 +1,4 @@ -activitiesdir = $(pkgdatadir)/data/activities +activitiesdir = $(gajim_srcdir)/data/activities nobase_dist_activities_DATA = $(srcdir)/*/*/* MAINTAINERCLEANFILES = Makefile.in diff --git a/gajim/data/emoticons/Makefile.am b/gajim/data/emoticons/Makefile.am index 96bd7b843..417267dd6 100644 --- a/gajim/data/emoticons/Makefile.am +++ b/gajim/data/emoticons/Makefile.am @@ -1,4 +1,4 @@ -emoticonsdir = $(pkgdatadir)/data/emoticons +emoticonsdir = $(gajim_srcdir)/data/emoticons nobase_dist_emoticons_DATA = \ $(srcdir)/*/*.png \ $(srcdir)/*/LICENSE \ diff --git a/gajim/data/gui/Makefile.am b/gajim/data/gui/Makefile.am index b36d5d7fe..a0908cec3 100644 --- a/gajim/data/gui/Makefile.am +++ b/gajim/data/gui/Makefile.am @@ -1,5 +1,4 @@ - -guidir = $(pkgdatadir)/data/gui +guidir = $(gajim_srcdir)/data/gui gui_DATA = $(srcdir)/*.ui EXTRA_DIST = $(gui_DATA) diff --git a/gajim/data/iconsets/Makefile.am b/gajim/data/iconsets/Makefile.am index d83643525..a938009f1 100644 --- a/gajim/data/iconsets/Makefile.am +++ b/gajim/data/iconsets/Makefile.am @@ -1,4 +1,4 @@ -iconsetdir = $(pkgdatadir)/data/iconsets +iconsetdir = $(gajim_srcdir)/data/iconsets nobase_dist_iconset_DATA = \ $(srcdir)/*/16x16/* \ $(srcdir)/*/32x32/* \ diff --git a/gajim/data/moods/Makefile.am b/gajim/data/moods/Makefile.am index 174466374..2e579b47d 100644 --- a/gajim/data/moods/Makefile.am +++ b/gajim/data/moods/Makefile.am @@ -1,4 +1,4 @@ -moodsdir = $(pkgdatadir)/data/moods +moodsdir = $(gajim_srcdir)/data/moods nobase_dist_moods_DATA = $(srcdir)/*/* MAINTAINERCLEANFILES = Makefile.in diff --git a/test/lib/__init__.py b/test/lib/__init__.py index b8c60c8fe..78a2602c2 100644 --- a/test/lib/__init__.py +++ b/test/lib/__init__.py @@ -46,13 +46,13 @@ def setup_env(): import logging logging.basicConfig() - app.DATA_DIR = gajim_root + '/data' + app.DATA_DIR = gajim_root + '/gajim/data' app.use_x = use_x app.contacts = LegacyContactsAPI() app.connections = {} if use_x: from gajim import gtkgui_helpers - gtkgui_helpers.GUI_DIR = gajim_root + '/data/gui' + gtkgui_helpers.GUI_DIR = gajim_root + '/gajim/data/gui' from gajim.gajim import GajimApplication app.app = GajimApplication() diff --git a/test/test_pluginmanager.py b/test/test_pluginmanager.py index 71f99d987..50b9c0392 100644 --- a/test/test_pluginmanager.py +++ b/test/test_pluginmanager.py @@ -55,7 +55,7 @@ gajim.common.configpaths.gajimpaths.init(configdir) # for some reason common.app needs to be imported before xmpppy? from gajim.common import app -app.DATA_DIR = gajim_root + '/data' +app.DATA_DIR = gajim_root + '/gajim/data' from common.stanza_session import StanzaSession From dfdeb65e8fdb43f586cc0a04143705e682eead51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Tue, 15 Aug 2017 19:12:30 +0200 Subject: [PATCH 17/30] New AccountsWindow --- data/gui/accounts_window.ui | 1633 +---------------- data/gui/synchronise_select_account_dialog.ui | 1 + data/style/gajim.css | 30 +- gajim/accounts_window.py | 698 +++++++ gajim/app_actions.py | 44 +- gajim/common/config.py | 1 + gajim/common/const.py | 31 + gajim/config.py | 15 +- gajim/dialogs.py | 117 +- gajim/gajim.py | 24 +- gajim/gtkgui_helpers.py | 11 +- gajim/options_dialog.py | 585 ++++++ gajim/roster_window.py | 5 +- 13 files changed, 1545 insertions(+), 1650 deletions(-) create mode 100644 gajim/accounts_window.py create mode 100644 gajim/options_dialog.py diff --git a/data/gui/accounts_window.ui b/data/gui/accounts_window.ui index de0e541c6..60416ad0c 100644 --- a/data/gui/accounts_window.ui +++ b/data/gui/accounts_window.ui @@ -1,1573 +1,114 @@ - + - - - 127 - 5 - 1 - 5 - - + + True False - gtk-add - - - True - False - gtk-remove - - - - - - - - - None - - - - - True - False - gtk-missing-image - - - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 - Accounts - dialog - - + vertical - + True False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - vertical - 6 + - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 175 - True - - - True - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 5 - vertical - 6 - - - 170 - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - in - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - False - - - - - - - - - True - True - 0 - - - - - Add - True - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - image1 - True - - - - False - True - 1 - - - - - Delete - True - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - image2 - True - - - - False - True - 2 - - - - - Re_name - True - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - rename_image - True - - - - False - True - 3 - - - - - False - False - - - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 5 - False - False - - - True - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - - - - - - True - False - vertical - - - Active - True - True - False - True - 0.5 - True - - - - False - False - 0 - - - - - True - True - - - True - False - 6 - 6 - 6 - - - True - False - _Jabber ID: - True - 0 - - - 0 - 0 - - - - - True - False - _Password: - True - 0 - - - 0 - 1 - - - - - True - False - Resour_ce: - True - 0 - - - 0 - 2 - - - - - True - False - Priori_ty: - True - 0 - - - 0 - 3 - - - - - True - True - True - - - - 1 - 0 - - - - - True - False - True - False - True - - - - 1 - 1 - - - - - True - True - Resource is sent to the Jabber server in order to separate the same JID in two or more parts depending on the number of the clients connected in the same server with the same account. So you might be connected in the same account with resource 'Home' and 'Work' at the same time. The resource which has the highest priority will get the events. (see below) - Gajim - - - - 1 - 2 - 2 - - - - - A_djust to status - True - True - False - Priority will change automatically according to your status. - True - 0.5 - True - - - - 1 - 3 - - - - - Anonymous authentication - True - True - False - 0.5 - True - - - - 2 - 0 - - - - - Save pass_word - True - True - False - If checked, Gajim will remember the password for this account - True - False - 0.5 - True - - - - 2 - 1 - - - - - True - True - Priority is used in Jabber to determine who gets the events from the jabber server when two or more clients are connected using the same account; The client with the highest priority gets the events - adjustment1 - 1 - True - - - - 2 - 3 - - - - - True - True - - - True - False - 11 - True - - - Synchronize contacts - True - True - False - Click to request authorization to all contacts of another account - True - - - - False - True - 0 - - - - - Chan_ge Password - True - True - False - Click to change account's password - True - - - - False - True - 1 - - - - - - - True - False - Administration operations - - - - - 0 - 4 - 3 - - - - - True - True - - - True - False - vertical - 6 - - - True - False - 6 - - - True - False - _Client Cert File: - True - cert_entry1 - 0 - - - False - True - 0 - - - - - True - True - - - - - True - True - 1 - - - - - Browse... - True - True - True - True - - - - False - False - 2 - - - - - True - True - 0 - - - - - Certificate is e_ncrypted - True - True - False - True - 0.5 - True - - - - True - True - 1 - - - - - - - True - False - Client certificate - - - - - 0 - 5 - 3 - - - - - - - True - False - Account - - - False - - - - - True - False - 6 - vertical - 6 - - - C_onnect on Gajim startup - True - True - False - If checked, Gajim, when launched, will automatically connect to jabber using this account - True - 0.5 - True - - - - False - False - 0 - - - - - Auto-reconnect when connection is lost - True - True - False - True - 0.5 - True - - - - False - False - 1 - - - - - Save conversation _logs for all contacts - True - True - False - True - 0.5 - True - True - - - - False - False - 2 - - - - - Synchronize logs with server - True - True - False - True - 0.5 - True - True - - - - False - False - 3 - - - - - Synch_ronize account status with global status - True - True - False - If checked, any change to the global status (handled by the combobox at the bottom of the roster window) will change the status of this account accordingly - True - 0.5 - True - - - - False - False - 4 - - - - - Receive conversations from other resources (provided the server has support for it) - True - True - False - True - 0.5 - True - - - - False - False - 5 - - - - - Use file transfer proxies - True - True - False - If checked, Gajim will also broadcast some more IPs except from just your IP, so file transfer has higher chances of working. - True - 0.5 - True - - - - False - False - 6 - - - - - 1 - - - - - True - False - General - True - - - 1 - False - - - - - True - False - 6 - vertical - 12 - - - True - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - none - - - True - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 - 6 - vertical - 6 - - - _use HTTP__PROXY environment variable - True - True - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - 0 - True - - - - False - True - 0 - - - - - True - False - 6 - - - True - False - liststore1 - - - - - 0 - - - - - True - True - 0 - - - - - _Manage... - True - True - False - True - - - - False - False - 1 - - - - - False - True - 1 - - - - - - - True - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - <b>Proxy</b> - True - - - - - False - True - 0 - - - - - True - False - 0 - none - - - True - False - 12 - 6 - vertical - 6 - - - _Warn before using an insecure connection - True - True - False - Check this so Gajim will ask you before sending your password over an insecure connection. - True - 0 - True - - - - False - False - 0 - - - - - Send _keep-alive packets - True - True - False - If checked, Gajim will send keep-alive packets to prevent connection timeout which results in disconnection - True - 0 - True - True - - - - False - False - 1 - - - - - Use cust_om hostname/port - True - True - False - True - 0 - True - - - - False - False - 2 - - - - - True - False - False - 6 - - - True - False - _Hostname: - True - - - False - False - 0 - - - - - True - True - - - - True - True - 1 - - - - - True - False - _Port: - True - - - False - False - 2 - - - - - True - True - 6 - 5222 - - - - False - True - 3 - - - - - True - True - 3 - - - - - - - True - False - <b>Miscellaneous</b> - True - - - - - False - True - 1 - - - - - 2 - - - - - True - False - Connection - - - 2 - False - - - - - True - False - 5 - vertical - 6 - - - True - False - 0 - none - - - True - False - 12 - 6 - vertical - 6 - - - True - False - 6 - - - True - False - No key selected - True - - - False - False - 0 - - - - - True - False - True - end - - - True - True - 1 - - - - - Choose _Key... - True - True - False - True - - - - False - False - 2 - - - - - False - True - 0 - - - - - Use G_PG Agent - True - False - True - False - If checked, Gajim will get the password from a GPG agent like seahorse - True - 0 - True - - - - False - False - 1 - - - - - - - True - False - <b>OpenPGP</b> - True - - - - - False - True - 0 - - - - - True - False - 0 - none - - - _Edit Personal Information... - True - True - False - Information about you, as stored in the server - 12 - 6 - True - - - - - - True - False - <b>Personal Information</b> - True - - - - - False - True - 1 - - - - - 3 - - - - - True - False - Personal Information - - - 3 - False - - - - - True - True - 1 - - - - - 1 - - - - - - - - True - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - vertical - - - Active - True - True - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - 0.5 - True - - - - False - True - 0 - - - - - True - True - - - True - False - 6 - vertical - 6 - - - Co_nnect on Gajim startup - True - True - False - If checked, Gajim, when launched, will automatically connect to jabber using this account - True - 0.5 - True - - - - False - False - 0 - - - - - Save conversation _logs for all contacts - True - True - False - True - 0.5 - True - - - - False - False - 1 - - - - - Synchroni_ze account status with global status - True - True - False - If checked, any change to the global status (handled by the combobox at the bottom of the roster window) will change the status of this account accordingly - True - 0.5 - True - - - - False - False - 2 - - - - - True - False - - - Use cust_om port: - True - True - False - If the default port that is used for incoming messages is unfitting for your setup you can select another one here. -You might consider to change possible firewall settings. - True - 0.5 - True - - - - False - False - 0 - - - - - True - True - 6 - - - - False - False - 1 - - - - - False - True - 10 - 3 - - - - - - - True - False - General - True - - - False - - - - - True - False - 11 - 5 - 5 - - - True - False - vertical - 5 - - - True - False - <b>OpenPGP</b> - True - 0 - - - False - False - 0 - - - - - True - False - 6 - - - True - False - No key selected - - - False - False - 0 - - - - - True - False - True - end - - - True - True - 1 - - - - - Choose _Key... - True - True - False - True - - - - False - False - 2 - - - - - False - True - 1 - - - - - Use G_PG Agent - True - True - False - If checked, Gajim will get the password from a GPG agent like seahorse - True - 0.5 - True - - - - False - False - 2 - - - - - 0 - 0 - 2 - - - - - True - False - <b>Personal Information</b> - True - 0 - - - 0 - 1 - 2 - - - - - True - False - First Name: - 1 - - - 0 - 2 - - - - - True - False - Last Name: - 1 - - - 0 - 3 - - - - - True - False - Jabber ID: - 1 - - - 0 - 4 - - - - - True - False - E-Mail: - 1 - - - 0 - 5 - - - - - True - True - True - - - - 1 - 2 - - - - - True - True - True - - - - 1 - 3 - - - - - True - True - True - - - - 1 - 4 - - - - - True - True - True - - - - 1 - 5 - - - - - 1 - - - - - True - False - Personal Information - - - 1 - False - - - - - True - True - 1 - - - - - 2 - - - - - - - - True - False - - - - - True - True - 0 - - - - - Mer_ge accounts - True - True - False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - 0.5 - True - - - False - True - 1 - - - - + True False - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 6 - end + vertical - - gtk-close + True True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - + never + in + 400 + True + + + True + False + + + OptionsBox + True + False + none + + + + + False - False + True 0 + + + True + False + False + + + False + True + 1 + + - False - True - 3 + main + page0 + + False + True + 0 + + + + + True + False + Accounts + True + :close + + + True + True + True + + + + True + False + go-previous-symbolic + + + + + + + True + True + True + + + True + False + open-menu-symbolic + + + + + 1 + diff --git a/data/gui/synchronise_select_account_dialog.ui b/data/gui/synchronise_select_account_dialog.ui index 58d066d46..365f862c1 100644 --- a/data/gui/synchronise_select_account_dialog.ui +++ b/data/gui/synchronise_select_account_dialog.ui @@ -9,6 +9,7 @@ 350 300 dialog + True diff --git a/data/style/gajim.css b/data/style/gajim.css index f735bc487..62c782586 100644 --- a/data/style/gajim.css +++ b/data/style/gajim.css @@ -30,14 +30,34 @@ popover#EmoticonPopover flowboxchild { padding-top: 5px; padding-bottom: 5px; } #ServerInfoGrid > list > label { padding:10px; color: @insensitive_fg_color; font-weight: bold; } #ServerInfoGrid > list > row.activatable:active { box-shadow: none; } -/* Generic Options Dialog */ -#OptionsDialog list > row { border-bottom: 1px solid; border-color: @theme_unfocused_bg_color; } -#OptionsDialog list > row:last-child { border-bottom: 0px} -#OptionsDialog list > row { padding: 10px; } -#OptionsDialog list > row.activatable:active { box-shadow: none; } +/* OptionsBox */ +#OptionsBox > row { border-bottom: 1px solid; border-color: @theme_unfocused_bg_color; } +#OptionsBox > row:last-child { border-bottom: 0px} +#OptionsBox > row.activatable:active { box-shadow: none; } +#OptionsBox > row { padding: 10px 20px 10px 10px; } +#OptionsBox > row:not(.activatable) label { color: @insensitive_fg_color } + +/* GenericOption */ +#SubDescription { color: @insensitive_fg_color;} +#GenericOptionBox { margin-left: 30px; } +#GenericOptionBox > label { padding-right: 3px; } /* Generic Popover Menu with Buttons */ .PopoverButtonListbox { padding-left: 0px; padding-right: 0px; } .PopoverButtonListbox > list { margin-top: 10px; margin-bottom: 10px; } .PopoverButtonListbox > list > row { padding: 10px 20px 10px 20px; } .PopoverButtonListbox > list > row.activatable:active { box-shadow: none; background-color: @theme_selected_bg_color } + +/* Accounts Window */ +#AccountsWindow > box { padding:30px 30px 30px 30px;} +#AccountsWindow scrolledwindow {border: none;} +#AccountsWindow list {border: 1px solid; border-color: @borders;} +#AccountsWindow > box actionbar box {border: none;} + +#AccountNameEntry:disabled { font-size: 16px; + font-weight: bold; + border: none; + background-color: @theme_unfocused_bg_color; + color: @theme_text_color; } + + diff --git a/gajim/accounts_window.py b/gajim/accounts_window.py new file mode 100644 index 000000000..3b4f3df1a --- /dev/null +++ b/gajim/accounts_window.py @@ -0,0 +1,698 @@ +from functools import partial + +from gi.repository import Gtk, Gio, GLib, Gdk + +from gajim.common import app +from gajim.gtkgui_helpers import get_image_button +from gajim import gtkgui_helpers +from gajim import gui_menu_builder +from gajim.common import passwords +from gajim import dialogs +from gajim import config +from gajim.common import helpers +from gajim.common.connection import Connection +from gajim.common.zeroconf.connection_zeroconf import ConnectionZeroconf +from gajim.options_dialog import OptionsDialog, OptionsBox +from gajim.common.const import Option, OptionKind, OptionType + + +class AccountsWindow(Gtk.ApplicationWindow): + def __init__(self): + Gtk.ApplicationWindow.__init__(self) + self.set_application(app.app) + self.set_position(Gtk.WindowPosition.CENTER) + self.set_show_menubar(False) + self.set_name('AccountsWindow') + self.set_size_request(500, -1) + self.set_resizable(False) + self.need_relogin = {} + + glade_objects = [ + 'stack', 'box', 'actionbar', 'headerbar', 'back_button', + 'menu_button', 'account_page', 'account_list'] + self.builder = gtkgui_helpers.get_gtk_builder('accounts_window.ui') + for obj in glade_objects: + setattr(self, obj, self.builder.get_object(obj)) + + self.set_titlebar(self.headerbar) + + menu = Gio.Menu() + menu.append('Merge Accounts', 'app.merge') + menu.append('Use PGP Agent', 'app.agent') + self.menu_button.set_menu_model(menu) + + button = get_image_button('list-add-symbolic', 'Add') + button.set_action_name('app.add-account') + self.actionbar.pack_start(button) + + accounts = app.config.get_per('accounts') + accounts.sort() + for account in accounts: + self.need_relogin[account] = self.get_relogin_options(account) + account_item = Account(account, self) + self.account_list.add(account_item) + account_item.set_activatable() + + self.add(self.box) + self.builder.connect_signals(self) + + self.connect('destroy', self.on_destroy) + self.connect('key-press-event', self.on_key_press) + self.show_all() + + def on_key_press(self, widget, event): + if event.keyval == Gdk.KEY_Escape: + self.destroy() + + def on_destroy(self, *args): + self.check_relogin() + del app.interface.instances['accounts'] + + def on_child_visible(self, stack, *args): + page = stack.get_visible_child_name() + if page is None: + return + if page == 'main': + self.menu_button.show() + self.back_button.hide() + self.check_relogin() + else: + self.back_button.show() + self.menu_button.hide() + + def on_back_button(self, *args): + page = self.stack.get_visible_child_name() + child = self.stack.get_visible_child() + self.remove_all_pages() + if page == 'account': + child.toggle.set_active(False) + self.stack.add_named(self.account_page, 'main') + self.stack.set_visible_child_name('main') + self.update_accounts() + else: + self.stack.add_named(child.parent, 'account') + self.stack.set_visible_child_name('account') + + def update_accounts(self): + for row in self.account_list.get_children(): + row.get_child().update() + + @staticmethod + def on_row_activated(listbox, row): + row.get_child().on_row_activated() + + def remove_all_pages(self): + for page in self.stack.get_children(): + self.stack.remove(page) + + def set_page(self, page, name): + self.remove_all_pages() + self.stack.add_named(page, name) + page.update() + page.show_all() + self.stack.set_visible_child(page) + + def update_proxy_list(self): + page = self.stack.get_child_by_name('connetion') + if page is None: + return + page.options['proxy'].update_values() + + def check_relogin(self): + for account in self.need_relogin: + options = self.get_relogin_options(account) + active = app.config.get_per('accounts', account, 'active') + if options != self.need_relogin[account]: + self.need_relogin[account] = options + if active: + self.relog(account) + break + + def relog(self, account): + if app.connections[account].connected == 0: + return + + if account == app.ZEROCONF_ACC_NAME: + app.connections[app.ZEROCONF_ACC_NAME].update_details() + return + + def login(account, show_before, status_before): + """ + Login with previous status + """ + # first make sure connection is really closed, + # 0.5 may not be enough + app.connections[account].disconnect(True) + app.interface.roster.send_status( + account, show_before, status_before) + + def relog(account): + show_before = app.SHOW_LIST[app.connections[account].connected] + status_before = app.connections[account].status + app.interface.roster.send_status( + account, 'offline', _('Be right back.')) + GLib.timeout_add(500, login, account, show_before, status_before) + + dialogs.YesNoDialog( + _('Relogin now?'), + _('If you want all the changes to apply instantly, ' + 'you must relogin.'), + transient_for=self, + on_response_yes=lambda *args: relog(account)) + + @staticmethod + def get_relogin_options(account): + if account == app.ZEROCONF_ACC_NAME: + options = ['zeroconf_first_name', 'zeroconf_last_name', + 'zeroconf_jabber_id', 'zeroconf_email', 'keyid'] + else: + options = ['client_cert', 'proxy', 'resource', + 'use_custom_host', 'custom_host', 'custom_port', + 'keyid'] + + values = [] + for option in options: + values.append(app.config.get_per('accounts', account, option)) + return values + + def on_remove_account(self, button, account): + if app.events.get_events(account): + dialogs.ErrorDialog( + _('Unread events'), + _('Read all pending events before removing this account.'), + transient_for=self) + return + + if app.config.get_per('accounts', account, 'is_zeroconf'): + # Should never happen as button is insensitive + return + + win_opened = False + if app.interface.msg_win_mgr.get_controls(acct=account): + win_opened = True + elif account in app.interface.instances: + for key in app.interface.instances[account]: + if (app.interface.instances[account][key] and + key != 'remove_account'): + win_opened = True + break + + # Detect if we have opened windows for this account + + def remove(account): + if (account in app.interface.instances and + 'remove_account' in app.interface.instances[account]): + dialog = app.interface.instances[account]['remove_account'] + dialog.window.present() + else: + if account not in app.interface.instances: + app.interface.instances[account] = {} + app.interface.instances[account]['remove_account'] = \ + config.RemoveAccountWindow(account) + if win_opened: + dialogs.ConfirmationDialog( + _('You have opened chat in account %s') % account, + _('All chat and groupchat windows will be closed. ' + 'Do you want to continue?'), + on_response_ok=(remove, account)) + else: + remove(account) + + def remove_account(self, account): + for row in self.account_list.get_children(): + if row.get_child().account == account: + self.account_list.remove(row) + del self.need_relogin[account] + break + + def add_account(self, account): + account_item = Account(account, self) + self.account_list.add(account_item) + account_item.set_activatable() + self.account_list.show_all() + self.stack.show_all() + self.need_relogin[account] = self.get_relogin_options(account) + + def select_account(self, account): + for row in self.account_list.get_children(): + if row.get_child().account == account: + self.account_list.emit('row-activated', row) + break + + @staticmethod + def enable_account(account): + if account == app.ZEROCONF_ACC_NAME: + app.connections[account] = ConnectionZeroconf(account) + else: + app.connections[account] = Connection(account) + + # update variables + app.interface.instances[account] = { + 'infos': {}, 'disco': {}, 'gc_config': {}, 'search': {}, + 'online_dialog': {}, 'sub_request': {}} + app.interface.minimized_controls[account] = {} + app.connections[account].connected = 0 + app.groups[account] = {} + app.contacts.add_account(account) + app.gc_connected[account] = {} + app.automatic_rooms[account] = {} + app.newly_added[account] = [] + app.to_be_removed[account] = [] + if account == app.ZEROCONF_ACC_NAME: + app.nicks[account] = app.ZEROCONF_ACC_NAME + else: + app.nicks[account] = app.config.get_per( + 'accounts', account, 'name') + app.block_signed_in_notifications[account] = True + app.sleeper_state[account] = 'off' + app.encrypted_chats[account] = [] + app.last_message_time[account] = {} + app.status_before_autoaway[account] = '' + app.transport_avatar[account] = {} + app.gajim_optional_features[account] = [] + app.caps_hash[account] = '' + helpers.update_optional_features(account) + # refresh roster + if len(app.connections) >= 2: + # Do not merge accounts if only one exists + app.interface.roster.regroup = app.config.get('mergeaccounts') + else: + app.interface.roster.regroup = False + app.interface.roster.setup_and_draw_roster() + gui_menu_builder.build_accounts_menu() + + @staticmethod + def disable_account(account): + app.interface.roster.close_all(account) + if account == app.ZEROCONF_ACC_NAME: + app.connections[account].disable_account() + app.connections[account].cleanup() + del app.connections[account] + del app.interface.instances[account] + del app.interface.minimized_controls[account] + del app.nicks[account] + del app.block_signed_in_notifications[account] + del app.groups[account] + app.contacts.remove_account(account) + del app.gc_connected[account] + del app.automatic_rooms[account] + del app.to_be_removed[account] + del app.newly_added[account] + del app.sleeper_state[account] + del app.encrypted_chats[account] + del app.last_message_time[account] + del app.status_before_autoaway[account] + del app.transport_avatar[account] + del app.gajim_optional_features[account] + del app.caps_hash[account] + if len(app.connections) >= 2: + # Do not merge accounts if only one exists + app.interface.roster.regroup = app.config.get('mergeaccounts') + else: + app.interface.roster.regroup = False + app.interface.roster.setup_and_draw_roster() + gui_menu_builder.build_accounts_menu() + + +class Account(Gtk.Box): + def __init__(self, account, parent): + Gtk.Box.__init__(self, orientation=Gtk.Orientation.HORIZONTAL, + spacing=12) + self.account = account + if account == app.ZEROCONF_ACC_NAME: + self.options = ZeroConfPage(account) + else: + self.options = AccountPage(account) + self.parent = parent + + switch = Gtk.Switch() + switch.set_active(app.config.get_per('accounts', account, 'active')) + switch.set_vexpand(False) + switch.set_valign(Gtk.Align.CENTER) + switch.set_halign(Gtk.Align.START) + if account == app.ZEROCONF_ACC_NAME and not app.HAVE_ZEROCONF: + switch.set_sensitive(False) + switch.set_active(False) + switch.connect('notify::active', self.on_switch, self.account) + + account_label = app.config.get_per('accounts', account, 'account_label') + self.label = Gtk.Label(label=account_label or account) + self.label.set_halign(Gtk.Align.START) + self.label.set_hexpand(True) + + self.add(switch) + self.add(self.label) + + if account != app.ZEROCONF_ACC_NAME: + button = get_image_button('list-remove-symbolic', 'Remove') + button.connect('clicked', parent.on_remove_account, account) + self.add(button) + + def set_activatable(self): + if self.account == app.ZEROCONF_ACC_NAME: + self.get_parent().set_activatable(app.HAVE_ZEROCONF) + + def on_switch(self, switch, param, account): + old_state = app.config.get_per('accounts', account, 'active') + state = switch.get_active() + if old_state == state: + return + + if (account in app.connections and + app.connections[account].connected > 0): + # connecting or connected + dialogs.ErrorDialog( + _('You are currently connected to the server'), + _('To disable the account, you must be disconnected.'), + transient_for=self.parent) + switch.set_active(not state) + return + if state: + self.parent.enable_account(account) + else: + self.parent.disable_account(account) + app.config.set_per('accounts', account, 'active', state) + + def on_row_activated(self): + self.options.update_states() + self.parent.set_page(self.options, 'account') + + def update(self): + account_label = app.config.get_per( + 'accounts', self.account, 'account_label') + self.label.set_text(account_label or self.account) + + +class GenericOptionPage(Gtk.Box): + def __init__(self, account, parent, options): + Gtk.Box.__init__(self, orientation=Gtk.Orientation.VERTICAL, spacing=12) + self.account = account + self.parent = parent + + self.toggle = get_image_button('document-edit-symbolic', + _('Rename account label'), toggle=True) + self.toggle.connect('toggled', self.set_entry_text) + + self.entry = Gtk.Entry() + self.entry.set_sensitive(False) + self.entry.set_name('AccountNameEntry') + self.set_entry_text(self.toggle, update=True) + + box = Gtk.Box() + if isinstance(self, AccountPage): + box.pack_start(self.toggle, False, True, 0) + box.pack_start(self.entry, True, True, 0) + + self.listbox = OptionsBox(account) + self.listbox.set_selection_mode(Gtk.SelectionMode.NONE) + + for option in options: + self.listbox.add_option(option) + self.listbox.update_states() + + self.pack_start(box, False, False, 0) + self.pack_start(self.listbox, True, True, 0) + + self.listbox.connect('row-activated', self.on_row_activated) + + def update_states(self): + self.listbox.update_states() + + def on_row_activated(self, listbox, row): + self.toggle.set_active(False) + row.get_child().on_row_activated() + + def set_entry_text(self, toggle, update=False): + account_label = app.config.get_per( + 'accounts', self.account, 'account_label') + if update: + self.entry.set_text(account_label or self.account) + return + if toggle.get_active(): + self.entry.set_sensitive(True) + self.entry.grab_focus() + else: + self.entry.set_sensitive(False) + value = self.entry.get_text() + if not value: + value = account_label or self.account + app.config.set_per('accounts', self.account, + 'account_label', value or self.account) + if app.config.get_per('accounts', self.account, 'active'): + app.interface.roster.draw_account(self.account) + + def update(self): + self.set_entry_text(self.toggle, update=True) + + def set_page(self, options, name): + options.update_states() + self.get_toplevel().set_page(options, name) + + +class AccountPage(GenericOptionPage): + def __init__(self, account, parent=None): + + general = partial( + self.set_page, GeneralPage(account, self), 'general') + connection = partial( + self.set_page, ConnectionPage(account, self), 'connection') + + options = [ + Option(OptionKind.LOGIN, _('Login'), OptionType.DIALOG, + props={'dialog': LoginDialog}), + + Option(OptionKind.ACTION, _('Profile'), OptionType.ACTION, + '-profile', props={'action_args': account}), + + Option(OptionKind.CALLBACK, _('General'), + name='general', props={'callback': general}), + + Option(OptionKind.CALLBACK, _('Connection'), + name='connection', props={'callback': connection}), + + Option(OptionKind.ACTION, _('Import Contacts'), OptionType.ACTION, + '-import-contacts', props={'action_args': account}), + + Option(OptionKind.DIALOG, _('Client Certificate'), + OptionType.DIALOG, props={'dialog': CertificateDialog}), + + Option(OptionKind.GPG, _('OpenPGP Key'), OptionType.DIALOG, + props={'dialog': None}), + ] + + GenericOptionPage.__init__(self, account, parent, options) + + +class GeneralPage(GenericOptionPage): + def __init__(self, account, parent=None): + + options = [ + Option(OptionKind.SWITCH, _('Connect on startup'), + OptionType.ACCOUNT_CONFIG, 'autoconnect'), + + Option(OptionKind.SWITCH, _('Reconnect when connection is lost'), + OptionType.ACCOUNT_CONFIG, 'autoreconnect'), + + Option(OptionKind.SWITCH, _('Save conversations for all contacts'), + OptionType.ACCOUNT_CONFIG, 'no_log_for', + desc=_('Store conversations on the harddrive')), + + Option(OptionKind.SWITCH, _('Server Message Archive'), + OptionType.ACCOUNT_CONFIG, 'sync_logs_with_server', + desc=_('Messages get stored on the server.\n' + 'The archive is used to sync messages\n' + 'between multiple devices.\n' + 'XEP-0313')), + + Option(OptionKind.SWITCH, _('Global Status'), + OptionType.ACCOUNT_CONFIG, 'sync_with_global_status', + desc=_('Synchronise the status of all accounts')), + + Option(OptionKind.SWITCH, _('Message Carbons'), + OptionType.ACCOUNT_CONFIG, 'enable_message_carbons', + desc=_('All your other online devices get copies\n' + 'of sent and received messages.\n' + 'XEP-0280')), + + Option(OptionKind.SWITCH, _('Use file transfer proxies'), + OptionType.ACCOUNT_CONFIG, 'use_ft_proxies'), + ] + GenericOptionPage.__init__(self, account, parent, options) + + +class ConnectionPage(GenericOptionPage): + def __init__(self, account, parent=None): + + options = [ + Option(OptionKind.SWITCH, 'HTTP_PROXY', + OptionType.ACCOUNT_CONFIG, 'use_env_http_proxy', + desc=_('Use environment variable')), + + Option(OptionKind.PROXY, _('Proxy'), + OptionType.ACCOUNT_CONFIG, 'proxy', name='proxy'), + + Option(OptionKind.SWITCH, _('Warn on insecure connection'), + OptionType.ACCOUNT_CONFIG, + 'warn_when_insecure_ssl_connection'), + + Option(OptionKind.SWITCH, _('Send keep-alive packets'), + OptionType.ACCOUNT_CONFIG, 'keep_alives_enabled'), + + Option(OptionKind.HOSTNAME, _('Hostname'), OptionType.DIALOG, + desc=_('Manually set the hostname for the server'), + props={'dialog': CutstomHostnameDialog}), + + Option(OptionKind.ENTRY, _('Resource'), + OptionType.ACCOUNT_CONFIG, 'resource'), + + Option(OptionKind.PRIORITY, _('Priority'), + OptionType.DIALOG, props={'dialog': PriorityDialog}), + ] + + GenericOptionPage.__init__(self, account, parent, options) + + +class ZeroConfPage(GenericOptionPage): + def __init__(self, account, parent=None): + + options = [ + Option(OptionKind.DIALOG, _('Credentials'), + OptionType.DIALOG, props={'dialog': CredentialsDialog}), + + Option(OptionKind.SWITCH, _('Connect on startup'), + OptionType.ACCOUNT_CONFIG, 'autoconnect', + desc=_('Use environment variable')), + + Option(OptionKind.SWITCH, _('Save conversations for all contacts'), + OptionType.ACCOUNT_CONFIG, 'no_log_for', + desc=_('Store conversations on the harddrive')), + + Option(OptionKind.SWITCH, _('Global Status'), + OptionType.ACCOUNT_CONFIG, 'sync_with_global_status', + desc=_('Synchronize the status of all accounts')), + + Option(OptionKind.GPG, _('OpenPGP Key'), + OptionType.DIALOG, props={'dialog': None}), + ] + + GenericOptionPage.__init__(self, account, parent, options) + + +class CredentialsDialog(OptionsDialog): + def __init__(self, account, parent): + + options = [ + Option(OptionKind.ENTRY, _('First Name'), + OptionType.ACCOUNT_CONFIG, 'zeroconf_first_name'), + + Option(OptionKind.ENTRY, _('Last Name'), + OptionType.ACCOUNT_CONFIG, 'zeroconf_last_name'), + + Option(OptionKind.ENTRY, _('Jabber ID'), + OptionType.ACCOUNT_CONFIG, 'zeroconf_jabber_id'), + + Option(OptionKind.ENTRY, _('Email'), + OptionType.ACCOUNT_CONFIG, 'zeroconf_email'), + ] + + OptionsDialog.__init__(self, parent, _('Credential Options'), + Gtk.DialogFlags.MODAL, options, account) + + +class PriorityDialog(OptionsDialog): + def __init__(self, account, parent): + + neg_priority = app.config.get('enable_negative_priority') + if neg_priority: + range_ = (-128, 127) + else: + range_ = (0, 127) + + options = [ + Option(OptionKind.SWITCH, _('Adjust to status'), + OptionType.ACCOUNT_CONFIG, 'adjust_priority_with_status', + 'adjust'), + + Option(OptionKind.SPIN, _('Priority'), + OptionType.ACCOUNT_CONFIG, 'priority', + enabledif=('adjust', False), props={'range_': range_}), + ] + + OptionsDialog.__init__(self, parent, _('Priority'), + Gtk.DialogFlags.MODAL, options, account) + + self.connect('destroy', self.on_destroy) + + def on_destroy(self, *args): + # Update priority + if self.account not in app.connections: + return + show = app.SHOW_LIST[app.connections[self.account].connected] + status = app.connections[self.account].status + app.connections[self.account].change_status(show, status) + + +class CutstomHostnameDialog(OptionsDialog): + def __init__(self, account, parent): + + options = [ + Option(OptionKind.SWITCH, _('Enable'), + OptionType.ACCOUNT_CONFIG, 'use_custom_host', name='custom'), + + Option(OptionKind.ENTRY, _('Hostname'), + OptionType.ACCOUNT_CONFIG, 'custom_host', + enabledif=('custom', True)), + + Option(OptionKind.ENTRY, _('Port'), + OptionType.ACCOUNT_CONFIG, 'custom_port', + enabledif=('custom', True)), + ] + + OptionsDialog.__init__(self, parent, _('Connection Options'), + Gtk.DialogFlags.MODAL, options, account) + + +class CertificateDialog(OptionsDialog): + def __init__(self, account, parent): + + options = [ + Option(OptionKind.FILECHOOSER, _('Client Certificate'), + OptionType.ACCOUNT_CONFIG, 'client_cert', + props={'filefilter': (_('PKCS12 Files'), '*.p12')}), + + Option(OptionKind.SWITCH, _('Encrypted Certificate'), + OptionType.ACCOUNT_CONFIG, 'client_cert_encrypted'), + ] + + OptionsDialog.__init__(self, parent, _('Certificate Options'), + Gtk.DialogFlags.MODAL, options, account) + + +class LoginDialog(OptionsDialog): + def __init__(self, account, parent): + + options = [ + Option(OptionKind.ENTRY, _('Password'), + OptionType.ACCOUNT_CONFIG, 'password', name='password', + enabledif=('savepass', True)), + + Option(OptionKind.SWITCH, _('Save Password'), + OptionType.ACCOUNT_CONFIG, 'savepass', name='savepass'), + + Option(OptionKind.CHANGEPASSWORD, _('Change Password'), + OptionType.DIALOG, callback=self.on_password_change, + props={'dialog': None}), + ] + + OptionsDialog.__init__(self, parent, _('Login Options'), + Gtk.DialogFlags.MODAL, options, account) + + self.connect('destroy', self.on_destroy) + + def on_password_change(self, new_password, data): + self.get_option('password').entry.set_text(new_password) + + def on_destroy(self, *args): + savepass = app.config.get_per('accounts', self.account, 'savepass') + if not savepass: + passwords.save_password(self.account, '') diff --git a/gajim/app_actions.py b/gajim/app_actions.py index a88a75bb7..e718dfa58 100644 --- a/gajim/app_actions.py +++ b/gajim/app_actions.py @@ -25,10 +25,12 @@ from gajim.common.exceptions import GajimGeneralException from gi.repository import Gtk import sys import os + from gajim import config from gajim import dialogs from gajim import features_window from gajim import shortcuts_window +from gajim import accounts_window import gajim.plugins.gui from gajim import history_window from gajim import disco @@ -57,10 +59,10 @@ class AppActions(): interface.instances['plugins'] = gajim.plugins.gui.PluginsWindow() def on_accounts(self, action, param): - if 'accounts' in interface.instances: - interface.instances['accounts'].window.present() + if 'accounts' in app.interface.instances: + app.interface.instances['accounts'].present() else: - interface.instances['accounts'] = config.AccountsWindow() + app.interface.instances['accounts'] = accounts_window.AccountsWindow() def on_history_manager(self, action, param): from gajim.history_manager import HistoryManager @@ -131,6 +133,35 @@ class AppActions(): def on_single_message(self, action, param): dialogs.SingleMessageWindow(param.get_string(), action='send') + def on_merge_accounts(self, action, param): + action.set_state(param) + value = param.get_boolean() + app.config.set('mergeaccounts', value) + if len(app.connections) >= 2: # Do not merge accounts if only one active + app.interface.roster.regroup = value + else: + app.interface.roster.regroup = False + app.interface.roster.setup_and_draw_roster() + + def on_use_pgp_agent(self, action, param): + action.set_state(param) + app.config.set('use_gpg_agent', param.get_boolean()) + + def on_add_account(self, action, param): + if 'account_creation_wizard' in app.interface.instances: + app.interface.instances['account_creation_wizard'].window.present() + else: + app.interface.instances['account_creation_wizard'] = \ + config.AccountCreationWizardWindow() + + def on_import_contacts(self, action, param): + account = param.get_string() + if 'import_contacts' in app.interface.instances: + app.interface.instances['import_contacts'].dialog.present() + else: + app.interface.instances['import_contacts'] = \ + dialogs.SynchroniseSelectAccountDialog(account) + # Advanced Actions def on_archiving_preferences(self, action, param): @@ -174,6 +205,13 @@ class AppActions(): interface.instances[account]['xml_console'] = \ dialogs.XMLConsoleWindow(account) + def on_manage_proxies(self, action, param): + if 'manage_proxies' in app.interface.instances: + app.interface.instances['manage_proxies'].window.present() + else: + app.interface.instances['manage_proxies'] = \ + config.ManageProxiesWindow(interface.roster.window) + # Admin Actions def on_set_motd(self, action, param): diff --git a/gajim/common/config.py b/gajim/common/config.py index 4b5f05ae6..f8ad19b2a 100644 --- a/gajim/common/config.py +++ b/gajim/common/config.py @@ -325,6 +325,7 @@ class Config: __options_per_key = { 'accounts': ({ 'name': [ opt_str, '', '', True ], + 'account_label': [ opt_str, '', '', False ], 'hostname': [ opt_str, '', '', True ], 'anonymous_auth': [ opt_bool, False ], 'client_cert': [ opt_str, '', '', True ], diff --git a/gajim/common/const.py b/gajim/common/const.py index 63a801b86..8985ced5c 100644 --- a/gajim/common/const.py +++ b/gajim/common/const.py @@ -1,3 +1,34 @@ +from enum import IntEnum, unique +from collections import namedtuple + +Option = namedtuple('Option', 'kind label type value name callback data desc enabledif props') +Option.__new__.__defaults__ = (None,) * len(Option._fields) + +@unique +class OptionKind(IntEnum): + ENTRY = 0 + SWITCH = 1 + SPIN = 2 + ACTION = 3 + LOGIN = 4 + DIALOG = 5 + CALLBACK = 6 + PROXY = 7 + HOSTNAME = 8 + PRIORITY = 9 + FILECHOOSER = 10 + CHANGEPASSWORD = 11 + GPG = 12 + +@unique +class OptionType(IntEnum): + ACCOUNT_CONFIG = 0 + CONFIG = 1 + BOOL = 2 + ACTION = 3 + DIALOG = 4 + + THANKS = u"""\ Alexander Futász Alexander V. Butenko diff --git a/gajim/config.py b/gajim/config.py index de0ac06bc..1245deabf 100644 --- a/gajim/config.py +++ b/gajim/config.py @@ -3158,10 +3158,10 @@ class RemoveAccountWindow: app.app.remove_account_actions(self.account) gui_menu_builder.build_accounts_menu() if 'accounts' in app.interface.instances: - app.interface.instances['accounts'].init_accounts() - app.interface.instances['accounts'].init_account() + app.interface.instances['accounts'].remove_account(self.account) self.window.destroy() + #---------- ManageBookmarksWindow class -------------# class ManageBookmarksWindow: def __init__(self): @@ -3733,7 +3733,7 @@ class AccountCreationWizardWindow: self.account = server i = 1 - while self.account in app.connections: + while self.account in app.config.get_per('accounts'): self.account = server + str(i) i += 1 @@ -3754,7 +3754,7 @@ class AccountCreationWizardWindow: return self.account = server i = 1 - while self.account in app.connections: + while self.account in app.config.get_per('accounts'): self.account = server + str(i) i += 1 @@ -3982,7 +3982,7 @@ class AccountCreationWizardWindow: def on_advanced_button_clicked(self, widget): if 'accounts' in app.interface.instances: - app.interface.instances['accounts'].window.present() + app.interface.instances['accounts'].present() else: app.interface.instances['accounts'] = AccountsWindow() app.interface.instances['accounts'].select_account(self.account) @@ -4083,9 +4083,11 @@ class AccountCreationWizardWindow: app.gajim_optional_features[self.account] = [] app.caps_hash[self.account] = '' helpers.update_optional_features(self.account) + # action must be added before account window is updated + app.app.add_account_actions(self.account) # refresh accounts window if 'accounts' in app.interface.instances: - app.interface.instances['accounts'].init_accounts() + app.interface.instances['accounts'].add_account(self.account) # refresh roster if len(app.connections) >= 2: # Do not merge accounts if only one exists @@ -4093,7 +4095,6 @@ class AccountCreationWizardWindow: else: app.interface.roster.regroup = False app.interface.roster.setup_and_draw_roster() - app.app.add_account_actions(self.account) gui_menu_builder.build_accounts_menu() class ManagePEPServicesWindow: diff --git a/gajim/dialogs.py b/gajim/dialogs.py index 3ae5d6301..8a3739e5e 100644 --- a/gajim/dialogs.py +++ b/gajim/dialogs.py @@ -48,6 +48,8 @@ from random import randrange from gajim.common import pep from gajim.common import ged from gajim.common import const +from gajim.options_dialog import OptionsDialog +from gajim.common.const import Option, OptionKind, OptionType try: from gajim import gtkspell @@ -2675,7 +2677,7 @@ class SynchroniseSelectAccountDialog: self.account = account self.xml = gtkgui_helpers.get_gtk_builder('synchronise_select_account_dialog.ui') self.dialog = self.xml.get_object('synchronise_select_account_dialog') - self.dialog.set_transient_for(app.interface.instances['accounts'].window) + self.dialog.set_transient_for(app.interface.instances['accounts']) self.accounts_treeview = self.xml.get_object('accounts_treeview') model = Gtk.ListStore(str, str, bool) self.accounts_treeview.set_model(model) @@ -2731,6 +2733,10 @@ class SynchroniseSelectAccountDialog: return self.dialog.destroy() + @staticmethod + def on_destroy(widget): + del app.interface.instances['import_contacts'] + class SynchroniseSelectContactsDialog: def __init__(self, account, remote_account): self.local_account = account @@ -3323,6 +3329,8 @@ class XMLConsoleWindow(Gtk.Window): setattr(self, obj, self.builder.get_object(obj)) self.set_titlebar(self.headerbar) + jid = app.get_jid_from_account(account) + self.headerbar.set_subtitle(jid) self.set_default_size(600, 600) self.add(self.box) @@ -3434,26 +3442,30 @@ class XMLConsoleWindow(Gtk.Window): def on_filter_options(self, *args): options = [ - SwitchOption('Presence', self.presence, - self.on_option, - 'presence'), - SwitchOption('Message', self.message, - self.on_option, - 'message'), - SwitchOption('Iq', self.iq, - self.on_option, - 'iq'), - SwitchOption('Stream\nManagement', self.stream, - self.on_option, - 'stream'), - SwitchOption('In', self.incoming, - self.on_option, - 'incoming'), - SwitchOption('Out', self.outgoing, - self.on_option, - 'outgoing')] + Option(OptionKind.SWITCH, 'Presence', + OptionType.BOOL, self.presence, + callback=self.on_option, data='presence'), - OptionsDialog(self, 'Filter', options) + Option(OptionKind.SWITCH, 'Message', + OptionType.BOOL, self.message, + callback=self.on_option, data='message'), + + Option(OptionKind.SWITCH, 'Iq', OptionType.BOOL, self.iq, + callback=self.on_option, data='iq'), + + Option(OptionKind.SWITCH, 'Stream\nManagement', + OptionType.BOOL, self.stream, + callback=self.on_option, data='stream'), + + Option(OptionKind.SWITCH, 'In', OptionType.BOOL, self.incoming, + callback=self.on_option, data='incoming'), + + Option(OptionKind.SWITCH, 'Out', OptionType.BOOL, self.outgoing, + callback=self.on_option, data='outgoing'), + ] + + OptionsDialog(self, 'Filter', Gtk.DialogFlags.DESTROY_WITH_PARENT, + options, self.account) def on_clear(self, *args): buffer_ = self.textview.get_buffer().set_text('') @@ -3468,13 +3480,12 @@ class XMLConsoleWindow(Gtk.Window): def on_enable(self, switch, param): self.enabled = switch.get_active() - def on_option(self, switch, param, *user_data): - kind = user_data[0] - setattr(self, kind, switch.get_active()) - value = not switch.get_active() + def on_option(self, value, data): + setattr(self, data, value) + value = not value table = self.textview.get_buffer().get_tag_table() - tag = table.lookup(kind) - if kind in ('incoming', 'outgoing'): + tag = table.lookup(data) + if data in ('incoming', 'outgoing'): if value: tag.set_priority(table.get_size() - 1) else: @@ -3522,58 +3533,6 @@ class XMLConsoleWindow(Gtk.Window): if at_the_end: GLib.idle_add(gtkgui_helpers.scroll_to_end, self.scrolled) - -class OptionsDialog(Gtk.Dialog): - def __init__(self, parent, title, options): - Gtk.Dialog.__init__(self, title, parent, - Gtk.DialogFlags.DESTROY_WITH_PARENT) - self.set_name('OptionsDialog') - self.set_resizable(False) - self.set_default_size(250, -1) - - self.remove(self.get_content_area()) - - listbox = Gtk.ListBox() - listbox.set_hexpand(True) - listbox.set_selection_mode(Gtk.SelectionMode.NONE) - - for option in options: - listbox.add(option) - - self.add(listbox) - - self.show_all() - listbox.connect('row-activated', self.on_row_activated) - - def on_row_activated(self, listbox, row): - row.get_child().set_switch_state() - - -class SwitchOption(Gtk.Grid): - def __init__(self, label, state, callback, *user_data): - Gtk.Grid.__init__(self) - self.set_column_spacing(6) - - label = Gtk.Label(label=label) - label.set_hexpand(True) - label.set_halign(Gtk.Align.START) - - self.switch = Gtk.Switch() - self.switch.set_active(state) - self.switch.connect("notify::active", callback, *user_data) - self.switch.set_hexpand(True) - self.switch.set_halign(Gtk.Align.END) - self.switch.set_valign(Gtk.Align.CENTER) - - self.add(label) - self.add(self.switch) - self.show_all() - - def set_switch_state(self): - state = self.switch.get_active() - self.switch.set_active(not state) - - #Action that can be done with an incoming list of contacts TRANSLATED_ACTION = {'add': _('add'), 'modify': _('modify'), 'remove': _('remove')} @@ -4580,7 +4539,7 @@ class ClientCertChooserDialog(FileChooserDialog): FileChooserDialog.__init__(self, title_text=_('Choose Client Cert #PCKS12'), - transient_for=app.interface.instances['accounts'].window, + transient_for=app.interface.instances['accounts'], action=Gtk.FileChooserAction.OPEN, buttons=(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL, Gtk.STOCK_OPEN, Gtk.ResponseType.OK), diff --git a/gajim/gajim.py b/gajim/gajim.py index 269c1c8af..a3dd77267 100644 --- a/gajim/gajim.py +++ b/gajim/gajim.py @@ -319,6 +319,7 @@ class GajimApplication(Gtk.Application): def add_actions(self): ''' Build Application Actions ''' from gajim.app_actions import AppActions + from gajim.common import app action = AppActions(self) self.account_actions = [ @@ -339,12 +340,30 @@ class GajimApplication(Gtk.Application): ('-update-motd', action.on_update_motd, 'online', 's'), ('-delete-motd', action.on_delete_motd, 'online', 's'), ('-activate-bookmark', - action.on_activate_bookmark, 'online', 'a{sv}') + action.on_activate_bookmark, 'online', 'a{sv}'), + ('-import-contacts', action.on_import_contacts, 'online', 's') ] + # General Stateful Actions + + act = Gio.SimpleAction.new_stateful( + 'merge', None, + GLib.Variant.new_boolean(app.config.get('mergeaccounts'))) + act.connect('change-state', action.on_merge_accounts) + self.add_action(act) + + act = Gio.SimpleAction.new_stateful( + 'agent', None, + GLib.Variant.new_boolean(app.config.get('use_gpg_agent'))) + self.add_action(act) + + # General Actions + self.general_actions = [ ('quit', action.on_quit), ('accounts', action.on_accounts), + ('add-account', action.on_add_account), + ('manage-proxies', action.on_manage_proxies), ('bookmarks', action.on_manage_bookmarks), ('history-manager', action.on_history_manager), ('preferences', action.on_preferences), @@ -364,8 +383,7 @@ class GajimApplication(Gtk.Application): act.connect("activate", func) self.add_action(act) - from gajim.common import app - accounts_list = sorted(app.contacts.get_accounts()) + accounts_list = sorted(app.config.get_per('accounts')) if not accounts_list: return if len(accounts_list) > 1: diff --git a/gajim/gtkgui_helpers.py b/gajim/gtkgui_helpers.py index 599b6d92d..6bd46111e 100644 --- a/gajim/gtkgui_helpers.py +++ b/gajim/gtkgui_helpers.py @@ -107,15 +107,16 @@ def add_image_to_button(button, icon_name): button.set_image(img) def get_image_button(icon_name, tooltip, toggle=False): - icon = get_icon_pixmap(icon_name) - image = Gtk.Image() - image.set_from_pixbuf(icon) if toggle: button = Gtk.ToggleButton() + icon = get_icon_pixmap(icon_name) + image = Gtk.Image() + image.set_from_pixbuf(icon) + button.set_image(image) else: - button = Gtk.Button() + button = Gtk.Button.new_from_icon_name( + icon_name, Gtk.IconSize.MENU) button.set_tooltip_text(_(tooltip)) - button.set_image(image) return button GUI_DIR = os.path.join(app.DATA_DIR, 'gui') diff --git a/gajim/options_dialog.py b/gajim/options_dialog.py new file mode 100644 index 000000000..b1f74ab5e --- /dev/null +++ b/gajim/options_dialog.py @@ -0,0 +1,585 @@ +from gi.repository import Gtk, GLib, Gdk, GObject +from gajim.common import app +from gajim.common import passwords +from gajim import gtkgui_helpers +from gajim.common.const import OptionKind, OptionType +from gajim.common.exceptions import GajimGeneralException +from gajim import dialogs + + +class OptionsDialog(Gtk.ApplicationWindow): + def __init__(self, parent, title, flags, options, account): + Gtk.ApplicationWindow.__init__(self) + self.set_application(app.app) + self.set_show_menubar(False) + self.set_title(title) + self.set_transient_for(parent) + self.set_resizable(False) + self.set_default_size(250, -1) + self.set_type_hint(Gdk.WindowTypeHint.DIALOG) + self.account = account + if flags == Gtk.DialogFlags.MODAL: + self.set_modal(True) + elif flags == Gtk.DialogFlags.DESTROY_WITH_PARENT: + self.set_destroy_with_parent(True) + + self.listbox = OptionsBox(account) + self.listbox.set_hexpand(True) + self.listbox.set_selection_mode(Gtk.SelectionMode.NONE) + + for option in options: + self.listbox.add_option(option) + self.listbox.update_states() + + self.add(self.listbox) + + self.show_all() + self.listbox.connect('row-activated', self.on_row_activated) + + @staticmethod + def on_row_activated(listbox, row): + row.get_child().on_row_activated() + + def get_option(self, name): + return self.listbox.get_option(name) + + +class OptionsBox(Gtk.ListBox): + def __init__(self, account): + Gtk.ListBox.__init__(self) + self.set_name('OptionsBox') + self.account = account + self.named_options = {} + + self.map = { + OptionKind.SWITCH: SwitchOption, + OptionKind.SPIN: SpinOption, + OptionKind.DIALOG: DialogOption, + OptionKind.ENTRY: EntryOption, + OptionKind.ACTION: ActionOption, + OptionKind.LOGIN: LoginOption, + OptionKind.FILECHOOSER: FileChooserOption, + OptionKind.CALLBACK: CallbackOption, + OptionKind.PROXY: ProxyComboOption, + OptionKind.PRIORITY: PriorityOption, + OptionKind.HOSTNAME: CutstomHostnameOption, + OptionKind.CHANGEPASSWORD: ChangePasswordOption, + OptionKind.GPG: GPGOption, + } + + def add_option(self, option): + if option.props is not None: + listitem = self.map[option.kind]( + self.account, *option[1:-1], **option.props) + else: + listitem = self.map[option.kind](self.account, *option[1:-1]) + listitem.connect('notify::option-value', self.on_option_changed) + if option.name is not None: + self.named_options[option.name] = listitem + self.add(listitem) + + def get_option(self, name): + return self.named_options[name] + + def update_states(self): + values = [] + values.append((None, None)) + for row in self.get_children(): + name = row.get_child().name + if name is None: + continue + value = row.get_child().get_property('option-value') + values.append((name, value)) + + for name, value in values: + for row in self.get_children(): + row.get_child().set_activatable(name, value) + + def on_option_changed(self, widget, *args): + value = widget.get_property('option-value') + for row in self.get_children(): + row.get_child().set_activatable(widget.name, value) + + +class GenericOption(Gtk.Grid): + def __init__(self, account, label, type_, value, + name, callback, data, desc, enabledif): + Gtk.Grid.__init__(self) + self.set_column_spacing(12) + self.set_size_request(-1, 25) + self.callback = callback + self.type_ = type_ + self.value = value + self.data = data + self.label = label + self.account = account + self.name = name + self.enabledif = enabledif + self.option_value = self.get_value() + + description_box = Gtk.Box( + orientation=Gtk.Orientation.VERTICAL, spacing=0) + description_box.set_valign(Gtk.Align.CENTER) + + optiontext = Gtk.Label(label=label) + optiontext.set_hexpand(True) + optiontext.set_halign(Gtk.Align.START) + optiontext.set_valign(Gtk.Align.CENTER) + optiontext.set_vexpand(True) + description_box.add(optiontext) + + if desc is not None: + description = Gtk.Label(label=desc) + description.set_name('SubDescription') + description.set_hexpand(True) + description.set_halign(Gtk.Align.START) + description.set_valign(Gtk.Align.CENTER) + description_box.add(description) + + self.add(description_box) + + self.option_box = Gtk.Box(spacing=6) + self.option_box.set_size_request(200, -1) + self.option_box.set_valign(Gtk.Align.CENTER) + self.option_box.set_name('GenericOptionBox') + self.add(self.option_box) + + def do_get_property(self, prop): + if prop.name == 'option-value': + return self.option_value + else: + raise AttributeError('unknown property %s' % prop.name) + + def do_set_property(self, prop, value): + if prop.name == 'option-value': + self.option_value = value + else: + raise AttributeError('unknown property %s' % prop.name) + + def get_value(self): + return self.__get_value(self.type_, self.value, self.account) + + @staticmethod + def __get_value(type_, value, account): + if value is None: + return + if type_ == OptionType.BOOL: + return value + elif type_ == OptionType.CONFIG: + return app.config.get(value) + elif type_ == OptionType.ACCOUNT_CONFIG: + if value == 'password': + return passwords.get_password(account) + elif value == 'no_log_for': + no_log = app.config.get_per( + 'accounts', account, 'no_log_for').split() + return account not in no_log + else: + return app.config.get_per('accounts', account, value) + elif type_ == OptionType.ACTION: + if value.startswith('-'): + return account + value + return value + else: + raise ValueError('Wrong OptionType?') + + def set_value(self, state): + if self.type_ == OptionType.CONFIG: + app.config.set(self.value, state) + if self.type_ == OptionType.ACCOUNT_CONFIG: + if self.value == 'password': + passwords.save_password(self.account, state) + if self.value == 'no_log_for': + self.set_no_log_for(self.account, state) + else: + app.config.set_per('accounts', self.account, self.value, state) + + if self.callback is not None: + self.callback(state, self.data) + + self.set_property('option-value', state) + + @staticmethod + def set_no_log_for(account, jid): + no_log = app.config.get_per('accounts', account, 'no_log_for').split() + if jid and account in no_log: + no_log.remove(account) + elif not jid and account not in no_log: + no_log.append(account) + app.config.set_per('accounts', account, 'no_log_for', ' '.join(no_log)) + + def on_row_activated(self): + raise NotImplementedError + + def set_activatable(self, name, value): + if self.enabledif is None or self.enabledif[0] != name: + return + activatable = (name, value) == self.enabledif + self.get_parent().set_activatable(activatable) + self.set_sensitive(activatable) + + +class SwitchOption(GenericOption): + + __gproperties__ = { + "option-value": (bool, 'Switch Value', '', False, + GObject.ParamFlags.READWRITE),} + + def __init__(self, *args): + GenericOption.__init__(self, *args) + + self.switch = Gtk.Switch() + self.switch.set_active(self.option_value) + self.switch.connect('notify::active', self.on_switch) + self.switch.set_hexpand(True) + self.switch.set_halign(Gtk.Align.END) + self.switch.set_valign(Gtk.Align.CENTER) + + self.option_box.add(self.switch) + + self.show_all() + + def on_row_activated(self): + state = self.switch.get_active() + self.switch.set_active(not state) + + def on_switch(self, switch, *args): + value = switch.get_active() + self.set_value(value) + + +class EntryOption(GenericOption): + + __gproperties__ = { + "option-value": (str, 'Entry Value', '', '', + GObject.ParamFlags.READWRITE),} + + def __init__(self, *args): + GenericOption.__init__(self, *args) + + self.entry = Gtk.Entry() + self.entry.set_text(str(self.option_value)) + self.entry.connect('notify::text', self.on_text_change) + self.entry.set_valign(Gtk.Align.CENTER) + + if self.value == 'password': + self.entry.set_invisible_char('*') + self.entry.set_visibility(False) + + self.option_box.pack_end(self.entry, True, True, 0) + + self.show_all() + + def on_text_change(self, *args): + text = self.entry.get_text() + self.set_value(text) + + def on_row_activated(self): + self.entry.grab_focus() + + +class DialogOption(GenericOption): + + __gproperties__ = { + "option-value": (str, 'Dummy', '', '', + GObject.ParamFlags.READWRITE),} + + def __init__(self, *args, dialog): + GenericOption.__init__(self, *args) + self.dialog = dialog + + self.option_value = Gtk.Label() + self.option_value.set_text(self.get_option_value()) + self.option_value.set_halign(Gtk.Align.END) + self.option_box.pack_start(self.option_value, True, True, 0) + + self.show_all() + + def show_dialog(self, parent): + if self.dialog: + dialog = self.dialog(self.account, parent) + dialog.connect('destroy', self.on_destroy) + + def on_destroy(self, *args): + self.option_value.set_text(self.get_option_value()) + + def get_option_value(self): + self.option_value.hide() + return '' + + def on_row_activated(self): + self.show_dialog(self.get_toplevel()) + + +class SpinOption(GenericOption): + + __gproperties__ = { + "option-value": (int, 'Priority', '', -128, 127, 0, + GObject.ParamFlags.READWRITE),} + + def __init__(self, *args, range_): + GenericOption.__init__(self, *args) + + lower, upper = range_ + adjustment = Gtk.Adjustment(0, lower, upper, 1, 10, 0) + + self.spin = Gtk.SpinButton() + self.spin.set_adjustment(adjustment) + self.spin.set_numeric(True) + self.spin.set_update_policy(Gtk.SpinButtonUpdatePolicy.IF_VALID) + self.spin.set_value(self.option_value) + self.spin.set_halign(Gtk.Align.END) + self.spin.set_valign(Gtk.Align.CENTER) + self.spin.connect('notify::value', self.on_value_change) + + self.option_box.pack_start(self.spin, True, True, 0) + + self.show_all() + + def on_row_activated(self): + self.spin.grab_focus() + + def on_value_change(self, spin, *args): + value = spin.get_value_as_int() + self.set_value(value) + + +class FileChooserOption(GenericOption): + + __gproperties__ = { + "option-value": (str, 'Certificate Path', '', '', + GObject.ParamFlags.READWRITE),} + + def __init__(self, *args, filefilter): + GenericOption.__init__(self, *args) + + button = Gtk.FileChooserButton(self.label, Gtk.FileChooserAction.OPEN) + button.set_halign(Gtk.Align.END) + + # GTK Bug: The FileChooserButton expands without limit + # get the label and use set_max_wide_chars() + label = button.get_children()[0].get_children()[0].get_children()[1] + label.set_max_width_chars(20) + + if filefilter: + name, pattern = filefilter + filter_ = Gtk.FileFilter() + filter_.set_name(name) + filter_.add_pattern(pattern) + button.add_filter(filter_) + button.set_filter(filter_) + + filter_ = Gtk.FileFilter() + filter_.set_name(_('All files')) + filter_.add_pattern('*') + button.add_filter(filter_) + + if self.option_value: + button.set_filename(self.option_value) + button.connect('selection-changed', self.on_select) + + clear_button = gtkgui_helpers.get_image_button( + 'edit-clear-all-symbolic', 'Clear File') + clear_button.connect('clicked', lambda *args: button.unselect_all()) + self.option_box.pack_start(button, True, True, 0) + self.option_box.pack_start(clear_button, False, False, 0) + + self.show_all() + + def on_select(self, filechooser): + self.set_value(filechooser.get_filename() or '') + + def on_row_activated(self): + pass + + +class CallbackOption(GenericOption): + + __gproperties__ = { + "option-value": (str, 'Dummy', '', '', + GObject.ParamFlags.READWRITE),} + + def __init__(self, *args, callback): + GenericOption.__init__(self, *args) + self.callback = callback + self.show_all() + + def on_row_activated(self): + self.callback() + + +class ActionOption(GenericOption): + + __gproperties__ = { + "option-value": (str, 'Dummy', '', '', + GObject.ParamFlags.READWRITE),} + + def __init__(self, *args, action_args): + GenericOption.__init__(self, *args) + self.action = gtkgui_helpers.get_action(self.option_value) + self.variant = GLib.Variant.new_string(action_args) + self.on_enable() + + self.show_all() + self.action.connect('notify::enabled', self.on_enable) + + def on_enable(self, *args): + self.set_sensitive(self.action.get_enabled()) + + def on_row_activated(self): + self.action.activate(self.variant) + + +class LoginOption(DialogOption): + def __init__(self, *args, **kwargs): + DialogOption.__init__(self, *args, **kwargs) + self.option_value.set_selectable(True) + + def get_option_value(self): + jid = app.get_jid_from_account(self.account) + return jid + + def set_activatable(self, name, value): + DialogOption.set_activatable(self, name, value) + anonym = app.config.get_per('accounts', self.account, 'anonymous_auth') + self.get_parent().set_activatable(not anonym) + + +class ProxyComboOption(GenericOption): + + __gproperties__ = { + "option-value": (str, 'Proxy', '', '', + GObject.ParamFlags.READWRITE),} + + def __init__(self, *args): + GenericOption.__init__(self, *args) + + self.combo = Gtk.ComboBoxText() + self.update_values() + + self.combo.connect('changed', self.on_value_change) + self.combo.set_valign(Gtk.Align.CENTER) + + button = gtkgui_helpers.get_image_button( + 'preferences-system-symbolic', 'Manage Proxies') + button.set_action_name('app.manage-proxies') + button.set_valign(Gtk.Align.CENTER) + + self.option_box.pack_start(self.combo, True, True, 0) + self.option_box.pack_start(button, False, True, 0) + self.show_all() + + def update_values(self): + proxies = app.config.get_per('proxies') + proxies.insert(0, _('None')) + self.combo.remove_all() + for index, value in enumerate(proxies): + self.combo.insert_text(-1, value) + if value == self.option_value or index == 0: + self.combo.set_active(index) + + def on_value_change(self, combo): + self.set_value(combo.get_active_text()) + + def on_row_activated(self): + pass + + +class PriorityOption(DialogOption): + def __init__(self, *args, **kwargs): + DialogOption.__init__(self, *args, **kwargs) + + def get_option_value(self): + adjust = app.config.get_per( + 'accounts', self.account, 'adjust_priority_with_status') + if adjust: + return _('Adjust to Status') + + priority = app.config.get_per('accounts', self.account, 'priority') + return str(priority) + + +class CutstomHostnameOption(DialogOption): + def __init__(self, *args, **kwargs): + DialogOption.__init__(self, *args, **kwargs) + + def get_option_value(self): + custom = app.config.get_per('accounts', self.account, 'use_custom_host') + return _('On') if custom else _('Off') + + +class ChangePasswordOption(DialogOption): + def __init__(self, *args, **kwargs): + DialogOption.__init__(self, *args, **kwargs) + + def show_dialog(self, parent): + try: + self.change_dialog = dialogs.ChangePasswordDialog( + self.account, self.on_changed, parent) + except GajimGeneralException: + return + self.change_dialog.dialog.set_modal(True) + + def on_changed(self, new_password): + if new_password is not None: + app.connections[self.account].change_password(new_password) + self.set_value(new_password) + + def set_activatable(self, name, value): + activatable = False + if self.account in app.connections: + con = app.connections[self.account] + activatable = con.connected >= 2 and con.register_supported + self.get_parent().set_activatable(activatable) + + +class GPGOption(DialogOption): + def __init__(self, *args, **kwargs): + DialogOption.__init__(self, *args, **kwargs) + + def show_dialog(self, parent): + secret_keys = app.connections[self.account].ask_gpg_secrete_keys() + secret_keys[_('None')] = _('None') + + if not secret_keys: + dialogs.ErrorDialog( + _('Failed to get secret keys'), + _('There is no OpenPGP secret key available.'), + transient_for=parent) + return + + dialog = dialogs.ChooseGPGKeyDialog( + _('OpenPGP Key Selection'), _('Choose your OpenPGP key'), + secret_keys, self.on_key_selected, transient_for=parent) + dialog.window.connect('destroy', self.on_destroy) + + def on_key_selected(self, keyID): + if keyID is None: + return + keyid_new, keyname_new = keyID + + keyid = app.config.get_per('accounts', self.account, 'keyid') + + if keyid_new == _('None'): + if keyid == '': + return + app.config.set_per('accounts', self.account, 'keyname', '') + app.config.set_per('accounts', self.account, 'keyid', '') + else: + if keyid == keyid_new: + return + app.config.set_per( + 'accounts', self.account, 'keyname', keyname_new) + app.config.set_per( + 'accounts', self.account, 'keyid', keyid_new) + + def get_option_value(self): + keyid = app.config.get_per('accounts', self.account, 'keyid') + keyname = app.config.get_per('accounts', self.account, 'keyname') + if keyid is not None: + return '\n'.join((keyid, keyname)) + return '' + + def set_activatable(self, name, value): + active = self.account in app.connections + self.get_parent().set_activatable(app.HAVE_GPG and active) diff --git a/gajim/roster_window.py b/gajim/roster_window.py index e07a7f354..b7f70cf5e 100644 --- a/gajim/roster_window.py +++ b/gajim/roster_window.py @@ -1052,7 +1052,8 @@ class RosterWindow: account_name = _('Merged accounts') accounts = [] else: - account_name = account + acclabel = app.config.get_per('accounts', account, 'account_label') + account_name = acclabel or account accounts = [account] if account in self.collapsed_rows and \ @@ -3229,7 +3230,7 @@ class RosterWindow: def on_edit_account(self, widget, account): if 'accounts' in app.interface.instances: - app.interface.instances['accounts'].window.present() + app.interface.instances['accounts'].present() else: app.interface.instances['accounts'] = config.AccountsWindow() app.interface.instances['accounts'].select_account(account) From 539c1969db63a284916d8005f42ef881d58967d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sat, 16 Sep 2017 15:27:31 +0200 Subject: [PATCH 18/30] Remove old AccountsWindow --- gajim/config.py | 1222 +---------------------------------------------- 1 file changed, 4 insertions(+), 1218 deletions(-) diff --git a/gajim/config.py b/gajim/config.py index 1245deabf..f1d743dd1 100644 --- a/gajim/config.py +++ b/gajim/config.py @@ -31,12 +31,14 @@ ## along with Gajim. If not, see . ## +import os + from gi.repository import Gtk from gi.repository import Gdk from gi.repository import Pango from gi.repository import GObject from gi.repository import GLib -import os + from gajim.common import config as c_config from gajim.common import sleepy from gajim.common.i18n import Q_ @@ -47,7 +49,6 @@ from gajim import cell_renderer_image from gajim import message_control from gajim.chat_control_base import ChatControlBase from gajim import dataforms_widget -from gajim import profile_window from gajim import gui_menu_builder try: @@ -59,11 +60,9 @@ except (ImportError, ValueError): from gajim.common import helpers from gajim.common import app from gajim.common import connection -from gajim.common import passwords -from gajim.common.zeroconf import connection_zeroconf from gajim.common import dataforms -from gajim.common import gpg from gajim.common import ged +from gajim.accounts_window import AccountsWindow try: from gajim.common.multimedia_helpers import AudioInputManager, AudioOutputManager @@ -72,9 +71,6 @@ try: except (ImportError, ValueError): HAS_GST = False -from gajim.common.exceptions import GajimGeneralException -from gajim.common.connection_handlers_events import InformationEvent - #---------- PreferencesWindow class -------------# class PreferencesWindow: """ @@ -1514,1216 +1510,6 @@ class ManageProxiesWindow: app.config.set_per('proxies', proxy, 'pass', value) -#---------- AccountsWindow class -------------# -class AccountsWindow: - """ - Class for accounts window: list of accounts - """ - - def on_accounts_window_destroy(self, widget): - del app.interface.instances['accounts'] - - def on_close_button_clicked(self, widget): - self.check_resend_relog() - self.window.destroy() - - def __init__(self): - self.xml = gtkgui_helpers.get_gtk_builder('accounts_window.ui') - self.window = self.xml.get_object('accounts_window') - self.window.set_transient_for(app.interface.roster.window) - self.accounts_treeview = self.xml.get_object('accounts_treeview') - self.remove_button = self.xml.get_object('remove_button') - self.rename_button = self.xml.get_object('rename_button') - self.change_password_button = self.xml.get_object('change_password_button1') - path_to_kbd_input_img = gtkgui_helpers.get_icon_path('gajim-kbd_input') - img = self.xml.get_object('rename_image') - img.set_from_file(path_to_kbd_input_img) - self.notebook = self.xml.get_object('notebook') - # Name - model = Gtk.ListStore(str) - self.accounts_treeview.set_model(model) - # column - renderer = Gtk.CellRendererText() - col = Gtk.TreeViewColumn() - col.set_title(_('Name')) - col.pack_start(renderer, False) - col.add_attribute(renderer, 'text', 0) - self.accounts_treeview.insert_column(col, -1) - - self.current_account = None - # When we fill info, we don't want to handle the changed signals - self.ignore_events = False - self.need_relogin = False - self.resend_presence = False - - self.update_proxy_list() - self.xml.connect_signals(self) - self.init_accounts() - self.window.show_all() - - # Merge accounts - st = app.config.get('mergeaccounts') - checkbutton = self.xml.get_object('merge_checkbutton') - checkbutton.set_active(st) - # prevent roster redraws by connecting the signal after button state is - # set - checkbutton.connect('toggled', self.on_merge_checkbutton_toggled) - - self.avahi_available = True - try: - import avahi - except ImportError: - self.avahi_available = False - - self.xml.get_object('close_button').grab_focus() - - def on_accounts_window_key_press_event(self, widget, event): - if event.keyval == Gdk.KEY_Escape: - self.check_resend_relog() - self.window.destroy() - - def select_account(self, account): - model = self.accounts_treeview.get_model() - iter_ = model.get_iter_first() - while iter_: - acct = model[iter_][0] - if account == acct: - self.accounts_treeview.set_cursor(model.get_path(iter_)) - return - iter_ = model.iter_next(iter_) - - def init_accounts(self): - """ - Initialize listStore with existing accounts - """ - self.remove_button.set_sensitive(False) - self.rename_button.set_sensitive(False) - self.change_password_button.set_sensitive(False) - self.current_account = None - model = self.accounts_treeview.get_model() - model.clear() - list_ = app.config.get_per('accounts') - list_.sort() - for account in list_: - iter_ = model.append() - model.set(iter_, 0, account) - - self.selection = self.accounts_treeview.get_selection() - self.selection.select_iter(model.get_iter_first()) - - def resend(self, account): - if not account in app.connections: - return - show = app.SHOW_LIST[app.connections[account].connected] - status = app.connections[account].status - app.connections[account].change_status(show, status) - - def check_resend_relog(self): - if self.need_relogin and self.current_account == \ - app.ZEROCONF_ACC_NAME: - if app.ZEROCONF_ACC_NAME in app.connections: - app.connections[app.ZEROCONF_ACC_NAME].update_details() - return - - elif self.need_relogin and self.current_account and \ - app.connections[self.current_account].connected > 0: - def login(account, show_before, status_before): - """ - Login with previous status - """ - # first make sure connection is really closed, - # 0.5 may not be enough - app.connections[account].disconnect(True) - app.interface.roster.send_status(account, show_before, - status_before) - - def relog(account): - self.dialog.destroy() - show_before = app.SHOW_LIST[app.connections[account].\ - connected] - status_before = app.connections[account].status - app.interface.roster.send_status(account, 'offline', - _('Be right back.')) - GLib.timeout_add(500, login, account, show_before, - status_before) - - def on_yes(checked, account): - relog(account) - def on_no(account): - if self.resend_presence: - self.resend(account) - if self.current_account in app.connections: - self.dialog = dialogs.YesNoDialog(_('Relogin now?'), - _('If you want all the changes to apply instantly, ' - 'you must relogin.'), on_response_yes=(on_yes, - self.current_account), on_response_no=(on_no, - self.current_account)) - elif self.resend_presence: - self.resend(self.current_account) - - self.need_relogin = False - self.resend_presence = False - - def on_accounts_treeview_cursor_changed(self, widget): - """ - Activate modify buttons when a row is selected, update accounts info - """ - sel = self.accounts_treeview.get_selection() - if sel: - (model, iter_) = sel.get_selected() - if iter_: - account = model[iter_][0] - else: - account = None - else: - iter_ = account = None - if self.current_account and self.current_account == account: - # We're comming back to our current account, no need to update - # widgets - return - # Save config for previous account if needed cause focus_out event is - # called after the changed event - if self.current_account and self.window.get_focus(): - focused_widget = self.window.get_focus() - focused_widget_name = focused_widget.get_name() - if focused_widget_name in ('jid_entry1', 'resource_entry1', - 'custom_port_entry', 'cert_entry1'): - if focused_widget_name == 'jid_entry1': - func = self.on_jid_entry1_focus_out_event - elif focused_widget_name == 'resource_entry1': - func = self.on_resource_entry1_focus_out_event - elif focused_widget_name == 'custom_port_entry': - func = self.on_custom_port_entry_focus_out_event - elif focused_widget_name == 'cert_entry1': - func = self.on_cert_entry1_focus_out_event - if func(focused_widget, None): - # Error detected in entry, don't change account, - # re-put cursor on previous row - self.select_account(self.current_account) - return True - self.window.set_focus(widget) - - self.check_resend_relog() - - if account: - self.remove_button.set_sensitive(True) - self.rename_button.set_sensitive(True) - - if (account != app.ZEROCONF_ACC_NAME and - account in app.connections): - self.change_password_button.set_sensitive( - app.connections[account].register_supported) - - else: - self.remove_button.set_sensitive(False) - self.rename_button.set_sensitive(False) - self.change_password_button.set_sensitive(False) - if iter_: - self.current_account = account - if account == app.ZEROCONF_ACC_NAME: - self.remove_button.set_sensitive(False) - self.init_account() - self.update_proxy_list() - - def on_browse_for_client_cert_button_clicked(self, widget, data=None): - def on_ok(widget, path_to_clientcert_file): - self.dialog.destroy() - if not path_to_clientcert_file: - return - self.xml.get_object('cert_entry1').set_text(path_to_clientcert_file) - app.config.set_per('accounts', self.current_account, - 'client_cert', path_to_clientcert_file) - - def on_cancel(widget): - self.dialog.destroy() - - path_to_clientcert_file = self.xml.get_object('cert_entry1').get_text() - self.dialog = dialogs.ClientCertChooserDialog(path_to_clientcert_file, - on_ok, on_cancel) - - def update_proxy_list(self): - if self.current_account: - our_proxy = app.config.get_per('accounts', self.current_account, - 'proxy') - else: - our_proxy = '' - - if not our_proxy: - our_proxy = _('None') - proxy_combobox = self.xml.get_object('proxies_combobox1') - model = Gtk.ListStore(str) - proxy_combobox.set_model(model) - l = app.config.get_per('proxies') - l.insert(0, _('None')) - for i in range(len(l)): - model.append([l[i]]) - if our_proxy == l[i]: - proxy_combobox.set_active(i) - - def init_account(self): - if not self.current_account: - self.notebook.set_current_page(0) - return - if app.config.get_per('accounts', self.current_account, - 'is_zeroconf'): - self.ignore_events = True - self.init_zeroconf_account() - self.ignore_events = False - self.notebook.set_current_page(2) - return - self.ignore_events = True - self.init_normal_account() - self.ignore_events = False - self.notebook.set_current_page(1) - - def init_zeroconf_account(self): - active = app.config.get_per('accounts', app.ZEROCONF_ACC_NAME, - 'active') - self.xml.get_object('enable_zeroconf_checkbutton2').set_active(active) - if not app.HAVE_ZEROCONF: - self.xml.get_object('enable_zeroconf_checkbutton2').set_sensitive( - False) - self.xml.get_object('zeroconf_notebook').set_sensitive(active) - # General tab - st = app.config.get_per('accounts', app.ZEROCONF_ACC_NAME, - 'autoconnect') - self.xml.get_object('autoconnect_checkbutton2').set_active(st) - - list_no_log_for = app.config.get_per('accounts', - app.ZEROCONF_ACC_NAME, 'no_log_for').split() - if app.ZEROCONF_ACC_NAME in list_no_log_for: - self.xml.get_object('log_history_checkbutton2').set_active(0) - else: - self.xml.get_object('log_history_checkbutton2').set_active(1) - - st = app.config.get_per('accounts', app.ZEROCONF_ACC_NAME, - 'sync_with_global_status') - self.xml.get_object('sync_with_global_status_checkbutton2').set_active( - st) - - st = app.config.get_per('accounts', app.ZEROCONF_ACC_NAME, - 'use_custom_host') - self.xml.get_object('custom_port_checkbutton2').set_active(st) - self.xml.get_object('custom_port_entry2').set_sensitive(st) - - st = app.config.get_per('accounts', app.ZEROCONF_ACC_NAME, - 'custom_port') - if not st: - app.config.set_per('accounts', app.ZEROCONF_ACC_NAME, - 'custom_port', '5298') - st = '5298' - self.xml.get_object('custom_port_entry2').set_text(str(st)) - - # Personal tab - gpg_key_label = self.xml.get_object('gpg_key_label2') - if app.ZEROCONF_ACC_NAME in app.connections and \ - app.connections[app.ZEROCONF_ACC_NAME].gpg: - self.xml.get_object('gpg_choose_button2').set_sensitive(True) - self.init_account_gpg() - else: - gpg_key_label.set_text(_('OpenPGP is not usable on this computer')) - self.xml.get_object('gpg_choose_button2').set_sensitive(False) - - for opt in ('first_name', 'last_name', 'jabber_id', 'email'): - st = app.config.get_per('accounts', app.ZEROCONF_ACC_NAME, - 'zeroconf_' + opt) - self.xml.get_object(opt + '_entry2').set_text(st) - - def init_account_gpg(self): - account = self.current_account - keyid = app.config.get_per('accounts', account, 'keyid') - keyname = app.config.get_per('accounts', account, 'keyname') - use_gpg_agent = app.config.get('use_gpg_agent') - - if account == app.ZEROCONF_ACC_NAME: - widget_name_add = '2' - else: - widget_name_add = '1' - - gpg_key_label = self.xml.get_object('gpg_key_label' + widget_name_add) - gpg_name_label = self.xml.get_object('gpg_name_label' + widget_name_add) - use_gpg_agent_checkbutton = self.xml.get_object( - 'use_gpg_agent_checkbutton' + widget_name_add) - - if not keyid: - use_gpg_agent_checkbutton.set_sensitive(False) - gpg_key_label.set_text(_('No key selected')) - gpg_name_label.set_text('') - return - - gpg_key_label.set_text(keyid) - gpg_name_label.set_text(keyname) - use_gpg_agent_checkbutton.set_sensitive(True) - use_gpg_agent_checkbutton.set_active(use_gpg_agent) - - def draw_normal_jid(self): - account = self.current_account - self.ignore_events = True - active = app.config.get_per('accounts', account, 'active') - self.xml.get_object('enable_checkbutton1').set_active(active) - self.xml.get_object('normal_notebook1').set_sensitive(active) - if app.config.get_per('accounts', account, 'anonymous_auth'): - self.xml.get_object('anonymous_checkbutton1').set_active(True) - self.xml.get_object('jid_label1').set_text(_('Server:')) - save_password = self.xml.get_object('save_password_checkbutton1') - save_password.set_active(False) - save_password.set_sensitive(False) - password_entry = self.xml.get_object('password_entry1') - password_entry.set_text('') - password_entry.set_sensitive(False) - jid = app.config.get_per('accounts', account, 'hostname') - else: - self.xml.get_object('anonymous_checkbutton1').set_active(False) - self.xml.get_object('jid_label1').set_text(_('JID:')) - savepass = app.config.get_per('accounts', account, 'savepass') - save_password = self.xml.get_object('save_password_checkbutton1') - save_password.set_sensitive(True) - save_password.set_active(savepass) - password_entry = self.xml.get_object('password_entry1') - if savepass: - passstr = passwords.get_password(account) or '' - password_entry.set_sensitive(True) - else: - passstr = '' - password_entry.set_sensitive(False) - password_entry.set_text(passstr) - - jid = app.config.get_per('accounts', account, 'name') \ - + '@' + app.config.get_per('accounts', account, 'hostname') - self.xml.get_object('jid_entry1').set_text(jid) - self.ignore_events = False - - def init_normal_account(self): - account = self.current_account - # Account tab - self.draw_normal_jid() - self.xml.get_object('resource_entry1').set_text(app.config.get_per( - 'accounts', account, 'resource')) - - client_cert = app.config.get_per('accounts', account, 'client_cert') - self.xml.get_object('cert_entry1').set_text(client_cert) - client_cert_encrypted = app.config.get_per('accounts', account, - 'client_cert_encrypted') - self.xml.get_object('client_cert_encrypted_checkbutton1').\ - set_active(client_cert_encrypted) - - self.xml.get_object('adjust_priority_with_status_checkbutton1').\ - set_active(app.config.get_per('accounts', account, - 'adjust_priority_with_status')) - spinbutton = self.xml.get_object('priority_spinbutton1') - if app.config.get('enable_negative_priority'): - spinbutton.set_range(-128, 127) - else: - spinbutton.set_range(0, 127) - spinbutton.set_value(app.config.get_per('accounts', account, - 'priority')) - - # Connection tab - use_env_http_proxy = app.config.get_per('accounts', account, - 'use_env_http_proxy') - self.xml.get_object('use_env_http_proxy_checkbutton1').set_active( - use_env_http_proxy) - self.xml.get_object('proxy_hbox1').set_sensitive(not use_env_http_proxy) - - warn_when_insecure_ssl = app.config.get_per('accounts', account, - 'warn_when_insecure_ssl_connection') - self.xml.get_object('warn_when_insecure_connection_checkbutton1').\ - set_active(warn_when_insecure_ssl) - - self.xml.get_object('send_keepalive_checkbutton1').set_active( - app.config.get_per('accounts', account, 'keep_alives_enabled')) - - use_custom_host = app.config.get_per('accounts', account, - 'use_custom_host') - self.xml.get_object('custom_host_port_checkbutton1').set_active( - use_custom_host) - custom_host = app.config.get_per('accounts', account, 'custom_host') - if not custom_host: - custom_host = app.config.get_per('accounts', account, 'hostname') - app.config.set_per('accounts', account, 'custom_host', - custom_host) - self.xml.get_object('custom_host_entry1').set_text(custom_host) - custom_port = app.config.get_per('accounts', account, 'custom_port') - if not custom_port: - custom_port = 5222 - app.config.set_per('accounts', account, 'custom_port', - custom_port) - self.xml.get_object('custom_port_entry1').set_text(str(custom_port)) - - # Personal tab - gpg_key_label = self.xml.get_object('gpg_key_label1') - if app.HAVE_GPG: - self.xml.get_object('gpg_choose_button1').set_sensitive(True) - self.init_account_gpg() - else: - gpg_key_label.set_text(_('OpenPGP is not usable on this computer')) - self.xml.get_object('gpg_choose_button1').set_sensitive(False) - - # General tab - self.xml.get_object('autoconnect_checkbutton1').set_active( - app.config.get_per('accounts', account, 'autoconnect')) - self.xml.get_object('autoreconnect_checkbutton1').set_active(app. - config.get_per('accounts', account, 'autoreconnect')) - - list_no_log_for = app.config.get_per('accounts', account, - 'no_log_for').split() - if account in list_no_log_for: - self.xml.get_object('log_history_checkbutton1').set_active(False) - else: - self.xml.get_object('log_history_checkbutton1').set_active(True) - - self.xml.get_object('sync_logs_with_server_checkbutton1').set_active( - app.config.get_per('accounts', account, 'sync_logs_with_server')) - self.xml.get_object('sync_with_global_status_checkbutton1').set_active( - app.config.get_per('accounts', account, - 'sync_with_global_status')) - self.xml.get_object('carbons_checkbutton1').set_active( - app.config.get_per('accounts', account, 'enable_message_carbons')) - self.xml.get_object('use_ft_proxies_checkbutton1').set_active( - app.config.get_per('accounts', account, 'use_ft_proxies')) - - def on_add_button_clicked(self, widget): - """ - When add button is clicked: open an account information window - """ - if 'account_creation_wizard' in app.interface.instances: - app.interface.instances['account_creation_wizard'].window.present() - else: - app.interface.instances['account_creation_wizard'] = \ - AccountCreationWizardWindow() - - def on_remove_button_clicked(self, widget): - """ - When delete button is clicked: Remove an account from the listStore and - from the config file - """ - if not self.current_account: - return - account = self.current_account - if len(app.events.get_events(account)): - dialogs.ErrorDialog(_('Unread events'), - _('Read all pending events before removing this account.'), - transient_for=self.window) - return - - if app.config.get_per('accounts', account, 'is_zeroconf'): - # Should never happen as button is insensitive - return - - win_opened = False - if app.interface.msg_win_mgr.get_controls(acct=account): - win_opened = True - elif account in app.interface.instances: - for key in app.interface.instances[account]: - if app.interface.instances[account][key] and key != \ - 'remove_account': - win_opened = True - break - # Detect if we have opened windows for this account - def remove(account): - if account in app.interface.instances and \ - 'remove_account' in app.interface.instances[account]: - app.interface.instances[account]['remove_account'].window.\ - present() - else: - if not account in app.interface.instances: - app.interface.instances[account] = {} - app.interface.instances[account]['remove_account'] = \ - RemoveAccountWindow(account) - if win_opened: - dialogs.ConfirmationDialog( - _('You have opened chat in account %s') % account, - _('All chat and groupchat windows will be closed. Do you want to ' - 'continue?'), - on_response_ok = (remove, account)) - else: - remove(account) - - def on_rename_button_clicked(self, widget): - if not self.current_account: - return - active = app.config.get_per('accounts', self.current_account, - 'active') and self.current_account in app.connections - if active and app.connections[self.current_account].connected != 0: - dialogs.ErrorDialog( - _('You are currently connected to the server'), - _('To change the account name, you must be disconnected.'), - transient_for=self.window) - return - if len(app.events.get_events(self.current_account)): - dialogs.ErrorDialog(_('Unread events'), - _('To change the account name, you must read all pending ' - 'events.'), transient_for=self.window) - return - # Get the new name - def on_renamed(new_name, old_name): - if new_name in app.connections: - dialogs.ErrorDialog(_('Account Name Already Used'), - _('This name is already used by another of your accounts. ' - 'Please choose another name.'), transient_for=self.window) - return - if (new_name == ''): - dialogs.ErrorDialog(_('Invalid account name'), - _('Account name cannot be empty.'), - transient_for=self.window) - return - if new_name.find(' ') != -1: - dialogs.ErrorDialog(_('Invalid account name'), - _('Account name cannot contain spaces.'), - transient_for=self.window) - return - if active: - # update variables - app.interface.instances[new_name] = app.interface.instances[ - old_name] - app.interface.minimized_controls[new_name] = \ - app.interface.minimized_controls[old_name] - app.nicks[new_name] = app.nicks[old_name] - app.block_signed_in_notifications[new_name] = \ - app.block_signed_in_notifications[old_name] - app.groups[new_name] = app.groups[old_name] - app.gc_connected[new_name] = app.gc_connected[old_name] - app.automatic_rooms[new_name] = app.automatic_rooms[ - old_name] - app.newly_added[new_name] = app.newly_added[old_name] - app.to_be_removed[new_name] = app.to_be_removed[old_name] - app.sleeper_state[new_name] = app.sleeper_state[old_name] - app.encrypted_chats[new_name] = app.encrypted_chats[ - old_name] - app.last_message_time[new_name] = \ - app.last_message_time[old_name] - app.status_before_autoaway[new_name] = \ - app.status_before_autoaway[old_name] - app.transport_avatar[new_name] = app.transport_avatar[old_name] - app.gajim_optional_features[new_name] = \ - app.gajim_optional_features[old_name] - app.caps_hash[new_name] = app.caps_hash[old_name] - - app.contacts.change_account_name(old_name, new_name) - app.events.change_account_name(old_name, new_name) - - # change account variable for chat / gc controls - app.interface.msg_win_mgr.change_account_name(old_name, new_name) - # upgrade account variable in opened windows - for kind in ('infos', 'disco', 'gc_config', 'search', - 'online_dialog', 'sub_request'): - for j in app.interface.instances[new_name][kind]: - app.interface.instances[new_name][kind][j].account = \ - new_name - - # ServiceCache object keep old property account - if hasattr(app.connections[old_name], 'services_cache'): - app.connections[old_name].services_cache.account = \ - new_name - del app.interface.instances[old_name] - del app.interface.minimized_controls[old_name] - del app.nicks[old_name] - del app.block_signed_in_notifications[old_name] - del app.groups[old_name] - del app.gc_connected[old_name] - del app.automatic_rooms[old_name] - del app.newly_added[old_name] - del app.to_be_removed[old_name] - del app.sleeper_state[old_name] - del app.encrypted_chats[old_name] - del app.last_message_time[old_name] - del app.status_before_autoaway[old_name] - del app.transport_avatar[old_name] - del app.gajim_optional_features[old_name] - del app.caps_hash[old_name] - app.connections[old_name].name = new_name - app.connections[old_name].pep_change_account_name(new_name) - app.connections[old_name].caps_change_account_name(new_name) - app.connections[new_name] = app.connections[old_name] - del app.connections[old_name] - app.config.add_per('accounts', new_name) - old_config = app.config.get_per('accounts', old_name) - for opt in old_config: - app.config.set_per('accounts', new_name, opt, old_config[opt]) - app.config.del_per('accounts', old_name) - if self.current_account == old_name: - self.current_account = new_name - if old_name == app.ZEROCONF_ACC_NAME: - app.ZEROCONF_ACC_NAME = new_name - # refresh roster - app.interface.roster.setup_and_draw_roster() - self.init_accounts() - self.select_account(new_name) - app.app.remove_account_actions(old_name) - app.app.add_account_actions(new_name) - gui_menu_builder.build_accounts_menu() - - title = _('Rename Account') - message = _('Enter a new name for account %s') % self.current_account - old_text = self.current_account - dialogs.InputDialog(title, message, old_text, is_modal=False, - ok_handler=(on_renamed, self.current_account), - transient_for=self.window) - - def option_changed(self, option, value): - return app.config.get_per('accounts', self.current_account, option) \ - != value - - def on_jid_entry1_focus_out_event(self, widget, event): - if self.ignore_events: - return - jid = widget.get_text() - # check if jid is conform to RFC and stringprep it - try: - jid = helpers.parse_jid(jid) - except helpers.InvalidFormat as s: - if not widget.is_focus(): - pritext = _('Invalid JID') - dialogs.ErrorDialog(pritext, str(s), transient_for=self.window) - GLib.idle_add(lambda: widget.grab_focus()) - return True - - jid_splited = jid.split('@', 1) - if len(jid_splited) != 2 and not app.config.get_per('accounts', - self.current_account, 'anonymous_auth'): - if not widget.is_focus(): - pritext = _('Invalid JID') - sectext = \ - _('A JID must be in the form "user@servername".') - dialogs.ErrorDialog(pritext, sectext, transient_for=self.window) - GLib.idle_add(lambda: widget.grab_focus()) - return True - - - if app.config.get_per('accounts', self.current_account, - 'anonymous_auth'): - app.config.set_per('accounts', self.current_account, 'hostname', - jid_splited[0]) - if self.option_changed('hostname', jid_splited[0]): - self.need_relogin = True - else: - if self.option_changed('name', jid_splited[0]) or \ - self.option_changed('hostname', jid_splited[1]): - self.need_relogin = True - - app.config.set_per('accounts', self.current_account, 'name', - jid_splited[0]) - app.config.set_per('accounts', self.current_account, 'hostname', - jid_splited[1]) - - def on_cert_entry1_focus_out_event(self, widget, event): - if self.ignore_events: - return - client_cert = widget.get_text() - if self.option_changed('client_cert', client_cert): - self.need_relogin = True - app.config.set_per('accounts', self.current_account, 'client_cert', - client_cert) - - def on_anonymous_checkbutton1_toggled(self, widget): - if self.ignore_events: - return - active = widget.get_active() - app.config.set_per('accounts', self.current_account, 'anonymous_auth', - active) - self.draw_normal_jid() - - def on_password_entry1_changed(self, widget): - if self.ignore_events: - return - passwords.save_password(self.current_account, widget.get_text()) - - def on_save_password_checkbutton1_toggled(self, widget): - if self.ignore_events: - return - active = widget.get_active() - password_entry = self.xml.get_object('password_entry1') - password_entry.set_sensitive(active) - app.config.set_per('accounts', self.current_account, 'savepass', - active) - if active: - password = password_entry.get_text() - passwords.save_password(self.current_account, password) - else: - passwords.save_password(self.current_account, '') - - def on_resource_entry1_focus_out_event(self, widget, event): - if self.ignore_events: - return - resource = self.xml.get_object('resource_entry1').get_text() - try: - resource = helpers.parse_resource(resource) - except helpers.InvalidFormat as s: - if not widget.is_focus(): - pritext = _('Invalid JID') - dialogs.ErrorDialog(pritext, str(s), transient_for=self.window) - GLib.idle_add(lambda: widget.grab_focus()) - return True - - if self.option_changed('resource', resource): - self.need_relogin = True - - app.config.set_per('accounts', self.current_account, 'resource', - resource) - - def on_adjust_priority_with_status_checkbutton1_toggled(self, widget): - self.xml.get_object('priority_spinbutton1').set_sensitive( - not widget.get_active()) - self.on_checkbutton_toggled(widget, 'adjust_priority_with_status', - account = self.current_account) - - def on_priority_spinbutton1_value_changed(self, widget): - prio = widget.get_value_as_int() - - if self.option_changed('priority', prio): - self.resend_presence = True - - app.config.set_per('accounts', self.current_account, 'priority', prio) - - def on_synchronise_contacts_button1_clicked(self, widget): - try: - dialogs.SynchroniseSelectAccountDialog(self.current_account) - except GajimGeneralException: - # If we showed ErrorDialog, there will not be dialog instance - return - - def on_change_password_button1_clicked(self, widget): - def on_changed(new_password): - if new_password is not None: - app.connections[self.current_account].change_password( - new_password) - if self.xml.get_object('save_password_checkbutton1').\ - get_active(): - self.xml.get_object('password_entry1').set_text( - new_password) - - try: - dialogs.ChangePasswordDialog(self.current_account, on_changed, - self.window) - except GajimGeneralException: - # if we showed ErrorDialog, there will not be dialog instance - return - - def on_client_cert_encrypted_checkbutton1_toggled(self, widget): - if self.ignore_events: - return - self.on_checkbutton_toggled(widget, 'client_cert_encrypted', - account=self.current_account) - - def on_autoconnect_checkbutton_toggled(self, widget): - if self.ignore_events: - return - self.on_checkbutton_toggled(widget, 'autoconnect', - account=self.current_account) - - def on_autoreconnect_checkbutton_toggled(self, widget): - if self.ignore_events: - return - self.on_checkbutton_toggled(widget, 'autoreconnect', - account=self.current_account) - - def on_log_history_checkbutton_toggled(self, widget): - if self.ignore_events: - return - list_no_log_for = app.config.get_per('accounts', self.current_account, - 'no_log_for').split() - if self.current_account in list_no_log_for: - list_no_log_for.remove(self.current_account) - - if not widget.get_active(): - list_no_log_for.append(self.current_account) - app.config.set_per('accounts', self.current_account, 'no_log_for', - ' '.join(list_no_log_for)) - - def on_sync_logs_with_server_checkbutton_toggled(self, widget): - if self.ignore_events: - return - self.on_checkbutton_toggled(widget, 'sync_logs_with_server', - account=self.current_account) - - def on_sync_with_global_status_checkbutton_toggled(self, widget): - if self.ignore_events: - return - self.on_checkbutton_toggled(widget, 'sync_with_global_status', - account=self.current_account) - app.interface.roster.update_status_combobox() - - def on_carbons_checkbutton_toggled(self, widget): - if self.ignore_events: - return - self.on_checkbutton_toggled(widget, 'enable_message_carbons', - account=self.current_account) - - def on_use_ft_proxies_checkbutton1_toggled(self, widget): - if self.ignore_events: - return - self.on_checkbutton_toggled(widget, 'use_ft_proxies', - account=self.current_account) - - def on_use_env_http_proxy_checkbutton1_toggled(self, widget): - if self.ignore_events: - return - self.on_checkbutton_toggled(widget, 'use_env_http_proxy', - account=self.current_account) - hbox = self.xml.get_object('proxy_hbox1') - hbox.set_sensitive(not widget.get_active()) - - def on_proxies_combobox1_changed(self, widget): - active = widget.get_active() - proxy = widget.get_model()[active][0] - if proxy == _('None'): - proxy = '' - - if self.option_changed('proxy', proxy): - self.need_relogin = True - - app.config.set_per('accounts', self.current_account, 'proxy', proxy) - - def on_manage_proxies_button1_clicked(self, widget): - if 'manage_proxies' in app.interface.instances: - app.interface.instances['manage_proxies'].window.present() - else: - app.interface.instances['manage_proxies'] = ManageProxiesWindow( - self.window) - - def on_warn_when_insecure_connection_checkbutton1_toggled(self, widget): - if self.ignore_events: - return - - self.on_checkbutton_toggled(widget, 'warn_when_insecure_ssl_connection', - account=self.current_account) - - def on_send_keepalive_checkbutton1_toggled(self, widget): - if self.ignore_events: - return - self.on_checkbutton_toggled(widget, 'keep_alives_enabled', - account=self.current_account) - app.config.set_per('accounts', self.current_account, - 'ping_alives_enabled', widget.get_active()) - - def on_custom_host_port_checkbutton1_toggled(self, widget): - if self.option_changed('use_custom_host', widget.get_active()): - self.need_relogin = True - - self.on_checkbutton_toggled(widget, 'use_custom_host', - account=self.current_account) - active = widget.get_active() - self.xml.get_object('custom_host_port_hbox1').set_sensitive(active) - - def on_custom_host_entry1_changed(self, widget): - if self.ignore_events: - return - host = widget.get_text() - if self.option_changed('custom_host', host): - self.need_relogin = True - app.config.set_per('accounts', self.current_account, 'custom_host', - host) - - def on_custom_port_entry_focus_out_event(self, widget, event): - if self.ignore_events: - return - custom_port = widget.get_text() - try: - custom_port = int(custom_port) - except Exception: - if not widget.is_focus(): - dialogs.ErrorDialog(_('Invalid entry'), - _('Custom port must be a port number.'), - transient_for=self.window) - GLib.idle_add(lambda: widget.grab_focus()) - return True - if self.option_changed('custom_port', custom_port): - self.need_relogin = True - app.config.set_per('accounts', self.current_account, 'custom_port', - custom_port) - - def on_gpg_choose_button_clicked(self, widget, data = None): - if self.current_account in app.connections and \ - app.connections[self.current_account].gpg: - secret_keys = app.connections[self.current_account].\ - ask_gpg_secrete_keys() - - # self.current_account is None and/or app.connections is {} - else: - if app.HAVE_GPG: - secret_keys = gpg.GnuPG().get_secret_keys() - else: - secret_keys = [] - if not secret_keys: - dialogs.ErrorDialog(_('Failed to get secret keys'), - _('There is no OpenPGP secret key available.'), - transient_for=self.window) - secret_keys[_('None')] = _('None') - - def on_key_selected(keyID): - if keyID is None: - return - if self.current_account == app.ZEROCONF_ACC_NAME: - wiget_name_ext = '2' - else: - wiget_name_ext = '1' - gpg_key_label = self.xml.get_object('gpg_key_label' + \ - wiget_name_ext) - gpg_name_label = self.xml.get_object('gpg_name_label' + \ - wiget_name_ext) - use_gpg_agent_checkbutton = self.xml.get_object( - 'use_gpg_agent_checkbutton' + wiget_name_ext) - if keyID[0] == _('None'): - gpg_key_label.set_text(_('No key selected')) - gpg_name_label.set_text('') - use_gpg_agent_checkbutton.set_sensitive(False) - if self.option_changed('keyid', ''): - self.need_relogin = True - app.config.set_per('accounts', self.current_account, - 'keyname', '') - app.config.set_per('accounts', self.current_account, 'keyid', - '') - else: - gpg_key_label.set_text(keyID[0]) - gpg_name_label.set_text(keyID[1]) - use_gpg_agent_checkbutton.set_sensitive(True) - if self.option_changed('keyid', keyID[0]): - self.need_relogin = True - app.config.set_per('accounts', self.current_account, - 'keyname', keyID[1]) - app.config.set_per('accounts', self.current_account, 'keyid', - keyID[0]) - - dialogs.ChooseGPGKeyDialog(_('OpenPGP Key Selection'), - _('Choose your OpenPGP key'), secret_keys, on_key_selected, - transient_for=self.window) - - def on_use_gpg_agent_checkbutton_toggled(self, widget): - self.on_checkbutton_toggled(widget, 'use_gpg_agent') - - def on_edit_details_button1_clicked(self, widget): - if self.current_account not in app.interface.instances: - dlg = dialogs.ErrorDialog(_('No such account available'), - _('You must create your account before editing your personal ' - 'information.'), transient_for=self.window) - return - - # show error dialog if account is newly created (not in app.connections) - if self.current_account not in app.connections or \ - app.connections[self.current_account].connected < 2: - dialogs.ErrorDialog(_('You are not connected to the server'), - _('Without a connection, you can not edit your personal ' - 'information.'), transient_for=self.window) - return - - if not app.connections[self.current_account].vcard_supported: - dialogs.ErrorDialog(_("Your server does not have vCard support"), - _("Your server can't save your personal information."), - transient_for=self.window) - return - - jid = app.get_jid_from_account(self.current_account) - if 'profile' not in app.interface.instances[self.current_account]: - app.interface.instances[self.current_account]['profile'] = \ - profile_window.ProfileWindow(self.current_account, transient_for=self.window) - app.connections[self.current_account].request_vcard(jid) - - def on_checkbutton_toggled(self, widget, config_name, - change_sensitivity_widgets = None, account = None): - if account: - app.config.set_per('accounts', account, config_name, - widget.get_active()) - else: - app.config.set(config_name, widget.get_active()) - if change_sensitivity_widgets: - for w in change_sensitivity_widgets: - w.set_sensitive(widget.get_active()) - - def on_merge_checkbutton_toggled(self, widget): - self.on_checkbutton_toggled(widget, 'mergeaccounts') - if len(app.connections) >= 2: # Do not merge accounts if only one active - app.interface.roster.regroup = app.config.get('mergeaccounts') - else: - app.interface.roster.regroup = False - app.interface.roster.setup_and_draw_roster() - - def _disable_account(self, account): - app.interface.roster.close_all(account) - if account == app.ZEROCONF_ACC_NAME: - app.connections[account].disable_account() - app.connections[account].cleanup() - del app.connections[account] - del app.interface.instances[account] - del app.interface.minimized_controls[account] - del app.nicks[account] - del app.block_signed_in_notifications[account] - del app.groups[account] - app.contacts.remove_account(account) - del app.gc_connected[account] - del app.automatic_rooms[account] - del app.to_be_removed[account] - del app.newly_added[account] - del app.sleeper_state[account] - del app.encrypted_chats[account] - del app.last_message_time[account] - del app.status_before_autoaway[account] - del app.transport_avatar[account] - del app.gajim_optional_features[account] - del app.caps_hash[account] - if len(app.connections) >= 2: - # Do not merge accounts if only one exists - app.interface.roster.regroup = app.config.get('mergeaccounts') - else: - app.interface.roster.regroup = False - app.interface.roster.setup_and_draw_roster() - app.app.remove_account_actions(account) - gui_menu_builder.build_accounts_menu() - - def _enable_account(self, account): - if account == app.ZEROCONF_ACC_NAME: - app.connections[account] = connection_zeroconf.ConnectionZeroconf( - account) - if app.connections[account].gpg: - self.xml.get_object('gpg_choose_button2').set_sensitive(True) - else: - app.connections[account] = connection.Connection(account) - if app.connections[account].gpg: - self.xml.get_object('gpg_choose_button1').set_sensitive(True) - self.init_account_gpg() - # update variables - app.interface.instances[account] = {'infos': {}, - 'disco': {}, 'gc_config': {}, 'search': {}, 'online_dialog': {}, - 'sub_request': {}} - app.interface.minimized_controls[account] = {} - app.connections[account].connected = 0 - app.groups[account] = {} - app.contacts.add_account(account) - app.gc_connected[account] = {} - app.automatic_rooms[account] = {} - app.newly_added[account] = [] - app.to_be_removed[account] = [] - if account == app.ZEROCONF_ACC_NAME: - app.nicks[account] = app.ZEROCONF_ACC_NAME - else: - app.nicks[account] = app.config.get_per('accounts', account, - 'name') - app.block_signed_in_notifications[account] = True - app.sleeper_state[account] = 'off' - app.encrypted_chats[account] = [] - app.last_message_time[account] = {} - app.status_before_autoaway[account] = '' - app.transport_avatar[account] = {} - app.gajim_optional_features[account] = [] - app.caps_hash[account] = '' - helpers.update_optional_features(account) - # refresh roster - if len(app.connections) >= 2: - # Do not merge accounts if only one exists - app.interface.roster.regroup = app.config.get('mergeaccounts') - else: - app.interface.roster.regroup = False - app.interface.roster.setup_and_draw_roster() - app.app.add_account_actions(account) - gui_menu_builder.build_accounts_menu() - - def on_enable_zeroconf_checkbutton2_toggled(self, widget): - # don't do anything if there is an account with the local name but is a - # normal account - if self.ignore_events: - return - if self.current_account in app.connections and \ - app.connections[self.current_account].connected > 0: - self.ignore_events = True - self.xml.get_object('enable_zeroconf_checkbutton2').set_active(True) - self.ignore_events = False - dialogs.ErrorDialog( - _('You are currently connected to the server'), - _('To disable the account, you must be disconnected.'), - transient_for=self.window) - return - if app.ZEROCONF_ACC_NAME in app.connections and not \ - app.connections[app.ZEROCONF_ACC_NAME].is_zeroconf: - app.nec.push_incoming_event(InformationEvent(None, - conn=app.connections[app.ZEROCONF_ACC_NAME], - level='error', pri_txt=_('Account Local already exists.'), - sec_txt=_('Please rename or remove it before enabling ' - 'link-local messaging.'))) - return - - if app.config.get_per('accounts', app.ZEROCONF_ACC_NAME, 'active') \ - and not widget.get_active(): - self.xml.get_object('zeroconf_notebook').set_sensitive(False) - # disable - self._disable_account(app.ZEROCONF_ACC_NAME) - - elif not app.config.get_per('accounts', app.ZEROCONF_ACC_NAME, - 'active') and widget.get_active(): - self.xml.get_object('zeroconf_notebook').set_sensitive(True) - # enable (will create new account if not present) - self._enable_account(app.ZEROCONF_ACC_NAME) - - self.on_checkbutton_toggled(widget, 'active', - account=app.ZEROCONF_ACC_NAME) - - def on_enable_checkbutton1_toggled(self, widget): - if self.ignore_events: - return - if self.current_account in app.connections and \ - app.connections[self.current_account].connected > 0: - # connecting or connected - self.ignore_events = True - self.xml.get_object('enable_checkbutton1').set_active(True) - self.ignore_events = False - dialogs.ErrorDialog( - _('You are currently connected to the server'), - _('To disable the account, you must be disconnected.'), - transient_for=self.window) - return - # add/remove account in roster and all variables - if widget.get_active(): - # enable - self._enable_account(self.current_account) - else: - # disable - self._disable_account(self.current_account) - self.on_checkbutton_toggled(widget, 'active', - account=self.current_account, change_sensitivity_widgets=[ - self.xml.get_object('normal_notebook1')]) - - def on_custom_port_checkbutton2_toggled(self, widget): - self.xml.get_object('custom_port_entry2').set_sensitive( - widget.get_active()) - self.on_checkbutton_toggled(widget, 'use_custom_host', - account=self.current_account) - if not widget.get_active(): - self.xml.get_object('custom_port_entry2').set_text('5298') - - def on_first_name_entry2_changed(self, widget): - if self.ignore_events: - return - name = widget.get_text() - if self.option_changed('zeroconf_first_name', name): - self.need_relogin = True - app.config.set_per('accounts', self.current_account, - 'zeroconf_first_name', name) - - def on_last_name_entry2_changed(self, widget): - if self.ignore_events: - return - name = widget.get_text() - if self.option_changed('zeroconf_last_name', name): - self.need_relogin = True - app.config.set_per('accounts', self.current_account, - 'zeroconf_last_name', name) - - def on_jabber_id_entry2_changed(self, widget): - if self.ignore_events: - return - id_ = widget.get_text() - if self.option_changed('zeroconf_jabber_id', id_): - self.need_relogin = True - app.config.set_per('accounts', self.current_account, - 'zeroconf_jabber_id', id_) - - def on_email_entry2_changed(self, widget): - if self.ignore_events: - return - email = widget.get_text() - if self.option_changed('zeroconf_email', email): - self.need_relogin = True - app.config.set_per('accounts', self.current_account, - 'zeroconf_email', email) - class FakeDataForm(Gtk.Table, object): """ Class for forms that are in XML format value1 infos in a From 2c9d5d838bd5a451835124712fb67bc742cd4254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sun, 17 Sep 2017 10:43:10 +0200 Subject: [PATCH 19/30] Fix Resolver Test --- gajim/common/resolver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/common/resolver.py b/gajim/common/resolver.py index e235c38c6..6723652d5 100644 --- a/gajim/common/resolver.py +++ b/gajim/common/resolver.py @@ -23,7 +23,7 @@ import functools log = logging.getLogger('gajim.c.resolver') if __name__ == '__main__': - sys.path.append('..') + sys.path.append('../..') from gajim.common import i18n from gajim.common import configpaths configpaths.gajimpaths.init(None) From b93098a3792253b277562bf7bceaa8c8ced0a149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sun, 17 Sep 2017 14:02:01 +0200 Subject: [PATCH 20/30] Dont use Resolver when using a proxy This leaks the DNS request --- gajim/common/connection.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gajim/common/connection.py b/gajim/common/connection.py index 9a06f173f..835cf1b0a 100644 --- a/gajim/common/connection.py +++ b/gajim/common/connection.py @@ -1083,7 +1083,8 @@ class Connection(CommonConnection, ConnectionHandlers): self._hosts = [ {'host': h, 'port': p, 'ssl_port': ssl_p, 'prio': 10, 'weight': 10} ] self._hostname = hostname - if use_srv: + + if use_srv and self._proxy is None: # add request for srv query to the resolve, on result '_on_resolve' # will be called app.resolver.resolve('_xmpp-client._tcp.' + helpers.idn_to_ascii( @@ -1823,9 +1824,10 @@ class Connection(CommonConnection, ConnectionHandlers): self.sm.resuming = False # back to previous state # Discover Stun server(s) - hostname = app.config.get_per('accounts', self.name, 'hostname') - app.resolver.resolve('_stun._udp.' + helpers.idn_to_ascii(hostname), - self._on_stun_resolved) + if self._proxy is None: + hostname = app.config.get_per('accounts', self.name, 'hostname') + app.resolver.resolve('_stun._udp.' + helpers.idn_to_ascii(hostname), + self._on_stun_resolved) def _on_stun_resolved(self, host, result_array): if len(result_array) != 0: From 152be4473b94af474e80b15f4182c7eef4fe4c23 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 19 Sep 2017 12:45:02 +0200 Subject: [PATCH 21/30] Fix some strings for a better translation --- gajim/command_system/implementation/standard.py | 3 ++- gajim/common/check_paths.py | 2 +- gajim/common/config.py | 2 +- gajim/common/connection.py | 5 +++-- gajim/common/jingle_rtp.py | 12 +++++++----- gajim/common/passwords.py | 2 +- gajim/config.py | 7 ++++--- gajim/data/gui/accounts_window.ui | 2 +- gajim/dialogs.py | 12 +++++++----- gajim/gui_interface.py | 13 +++++++------ gajim/history_sync.py | 3 ++- gajim/roster_window.py | 8 ++++---- test/runtests.py | 2 +- 13 files changed, 41 insertions(+), 32 deletions(-) diff --git a/gajim/command_system/implementation/standard.py b/gajim/command_system/implementation/standard.py index aeec4e7d5..87b068e73 100644 --- a/gajim/command_system/implementation/standard.py +++ b/gajim/command_system/implementation/standard.py @@ -298,7 +298,8 @@ class StandardGroupChatCommands(CommandContainer): @doc(_("Invite a user to a room for a reason")) def invite(self, jid, reason): self.connection.send_invite(self.room_jid, jid, reason) - return _("Invited %s to %s") % (jid, self.room_jid) + return _("Invited %(jid)s to %(room_jid)s") % {'jid': jid, + 'room_jid': self.room_jid} @command(raw=True, empty=True) @doc(_("Join a group chat given by a jid, optionally using given nickname")) diff --git a/gajim/common/check_paths.py b/gajim/common/check_paths.py index d9f8f3311..cdd547003 100644 --- a/gajim/common/check_paths.py +++ b/gajim/common/check_paths.py @@ -250,7 +250,7 @@ def check_and_possibly_move_config(): continue if not os.path.exists(src): continue - print(_('moving %s to %s') % (src, dst)) + print(_('moving %(src)s to %(dst)s') % {'src': src, 'dst': dst}) shutil.move(src, dst) app.logger.init_vars() app.logger.attach_cache_database() diff --git a/gajim/common/config.py b/gajim/common/config.py index f8ad19b2a..bb6fd060b 100644 --- a/gajim/common/config.py +++ b/gajim/common/config.py @@ -194,7 +194,7 @@ class Config: 'key_up_lines': [opt_int, 25, _('How many lines to store for Ctrl+KeyUP.')], 'version': [ opt_str, defs.version ], # which version created the config 'search_engine': [opt_str, 'https://www.google.com/search?&q=%s&sourceid=gajim'], - 'dictionary_url': [opt_str, 'WIKTIONARY', _("Either custom url with %s in it where %s is the word/phrase or 'WIKTIONARY' which means use wiktionary.")], + 'dictionary_url': [opt_str, 'WIKTIONARY', _("Either custom url with %%s in it where %%s is the word/phrase or 'WIKTIONARY' which means use wiktionary.")], 'always_english_wikipedia': [opt_bool, False], 'always_english_wiktionary': [opt_bool, True], 'remote_control': [opt_bool, False, _('If checked, Gajim can be controlled remotely using gajim-remote.'), True], diff --git a/gajim/common/connection.py b/gajim/common/connection.py index 835cf1b0a..923aff9ce 100644 --- a/gajim/common/connection.py +++ b/gajim/common/connection.py @@ -2078,8 +2078,9 @@ class Connection(CommonConnection, ConnectionHandlers): return if type_ == 'message': if len(contacts) == 1: - msg = _('Sent contact: "%s" (%s)') % (contacts[0].get_full_jid(), - contacts[0].get_shown_name()) + msg = _('Sent contact: "%(jid)s" (%(name)s)') % { + 'jid': contacts[0].get_full_jid(), + 'name': contacts[0].get_shown_name()} else: msg = _('Sent contacts:') for contact in contacts: diff --git a/gajim/common/jingle_rtp.py b/gajim/common/jingle_rtp.py index b6ead263e..08bcf0353 100644 --- a/gajim/common/jingle_rtp.py +++ b/gajim/common/jingle_rtp.py @@ -121,8 +121,10 @@ class JingleRTPContent(JingleContent): InformationEvent( None, conn=self.session.connection, level='error', pri_txt=_('%s configuration error') % text.capitalize(), - sec_txt=_('Couldn’t setup %s. Check your configuration.\n\n' - 'Pipeline was:\n%s\n\nError was:\n%s') % (text, pipeline, str(e)))) + sec_txt=_('Couldn’t setup %(text)s. Check your ' + 'configuration.\n\nPipeline was:\n%(pipeline)s\n\n' + 'Error was:\n%(error)s') % {'text': text, + 'pipeline': pipeline, 'error': str(e)})) raise JingleContentSetupException def add_remote_candidates(self, candidates): @@ -228,9 +230,9 @@ class JingleRTPContent(JingleContent): InformationEvent( None, conn=self.session.connection, level='error', pri_txt=_('GStreamer error'), - sec_txt=_('Error: %s\nDebug: %s' % - (message.get_structure().get_value('gerror'), - message.get_structure().get_value('debug'))))) + sec_txt=_('Error: %(error)s\nDebug: %(debug)s' % { + 'error': message.get_structure().get_value('gerror'), + 'debug': message.get_structure().get_value('debug')}))) sink_pad = self.p2psession.get_property('sink-pad') diff --git a/gajim/common/passwords.py b/gajim/common/passwords.py index c97996e0f..8f305f2ee 100644 --- a/gajim/common/passwords.py +++ b/gajim/common/passwords.py @@ -78,7 +78,7 @@ class LibSecretPasswordStorage(PasswordStorage): def save_password(self, account_name, password, update=True): server = app.config.get_per('accounts', account_name, 'hostname') user = app.config.get_per('accounts', account_name, 'name') - display_name = _('XMPP account %s@%s') % (user, server) + display_name = _('XMPP account %s') % user + '@' + server attributes = {'user': user, 'server': server, 'protocol': 'xmpp'} return self.Secret.password_store_sync(self.GAJIM_SCHEMA, attributes, self.Secret.COLLECTION_DEFAULT, display_name, password or '', None) diff --git a/gajim/config.py b/gajim/config.py index f1d743dd1..eed528b9e 100644 --- a/gajim/config.py +++ b/gajim/config.py @@ -2693,9 +2693,10 @@ class AccountCreationWizardWindow: 'hostname': hostname, 'error': obj.ssl_msg}) if obj.errnum in (18, 27): text = _('Add this certificate to the list of trusted ' - 'certificates.\nSHA-1 fingerprint of the certificate:\n%s' - '\nSHA-256 fingerprint of the certificate:\n%s') \ - % (obj.ssl_fingerprint_sha1, obj.ssl_fingerprint_sha256) + 'certificates.\nSHA-1 fingerprint of the certificate:\n' + '%(sha1)s\nSHA-256 fingerprint of the certificate:\n' + '%(sha256)s') % {'sha1': obj.ssl_fingerprint_sha1, + 'sha256': obj.ssl_fingerprint_sha256} self.xml.get_object('ssl_checkbutton').set_label(text) else: self.xml.get_object('ssl_checkbutton').set_no_show_all(True) diff --git a/gajim/data/gui/accounts_window.ui b/gajim/data/gui/accounts_window.ui index 60416ad0c..290f96458 100644 --- a/gajim/data/gui/accounts_window.ui +++ b/gajim/data/gui/accounts_window.ui @@ -61,7 +61,7 @@ main - page0 + page0 diff --git a/gajim/dialogs.py b/gajim/dialogs.py index 8a3739e5e..3d7c2f1c7 100644 --- a/gajim/dialogs.py +++ b/gajim/dialogs.py @@ -894,7 +894,7 @@ class AddNewContactWindow: 'group_comboboxentry', 'auto_authorize_checkbutton'): self.__dict__[w] = self.xml.get_object(w) if account and len(app.connections) >= 2: - self.default_desc = _('Please fill in the data of the contact you want\n' + self.default_desc = _('Please fill in the data of the contact you want ' 'to add to your account %s') % account else: self.default_desc = _('Please fill in the data of the contact you ' @@ -1276,7 +1276,8 @@ class AddNewContactWindow: if obj.stanza.getError(): ErrorDialog(_('Error while adding transport contact'), _('This error occured while adding a contact for transport ' - '%s:\n\n%s') % (transport, obj.stanza.getErrorMsg())) + '%(transport)s:\n\n%(error)s') % {'transport': transport, + 'error': obj.stanza.getErrorMsg()}) return if obj.prompt_jid: self._add_jid(obj.prompt_jid, type_) @@ -2636,9 +2637,10 @@ class JoinGroupchatWindow: if app.contacts.get_contact(self.account, room_jid) and \ not app.contacts.get_contact(self.account, room_jid).is_groupchat(): ErrorDialog(_('This is not a group chat'), - _('%s is already in your roster. Please check if %s is a ' - 'correct group chat name. If it is, delete it from your roster ' - 'and try joining the group chat again.') % (room_jid, room_jid)) + _('%(room_jid)s is already in your roster. Please check if ' + '%(room_jid)s is a correct group chat name. If it is, delete ' + 'it from your roster and try joining the group chat again.') % \ + {'room_jid': room_jid, 'room_jid': room_jid}) return full_jid = room_jid + '/' + nickname diff --git a/gajim/gui_interface.py b/gajim/gui_interface.py index 60331e942..078a88cfc 100644 --- a/gajim/gui_interface.py +++ b/gajim/gui_interface.py @@ -1360,9 +1360,9 @@ class Interface: 'server?') % {'error': obj.error_text} if obj.error_num in (18, 27): checktext1 = _('Add this certificate to the list of trusted ' - 'certificates.\nSHA-1 fingerprint of the certificate:\n%s' - '\nSHA256 fingerprint of the certificate:\n%s') % \ - (obj.fingerprint_sha1, obj.fingerprint_sha256) + 'certificates.\nSHA-1 fingerprint of the certificate:\n%(sha1)s' + '\nSHA256 fingerprint of the certificate:\n%(sha256)s') % \ + {'sha1': obj.fingerprint_sha1, 'sha256': obj.fingerprint_sha256} else: checktext1 = '' checktext2 = _('Ignore this error for this certificate.') @@ -1967,9 +1967,10 @@ class Interface: if app.contacts.get_contact(account, room_jid) and \ not app.contacts.get_contact(account, room_jid).is_groupchat(): dialogs.ErrorDialog(_('This is not a group chat'), - _('%s is already in your roster. Please check if %s is a ' - 'correct group chat name. If it is, delete it from your roster ' - 'and try joining the group chat again.') % (room_jid, room_jid)) + _('%(room_jid)s is already in your roster. Please check ' + 'if %(room_jid)s is a correct group chat name. If it is, ' + 'delete it from your roster and try joining the group chat ' + 'again.') % {'room_jid': room_jid, 'room_jid': room_jid}) return if not nick: diff --git a/gajim/history_sync.py b/gajim/history_sync.py index 9ea237087..51d0e7dad 100644 --- a/gajim/history_sync.py +++ b/gajim/history_sync.py @@ -283,7 +283,8 @@ class DownloadHistoryPage(Gtk.Box): self.received += 1 if self.count: self.progress.set_fraction(self.received / self.count) - self.progress.set_text(_('%s of %s' % (self.received, self.count))) + self.progress.set_text(_('%(received)s of %(max)s' % { + 'received': self.received, 'max': self.count})) else: self.progress.pulse() self.progress.set_text(_('Downloaded %s Messages' % self.received)) diff --git a/gajim/roster_window.py b/gajim/roster_window.py index b7f70cf5e..bf613da4a 100644 --- a/gajim/roster_window.py +++ b/gajim/roster_window.py @@ -4642,8 +4642,8 @@ class RosterWindow: # c_dest is None if jid_dest doesn't belong to account return menu = Gtk.Menu() - item = Gtk.MenuItem.new_with_label(_('Send %s to %s') % ( - c_source.get_shown_name(), c_dest.get_shown_name())) + item = Gtk.MenuItem.new_with_label(_('Send %(from)s to %(to)s') % { + 'from': c_source.get_shown_name(), 'to': c_dest.get_shown_name()}) item.set_use_underline(False) item.connect('activate', self.on_drop_rosterx, account_source, c_source, account_dest, c_dest, is_big_brother, context, etime) @@ -4660,8 +4660,8 @@ class RosterWindow: item.set_use_underline(False) else: item = Gtk.MenuItem.new_with_label( - _('Make %s and %s metacontacts') % ( - c_source.get_shown_name(), c_dest.get_shown_name())) + _('Make %(contact1)s and %(contact2)s metacontacts') % { + 'contact1': c_source.get_shown_name(), 'contact2': c_dest.get_shown_name()}) item.set_use_underline(False) item.connect('activate', self.on_drop_in_contact, account_source, diff --git a/test/runtests.py b/test/runtests.py index c6fc503a3..857ba8e63 100755 --- a/test/runtests.py +++ b/test/runtests.py @@ -57,7 +57,7 @@ for mod in modules: suite = unittest.defaultTestLoader.loadTestsFromName(mod) result = unittest.TextTestRunner(verbosity=verbose).run(suite) if use_x: - # Wait 1s to be sure all timeout_add will be called before we cleanup main loop + # Wait 500ms to be sure all timeout_add will be called before we cleanup main loop import time time.sleep(0.5) # Clean main loop From a378152a9c791d2a5941b33d4f10b3e3d90920fe Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 19 Sep 2017 15:44:58 +0200 Subject: [PATCH 22/30] Remove Gmail special options --- gajim/common/app.py | 2 - gajim/common/config.py | 4 -- gajim/common/connection.py | 3 - gajim/common/connection_handlers.py | 68 ------------------- gajim/common/connection_handlers_events.py | 67 ------------------ gajim/config.py | 24 ------- gajim/data/gui/account_context_menu.ui | 10 +-- gajim/data/gui/preferences_window.ui | 79 ++-------------------- gajim/gui_interface.py | 43 ------------ gajim/remote_control.py | 10 --- gajim/roster_window.py | 14 ---- 11 files changed, 6 insertions(+), 318 deletions(-) diff --git a/gajim/common/app.py b/gajim/common/app.py index 4778ffc4c..7f6a6e105 100644 --- a/gajim/common/app.py +++ b/gajim/common/app.py @@ -88,8 +88,6 @@ else: os_info = None # used to cache os information -gmail_domains = ['gmail.com', 'googlemail.com'] - transport_type = {} # list the type of transport last_message_time = {} # list of time of the latest incomming message diff --git a/gajim/common/config.py b/gajim/common/config.py index bb6fd060b..178badb4f 100644 --- a/gajim/common/config.py +++ b/gajim/common/config.py @@ -178,9 +178,6 @@ class Config: 'time_stamp': [ opt_str, '[%X] ', _('This option let you customize timestamp that is printed in conversation. For exemple "[%H:%M] " will show "[hour:minute] ". See python doc on strftime for full documentation: http://docs.python.org/lib/module-time.html') ], 'before_nickname': [ opt_str, '', _('Characters that are printed before the nickname in conversations') ], 'after_nickname': [ opt_str, ':', _('Characters that are printed after the nickname in conversations') ], - 'notify_on_new_gmail_email': [ opt_bool, True ], - 'notify_on_new_gmail_email_extra': [ opt_bool, False ], - 'notify_on_new_gmail_email_command': [ opt_str, '', _('Specify the command to run when new mail arrives, e.g.: /usr/bin/getmail -q') ], 'use_gpg_agent': [ opt_bool, False ], 'change_roster_title': [ opt_bool, True, _('Add * and [n] in roster title?')], 'restore_lines': [opt_int, 10, _('How many history messages should be restored when a chat tab/window is reopened?')], @@ -538,7 +535,6 @@ class Config: 'message_sent': [ False, 'sent.wav' ], 'muc_message_highlight': [ True, 'gc_message1.wav', _('Sound to play when a group chat message contains one of the words in muc_highlight_words, or when a group chat message contains your nickname.')], 'muc_message_received': [ False, 'gc_message2.wav', _('Sound to play when any MUC message arrives.') ], - 'gmail_received': [ False, 'message1.wav' ], } themes_default = { diff --git a/gajim/common/connection.py b/gajim/common/connection.py index 923aff9ce..d0c3b9304 100644 --- a/gajim/common/connection.py +++ b/gajim/common/connection.py @@ -1915,9 +1915,6 @@ class Connection(CommonConnection, ConnectionHandlers): get_action(self.name + '-archive').set_enabled(True) if obj.fjid == hostname: - if nbxmpp.NS_GMAILNOTIFY in obj.features: - app.gmail_domains.append(obj.fjid) - self.request_gmail_notifications() if nbxmpp.NS_SECLABEL in obj.features: self.seclabel_supported = True for identity in obj.identities: diff --git a/gajim/common/connection_handlers.py b/gajim/common/connection_handlers.py index 159f95346..3528e0b99 100644 --- a/gajim/common/connection_handlers.py +++ b/gajim/common/connection_handlers.py @@ -1358,7 +1358,6 @@ ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream): client_caps_factory=capscache.create_suitable_client_caps) ConnectionJingle.__init__(self) ConnectionHandlersBase.__init__(self) - self.gmail_url = None # keep the latest subscribed event for each jid to prevent loop when we # acknowledge presences @@ -1377,9 +1376,6 @@ ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream): self.privacy_default_list = None - self.gmail_last_tid = None - self.gmail_last_time = None - app.nec.register_incoming_event(PrivateStorageBookmarksReceivedEvent) app.nec.register_incoming_event(BookmarksReceivedEvent) app.nec.register_incoming_event( @@ -1417,8 +1413,6 @@ ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream): self._nec_roster_received) app.ged.register_event_handler('iq-error-received', ged.CORE, self._nec_iq_error_received) - app.ged.register_event_handler('gmail-new-mail-received', ged.CORE, - self._nec_gmail_new_mail_received) app.ged.register_event_handler('ping-received', ged.CORE, self._nec_ping_received) app.ged.register_event_handler('subscribe-presence-received', @@ -1463,8 +1457,6 @@ ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream): self._nec_roster_received) app.ged.remove_event_handler('iq-error-received', ged.CORE, self._nec_iq_error_received) - app.ged.remove_event_handler('gmail-new-mail-received', ged.CORE, - self._nec_gmail_new_mail_received) app.ged.remove_event_handler('ping-received', ged.CORE, self._nec_ping_received) app.ged.remove_event_handler('subscribe-presence-received', @@ -1721,44 +1713,6 @@ ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream): app.nec.push_incoming_event(TimeResultReceivedEvent(None, conn=self, stanza=iq_obj)) - def _gMailNewMailCB(self, con, iq_obj): - """ - Called when we get notified of new mail messages in gmail account - """ - log.debug('gMailNewMailCB') - app.nec.push_incoming_event(GmailNewMailReceivedEvent(None, conn=self, - stanza=iq_obj)) - raise nbxmpp.NodeProcessed - - def _nec_gmail_new_mail_received(self, obj): - if obj.conn.name != self.name: - return - if not self.connection or self.connected < 2: - return - # we'll now ask the server for the exact number of new messages - jid = app.get_jid_from_account(self.name) - log.debug('Got notification of new gmail e-mail on %s. Asking the ' - 'server for more info.' % jid) - iq = nbxmpp.Iq(typ='get') - query = iq.setTag('query') - query.setNamespace(nbxmpp.NS_GMAILNOTIFY) - # we want only be notified about newer mails - if self.gmail_last_tid: - query.setAttr('newer-than-tid', self.gmail_last_tid) - if self.gmail_last_time: - query.setAttr('newer-than-time', self.gmail_last_time) - self.connection.send(iq) - - def _gMailQueryCB(self, con, iq_obj): - """ - Called when we receive results from Querying the server for mail messages - in gmail account - """ - log.debug('gMailQueryCB') - app.nec.push_incoming_event(GMailQueryReceivedEvent(None, conn=self, - stanza=iq_obj)) - raise nbxmpp.NodeProcessed - def _rosterItemExchangeCB(self, con, msg): """ XEP-0144 Roster Item Echange @@ -2123,28 +2077,6 @@ ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream): # hashes of already received messages self.received_message_hashes = [] - def request_gmail_notifications(self): - if not self.connection or self.connected < 2: - return - # It's a gmail account, - # inform the server that we want e-mail notifications - our_jid = helpers.parse_jid(app.get_jid_from_account(self.name)) - log.debug(('%s is a gmail account. Setting option ' - 'to get e-mail notifications on the server.') % (our_jid)) - iq = nbxmpp.Iq(typ='set', to=our_jid) - iq.setAttr('id', 'MailNotify') - query = iq.setTag('usersetting') - query.setNamespace(nbxmpp.NS_GTALKSETTING) - query = query.setTag('mailnotifications') - query.setAttr('value', 'true') - self.connection.send(iq) - # Ask how many messages there are now - iq = nbxmpp.Iq(typ='get') - iq.setID(self.connection.getAnID()) - query = iq.setTag('query') - query.setNamespace(nbxmpp.NS_GMAILNOTIFY) - self.connection.send(iq) - def _SearchCB(self, con, iq_obj): log.debug('SearchCB') app.nec.push_incoming_event(SearchFormReceivedEvent(None, diff --git a/gajim/common/connection_handlers_events.py b/gajim/common/connection_handlers_events.py index f7249c8e1..f5fa8cfd9 100644 --- a/gajim/common/connection_handlers_events.py +++ b/gajim/common/connection_handlers_events.py @@ -232,61 +232,6 @@ class TimeResultReceivedEvent(nec.NetworkIncomingEvent, HelperEvent): self.time_info = t.astimezone(contact_tz()).strftime('%c') return True -class GMailQueryReceivedEvent(nec.NetworkIncomingEvent): - name = 'gmail-notify' - base_network_events = [] - - def generate(self): - if not self.stanza.getTag('mailbox'): - return - mb = self.stanza.getTag('mailbox') - if not mb.getAttr('url'): - return - self.conn.gmail_url = mb.getAttr('url') - if mb.getNamespace() != nbxmpp.NS_GMAILNOTIFY: - return - self.newmsgs = mb.getAttr('total-matched') - if not self.newmsgs: - return - if self.newmsgs == '0': - return - # there are new messages - self.gmail_messages_list = [] - if mb.getTag('mail-thread-info'): - gmail_messages = mb.getTags('mail-thread-info') - for gmessage in gmail_messages: - unread_senders = [] - for sender in gmessage.getTag('senders').getTags('sender'): - if sender.getAttr('unread') != '1': - continue - if sender.getAttr('name'): - unread_senders.append(sender.getAttr('name') + \ - '< ' + sender.getAttr('address') + '>') - else: - unread_senders.append(sender.getAttr('address')) - - if not unread_senders: - continue - gmail_subject = gmessage.getTag('subject').getData() - gmail_snippet = gmessage.getTag('snippet').getData() - tid = int(gmessage.getAttr('tid')) - if not self.conn.gmail_last_tid or \ - tid > self.conn.gmail_last_tid: - self.conn.gmail_last_tid = tid - self.gmail_messages_list.append({ - 'From': unread_senders, - 'Subject': gmail_subject, - 'Snippet': gmail_snippet, - 'url': gmessage.getAttr('url'), - 'participation': gmessage.getAttr('participation'), - 'messages': gmessage.getAttr('messages'), - 'date': gmessage.getAttr('date')}) - self.conn.gmail_last_time = int(mb.getAttr('result-time')) - - self.jid = app.get_jid_from_account(self.name) - log.debug('You have %s new gmail e-mails on %s.', self.newmsgs, self.jid) - return True - class RosterItemExchangeEvent(nec.NetworkIncomingEvent, HelperEvent): name = 'roster-item-exchange-received' base_network_events = [] @@ -671,18 +616,6 @@ class IqErrorReceivedEvent(nec.NetworkIncomingEvent, HelperEvent): self.errcode = self.stanza.getErrorCode() return True -class GmailNewMailReceivedEvent(nec.NetworkIncomingEvent): - name = 'gmail-new-mail-received' - base_network_events = [] - - def generate(self): - if not self.stanza.getTag('new-mail'): - return - if self.stanza.getTag('new-mail').getNamespace() != \ - nbxmpp.NS_GMAILNOTIFY: - return - return True - class PingReceivedEvent(nec.NetworkIncomingEvent): name = 'ping-received' base_network_events = [] diff --git a/gajim/config.py b/gajim/config.py index eed528b9e..449bab701 100644 --- a/gajim/config.py +++ b/gajim/config.py @@ -339,23 +339,6 @@ class PreferencesWindow: else: self.xml.get_object('manage_sounds_button').set_sensitive(False) - # Notify user of new gmail e-mail messages, - # make checkbox sensitive if user has a gtalk account - frame_gmail = self.xml.get_object('frame_gmail') - notify_gmail_checkbutton = self.xml.get_object('notify_gmail_checkbutton') - notify_gmail_extra_checkbutton = self.xml.get_object( - 'notify_gmail_extra_checkbutton') - - for account in app.config.get_per('accounts'): - jid = app.get_jid_from_account(account) - if app.get_server_from_jid(jid) in app.gmail_domains: - frame_gmail.set_sensitive(True) - st = app.config.get('notify_on_new_gmail_email') - notify_gmail_checkbutton.set_active(st) - st = app.config.get('notify_on_new_gmail_email_extra') - notify_gmail_extra_checkbutton.set_active(st) - break - #### Status tab ### # Autoaway st = app.config.get('autoaway') @@ -1144,12 +1127,6 @@ class PreferencesWindow: widget.set_inconsistent(False) self.on_per_account_checkbutton_toggled(widget, 'send_idle_time') - def on_notify_gmail_checkbutton_toggled(self, widget): - self.on_checkbutton_toggled(widget, 'notify_on_new_gmail_email') - - def on_notify_gmail_extra_checkbutton_toggled(self, widget): - self.on_checkbutton_toggled(widget, 'notify_on_new_gmail_email_extra') - def fill_msg_treeview(self): self.xml.get_object('delete_msg_button').set_sensitive(False) model = self.msg_tree.get_model() @@ -3054,7 +3031,6 @@ class ManageSoundsWindow: 'message_sent': _('Message Sent'), 'muc_message_highlight': _('Group Chat Message Highlight'), 'muc_message_received': _('Group Chat Message Received'), - 'gmail_received': _('GMail Email Received') } for sound_event_config_name, sound_ui_name in sounds_dict.items(): diff --git a/gajim/data/gui/account_context_menu.ui b/gajim/data/gui/account_context_menu.ui index 91257c213..665f54d80 100644 --- a/gajim/data/gui/account_context_menu.ui +++ b/gajim/data/gui/account_context_menu.ui @@ -1,5 +1,5 @@ - + @@ -75,14 +75,6 @@ True - - - True - False - _Open Gmail Inbox - True - - True diff --git a/gajim/data/gui/preferences_window.ui b/gajim/data/gui/preferences_window.ui index a8b667471..15a2156a9 100644 --- a/gajim/data/gui/preferences_window.ui +++ b/gajim/data/gui/preferences_window.ui @@ -1,5 +1,5 @@ - + @@ -727,75 +727,6 @@ 4 - - - True - False - False - True - 0 - none - - - True - False - 12 - 6 - vertical - 6 - - - Notify on new _GMail email - True - True - False - If checked, Gajim will show a notification when a new e-mail is received via GMail - True - 0 - True - - - - False - False - 0 - - - - - Display _extra email details - True - True - False - If checked, Gajim will also include information about the sender of new emails - True - 0 - True - - - - False - False - 1 - - - - - - - True - False - <b>GMail Options</b> - True - - - - - False - False - 5 - - True @@ -836,7 +767,7 @@ False True - 6 + 5 @@ -1215,7 +1146,7 @@ $T will be replaced by auto-not-available timeout 50 True True - 12 + 12 adjustment2 1 12 @@ -1231,7 +1162,7 @@ $T will be replaced by auto-not-available timeout 50 True True - 20 + 20 adjustment1 1 20 @@ -2127,10 +2058,10 @@ $T will be replaced by auto-not-available timeout _Reset to Default Colors True True + False False image1 True - False diff --git a/gajim/gui_interface.py b/gajim/gui_interface.py index 078a88cfc..d73d9d08c 100644 --- a/gajim/gui_interface.py +++ b/gajim/gui_interface.py @@ -847,44 +847,6 @@ class Interface: notify.popup(event_type, jid, account, 'file-send-error', path, event_type, file_props.name) - @staticmethod - def handle_event_gmail_notify(obj): - jid = obj.jid - gmail_new_messages = int(obj.newmsgs) - gmail_messages_list = obj.gmail_messages_list - if not app.config.get('notify_on_new_gmail_email'): - return - path = gtkgui_helpers.get_icon_path('gajim-new_email_recv', 48) - title = _('New e-mail on %(gmail_mail_address)s') % \ - {'gmail_mail_address': jid} - text = i18n.ngettext('You have %d new e-mail conversation', - 'You have %d new e-mail conversations', gmail_new_messages, - gmail_new_messages, gmail_new_messages) - - if app.config.get('notify_on_new_gmail_email_extra'): - cnt = 0 - for gmessage in gmail_messages_list: - # FIXME: emulate Gtalk client popups. find out what they - # parse and how they decide what to show each message has a - # 'From', 'Subject' and 'Snippet' field - if cnt >= 5: - break - senders = ',\n '.join(reversed(gmessage['From'])) - text += _('\n\nFrom: %(from_address)s\nSubject: ' - '%(subject)s\n%(snippet)s') % {'from_address': senders, - 'subject': gmessage['Subject'], - 'snippet': gmessage['Snippet']} - cnt += 1 - - command = app.config.get('notify_on_new_gmail_email_command') - if command: - Popen(command, shell=True) - - if app.config.get_per('soundevents', 'gmail_received', 'enabled'): - helpers.play_sound('gmail_received') - notify.popup(_('New E-mail'), jid, obj.conn.name, 'gmail', - path_to_image=path, title=title, text=text) - def handle_event_file_request_error(self, obj): # ('FILE_REQUEST_ERROR', account, (jid, file_props, error_msg)) ft = self.instances['file_transfers'] @@ -1553,7 +1515,6 @@ class Interface: 'gc-decline-received': [self.handle_event_gc_decline], 'gc-presence-received': [self.handle_event_gc_presence], 'gc-message-received': [self.handle_event_gc_message], - 'gmail-notify': [self.handle_event_gmail_notify], 'gpg-password-required': [self.handle_event_gpg_password_required], 'gpg-trust-key': [self.handle_event_gpg_trust_key], 'http-auth-received': [self.handle_event_http_auth], @@ -1762,10 +1723,6 @@ class Interface: else: # Open the window self.roster.open_event(account, fjid, event) - elif type_ == 'gmail': - url = app.connections[account].gmail_url - if url: - helpers.launch_browser_mailer('url', url) elif type_ == 'gc-invitation': event = app.events.get_first_event(account, jid, type_) dialogs.InvitationReceivedDialog(account, event.room_jid, jid, diff --git a/gajim/remote_control.py b/gajim/remote_control.py index 60c9a96a0..c9ce5f36c 100644 --- a/gajim/remote_control.py +++ b/gajim/remote_control.py @@ -111,8 +111,6 @@ class Remote: self.on_os_info) app.ged.register_event_handler('time-result-received', ged.POSTGUI, self.on_time) - app.ged.register_event_handler('gmail-nofify', ged.POSTGUI, - self.on_gmail_notify) app.ged.register_event_handler('roster-info', ged.POSTGUI, self.on_roster_info) app.ged.register_event_handler('presence-received', ged.POSTGUI, @@ -156,10 +154,6 @@ class Remote: self.raise_signal('EntityTime', (obj.conn.name, [obj.jid, obj.resource, obj.time_info])) - def on_gmail_notify(self, obj): - self.raise_signal('NewGmail', (obj.conn.name, [obj.jid, obj.newmsgs, - obj.gmail_messages_list])) - def on_roster_info(self, obj): self.raise_signal('RosterInfo', (obj.conn.name, [obj.jid, obj.nickname, obj.sub, obj.ask, obj.groups])) @@ -292,10 +286,6 @@ class SignalObject(dbus.service.Object): def RosterInfo(self, account_and_array): pass - @dbus.service.signal(INTERFACE, signature='av') - def NewGmail(self, account_and_array): - pass - @dbus.service.signal(INTERFACE, signature='av') def ChatState(self, account_and_array): pass diff --git a/gajim/roster_window.py b/gajim/roster_window.py index bf613da4a..10844afbd 100644 --- a/gajim/roster_window.py +++ b/gajim/roster_window.py @@ -3235,11 +3235,6 @@ class RosterWindow: app.interface.instances['accounts'] = config.AccountsWindow() app.interface.instances['accounts'].select_account(account) - def on_open_gmail_inbox(self, widget, account): - url = app.connections[account].gmail_url - if url: - helpers.launch_browser_mailer('url', url) - def on_change_status_message_activate(self, widget, account): show = app.SHOW_LIST[app.connections[account].connected] def on_response(message, pep_dict): @@ -5036,8 +5031,6 @@ class RosterWindow: start_chat_menuitem = xml.get_object('start_chat_menuitem') join_group_chat_menuitem = xml.get_object( 'join_group_chat_menuitem') - open_gmail_inbox_menuitem = xml.get_object( - 'open_gmail_inbox_menuitem') add_contact_menuitem = xml.get_object('add_contact_menuitem') service_discovery_menuitem = xml.get_object( 'service_discovery_menuitem') @@ -5108,13 +5101,6 @@ class RosterWindow: else: pep_menuitem.set_sensitive(False) - if not app.connections[account].gmail_url: - open_gmail_inbox_menuitem.set_no_show_all(True) - open_gmail_inbox_menuitem.hide() - else: - open_gmail_inbox_menuitem.connect('activate', - self.on_open_gmail_inbox, account) - edit_account_menuitem.connect('activate', self.on_edit_account, account) if app.connections[account].roster_supported: From 84060484c44aceeff32ef6aa715374de215d7c1a Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 19 Sep 2017 15:52:53 +0200 Subject: [PATCH 23/30] Remove more Gmail things --- gajim/common/connection_handlers.py | 4 ---- plugins/events_dump/plugin.py | 4 ++-- test/integration/test_resolver.py | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/gajim/common/connection_handlers.py b/gajim/common/connection_handlers.py index 3528e0b99..033202602 100644 --- a/gajim/common/connection_handlers.py +++ b/gajim/common/connection_handlers.py @@ -2192,10 +2192,6 @@ ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream): con.RegisterHandler('iq', self._HttpAuthCB, 'get', nbxmpp.NS_HTTP_AUTH) con.RegisterHandler('iq', self._CommandExecuteCB, 'set', nbxmpp.NS_COMMANDS) - con.RegisterHandler('iq', self._gMailNewMailCB, 'set', - nbxmpp.NS_GMAILNOTIFY) - con.RegisterHandler('iq', self._gMailQueryCB, 'result', - nbxmpp.NS_GMAILNOTIFY) con.RegisterHandler('iq', self._DiscoverInfoGetCB, 'get', nbxmpp.NS_DISCO_INFO) con.RegisterHandler('iq', self._DiscoverItemsGetCB, 'get', diff --git a/plugins/events_dump/plugin.py b/plugins/events_dump/plugin.py index 1ecc83e33..b88554d5e 100644 --- a/plugins/events_dump/plugin.py +++ b/plugins/events_dump/plugin.py @@ -64,8 +64,8 @@ class EventsDumpPlugin(GajimPlugin): 'GC_AFFILIATION', 'GC_PASSWORD_REQUIRED', 'BAD_PASSPHRASE', 'ROSTER_INFO', 'BOOKMARKS', 'CON_TYPE', 'CONNECTION_LOST', 'FILE_REQUEST', - 'GMAIL_NOTIFY', 'FILE_REQUEST_ERROR', - 'FILE_SEND_ERROR', 'STANZA_ARRIVED', 'STANZA_SENT', + 'FILE_REQUEST_ERROR', 'FILE_SEND_ERROR', + 'STANZA_ARRIVED', 'STANZA_SENT', 'HTTP_AUTH', 'VCARD_PUBLISHED', 'VCARD_NOT_PUBLISHED', 'ASK_NEW_NICK', 'SIGNED_IN', 'METACONTACTS', 'ATOM_ENTRY', 'FAILED_DECRYPT', diff --git a/test/integration/test_resolver.py b/test/integration/test_resolver.py index 96b283d0b..dcdef91c3 100644 --- a/test/integration/test_resolver.py +++ b/test/integration/test_resolver.py @@ -13,13 +13,11 @@ from mock import Mock, expectParams from gajim_mocks import * from xmpp_mocks import IdleQueueThread -GMAIL_SRV_NAME = '_xmpp-client._tcp.gmail.com' NONSENSE_NAME = 'sfsdfsdfsdf.sdfs.fsd' JABBERCZ_TXT_NAME = '_xmppconnect.jabber.cz' JABBERCZ_SRV_NAME = '_xmpp-client._tcp.jabber.cz' -TEST_LIST = [(GMAIL_SRV_NAME, 'srv', True), - (NONSENSE_NAME, 'srv', False), +TEST_LIST = [(NONSENSE_NAME, 'srv', False), (JABBERCZ_SRV_NAME, 'srv', True)] class TestResolver(unittest.TestCase): From 267dd73fcb53b8b604c8e8dbe9e4f6627f72448c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Tue, 19 Sep 2017 22:04:39 +0200 Subject: [PATCH 24/30] Catch LibSecret errors --- gajim/common/passwords.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gajim/common/passwords.py b/gajim/common/passwords.py index 8f305f2ee..f86ef8dd6 100644 --- a/gajim/common/passwords.py +++ b/gajim/common/passwords.py @@ -80,8 +80,13 @@ class LibSecretPasswordStorage(PasswordStorage): user = app.config.get_per('accounts', account_name, 'name') display_name = _('XMPP account %s') % user + '@' + server attributes = {'user': user, 'server': server, 'protocol': 'xmpp'} - return self.Secret.password_store_sync(self.GAJIM_SCHEMA, attributes, - self.Secret.COLLECTION_DEFAULT, display_name, password or '', None) + try: + return self.Secret.password_store_sync( + self.GAJIM_SCHEMA, attributes, self.Secret.COLLECTION_DEFAULT, + display_name, password or '', None) + except GLib.Error as error: + log.error(error) + return False class SecretWindowsPasswordStorage(PasswordStorage): From f6deff2cd01fbb223ffbe2d78af364ac6d70ca54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Tue, 19 Sep 2017 22:06:21 +0200 Subject: [PATCH 25/30] Fix import --- gajim/common/passwords.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gajim/common/passwords.py b/gajim/common/passwords.py index f86ef8dd6..bdfb18891 100644 --- a/gajim/common/passwords.py +++ b/gajim/common/passwords.py @@ -27,6 +27,9 @@ import os import logging import gi + +from gi.repository import GLib + from gajim.common import app __all__ = ['get_password', 'save_password'] From ab60bcbe8510584e0b406c6d3f66b23befde532c Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 20 Sep 2017 11:39:55 +0200 Subject: [PATCH 26/30] PyOpenSSL removed rand module. Stop using it. Fixes #8731 --- gajim/common/configpaths.py | 3 +-- gajim/common/crypto.py | 48 +------------------------------------ gajim/gajim.py | 27 --------------------- 3 files changed, 2 insertions(+), 76 deletions(-) diff --git a/gajim/common/configpaths.py b/gajim/common/configpaths.py index 20871109d..e0245f2cb 100644 --- a/gajim/common/configpaths.py +++ b/gajim/common/configpaths.py @@ -144,8 +144,7 @@ class ConfigPaths: d = {'LOG_DB': 'logs.db', 'MY_CACERTS': 'cacerts.pem', 'MY_EMOTS': 'emoticons', 'MY_ICONSETS': 'iconsets', 'MY_MOOD_ICONSETS': 'moods', 'MY_ACTIVITY_ICONSETS': 'activities', - 'PLUGINS_USER': 'plugins', - 'RNG_SEED': 'rng_seed'} + 'PLUGINS_USER': 'plugins'} for name in d: d[name] += profile self.add(name, Type.DATA, windowsify(d[name])) diff --git a/gajim/common/crypto.py b/gajim/common/crypto.py index 2e99cde1a..b0f59de3b 100644 --- a/gajim/common/crypto.py +++ b/gajim/common/crypto.py @@ -76,54 +76,8 @@ def base28(n): else: return base28_chr[n] -def add_entropy_sources_OpenSSL(): - # Other possibly variable data. This are very low quality sources of - # entropy, but some of them are installation dependent and can be hard - # to guess for the attacker. - # Data available on all platforms Unix, Windows - sources = [sys.argv, sys.builtin_module_names, - sys.copyright, sys.getfilesystemencoding(), sys.hexversion, - sys.modules, sys.path, sys.version, sys.api_version, - os.environ, os.getcwd(), os.getpid()] - - for s in sources: - OpenSSL.rand.add(str(s).encode('utf-8'), 1) - - # On Windows add the current contents of the screen to the PRNG state. -# if os.name == 'nt': -# OpenSSL.rand.screen() - # The /proc filesystem on POSIX systems contains many random variables: - # memory statistics, interrupt counts, network packet counts - if os.name == 'posix': - dirs = ['/proc', '/proc/net', '/proc/self'] - for d in dirs: - if os.access(d, os.R_OK): - for filename in os.listdir(d): - OpenSSL.rand.add(filename.encode('utf-8'), 0) - try: - with open(d + os.sep + filename, "r") as fp: - # Limit the ammount of read bytes, in case a memory - # file was opened - OpenSSL.rand.add(str(fp.read(5000)).encode('utf-8'), - 1) - except: - # Ignore all read and access errors - pass - -PYOPENSSL_PRNG_PRESENT = False -try: - import OpenSSL.rand - PYOPENSSL_PRNG_PRESENT = True -except ImportError: - # PyOpenSSL PRNG not available - pass - def random_bytes(bytes_): - if PYOPENSSL_PRNG_PRESENT: - OpenSSL.rand.add(os.urandom(bytes_), bytes_) - return OpenSSL.rand.bytes(bytes_) - else: - return os.urandom(bytes_) + return os.urandom(bytes_) def generate_nonce(): return random_bytes(8) diff --git a/gajim/gajim.py b/gajim/gajim.py index a3dd77267..1cf67ba64 100644 --- a/gajim/gajim.py +++ b/gajim/gajim.py @@ -52,12 +52,6 @@ from gi.repository import GLib, Gio, Gtk from gajim.common import i18n from gajim.common import logging_helpers from gajim.common import crypto -try: - PYOPENSSL_PRNG_PRESENT = True - import OpenSSL.rand -except ImportError: - print('PyOpenSSL not available, impossible to generate entropy', file=sys.stderr) - PYOPENSSL_PRNG_PRESENT = False MIN_NBXMPP_VER = "0.5.6" @@ -104,7 +98,6 @@ class GajimApplication(Gtk.Application): self.config_path = None self.profile_separation = False self.interface = None - self.rng_seed = None GLib.set_prgname('gajim') if GLib.get_application_name() != 'Gajim': @@ -206,20 +199,6 @@ class GajimApplication(Gtk.Application): elif sysname in ('FreeBSD', 'OpenBSD', 'NetBSD'): libc.setproctitle('gajim') - # Seed the OpenSSL pseudo random number generator from file and initialize - if PYOPENSSL_PRNG_PRESENT: - self.rng_seed = app.gajimpaths['RNG_SEED'] - # Seed from file - try: - OpenSSL.rand.load_file(self.rng_seed) - except TypeError: - OpenSSL.rand.load_file(self.rng_seed.encode('utf-8')) - crypto.add_entropy_sources_OpenSSL() - try: - OpenSSL.rand.write_file(self.rng_seed) - except TypeError: - OpenSSL.rand.write_file(self.rng_seed.encode('utf-8')) - def sigint_cb(num, stack): print('SIGINT/SIGTERM received') self.quit() @@ -249,12 +228,6 @@ class GajimApplication(Gtk.Application): def do_shutdown(self, *args): Gtk.Application.do_shutdown(self) - # Save the entropy from OpenSSL PRNG - if PYOPENSSL_PRNG_PRESENT and self.rng_seed: - try: - OpenSSL.rand.write_file(self.rng_seed) - except TypeError: - OpenSSL.rand.write_file(self.rng_seed.encode('utf-8')) # Shutdown GUI and save config if hasattr(self.interface, 'roster') and self.interface.roster: self.interface.roster.prepare_quit() From f50f22c4bd1441e9e2776471bf1037a29dda0a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Wed, 20 Sep 2017 21:18:22 +0200 Subject: [PATCH 27/30] Use custom font for MessageTextView --- gajim/message_textview.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gajim/message_textview.py b/gajim/message_textview.py index fb02a3c27..e856d1a0a 100644 --- a/gajim/message_textview.py +++ b/gajim/message_textview.py @@ -51,6 +51,7 @@ class MessageTextView(Gtk.TextView): self.set_right_margin(2) self.set_pixels_above_lines(2) self.set_pixels_below_lines(2) + self.get_style_context().add_class('font_custom') # set undo list self.undo_list = [] From 3e1ea4a3dce5798fa94dba70a1a22048ffeaa728 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 21 Sep 2017 17:05:01 +0200 Subject: [PATCH 28/30] implement XEP-0380. Fixes #8734 --- gajim/common/connection_handlers.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gajim/common/connection_handlers.py b/gajim/common/connection_handlers.py index c0532eb85..7d6ba81be 100644 --- a/gajim/common/connection_handlers.py +++ b/gajim/common/connection_handlers.py @@ -1080,6 +1080,27 @@ class ConnectionHandlersBase: app.plugin_manager.extension_point( 'decrypt', self, obj, self._on_message_received) if not obj.encrypted: + # XEP-0380 + enc_tag = obj.stanza.getTag('encryption', namespace=nbxmpp.NS_EME) + if enc_tag: + ns = enc_tag.getAttr('namespace') + if ns: + if ns == 'urn:xmpp:otr:0': + obj.msgtxt = _('This message was encrypted with OTR ' + 'and could not be decrypted.') + elif ns == 'jabber:x:encrypted': + obj.msgtxt = _('This message was encrypted with Legacy ' + 'OpenPGP and could not be decrypted. You can install ' + 'the PGP plugin to handle those messages.') + elif ns == 'urn:xmpp:openpgp:0': + obj.msgtxt = _('This message was encrypted with ' + 'OpenPGP for XMPP and could not be decrypted.') + else: + enc_name = enc_tag.getAttr('name') + if not enc_name: + enc_name = ns + obj.msgtxt = _('This message was encrypted with %s ' + 'and could not be decrypted.') % enc_name self._on_message_received(obj) def _on_message_received(self, obj): From 7e475705c923e1af7084168fc2419689c0f48a76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Thu, 21 Sep 2017 19:39:03 +0200 Subject: [PATCH 29/30] Add simple log instance getter --- gajim/common/app.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gajim/common/app.py b/gajim/common/app.py index 7f6a6e105..b5ae5fd41 100644 --- a/gajim/common/app.py +++ b/gajim/common/app.py @@ -53,7 +53,7 @@ ged = ged_module.GlobalEventsDispatcher() # Global Events Dispatcher nec = None # Network Events Controller plugin_manager = None # Plugins Manager -log = logging.getLogger('gajim') +glog = logging.getLogger('gajim') logger = None @@ -174,7 +174,7 @@ try: ''' v_gnupg = gnupg.__version__ if V(v_gnupg) < V('0.3.8') or V(v_gnupg) > V('1.0.0'): - log.info('Gajim needs python-gnupg >= 0.3.8') + glog.info('Gajim needs python-gnupg >= 0.3.8') HAVE_GPG = False except ImportError: HAVE_GPG = False @@ -245,7 +245,7 @@ try: if sleepy.SUPPORTED: HAVE_IDLE = True except Exception: - log.debug(_('Unable to load idle module')) + glog.info(_('Unable to load idle module')) HAVE_IDLE = False @@ -491,3 +491,7 @@ def get_priority(account, show): elif prio > 127: prio = 127 return prio + +def log(domain): + root = 'gajim.' + return logging.getLogger(root + domain) From 28184273e6ab63474d8f5df26a2a9ecfc20f31df Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 21 Sep 2017 20:36:45 +0200 Subject: [PATCH 30/30] annouce XEP-0380 support --- gajim/common/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gajim/common/app.py b/gajim/common/app.py index b5ae5fd41..1751f452e 100644 --- a/gajim/common/app.py +++ b/gajim/common/app.py @@ -259,7 +259,8 @@ gajim_common_features = [nbxmpp.NS_BYTESTREAM, nbxmpp.NS_SI, nbxmpp.NS_FILE, nbxmpp.NS_SSN, nbxmpp.NS_MOOD, nbxmpp.NS_ACTIVITY, nbxmpp.NS_NICK, nbxmpp.NS_ROSTERX, nbxmpp.NS_SECLABEL, nbxmpp.NS_HASHES_2, nbxmpp.NS_HASHES_MD5, nbxmpp.NS_HASHES_SHA1, nbxmpp.NS_HASHES_SHA256, - nbxmpp.NS_HASHES_SHA512, nbxmpp.NS_CONFERENCE, nbxmpp.NS_CORRECT] + nbxmpp.NS_HASHES_SHA512, nbxmpp.NS_CONFERENCE, nbxmpp.NS_CORRECT, + nbxmpp.NS_EME] # Optional features gajim supports per account gajim_optional_features = {}