View | Details | Raw Unified | Return to bug 280891 | Differences between
and this patch

Collapse All | Expand All

(-)b/emulators/Makefile (+1 lines)
Lines 32-37 Link Here
32
    SUBDIR += elliott-803
32
    SUBDIR += elliott-803
33
    SUBDIR += emu64
33
    SUBDIR += emu64
34
    SUBDIR += emulationstation
34
    SUBDIR += emulationstation
35
    SUBDIR += es-de
35
    SUBDIR += fceux
36
    SUBDIR += fceux
36
    SUBDIR += flexemu
37
    SUBDIR += flexemu
37
    SUBDIR += fmsx
38
    SUBDIR += fmsx
(-)b/emulators/es-de/Makefile (+45 lines)
Added Link Here
1
PORTNAME=	es-de
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	3.0.3
4
CATEGORIES=	emulators
5
6
MAINTAINER=	bsdcode@disroot.org
7
COMMENT=	Frontend for browsing and launching games
8
WWW=		https://es-de.org
9
10
LICENSE=	MIT
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
BUILD_DEPENDS=	${LOCALBASE}/include/CImg.h:graphics/cimg \
14
		${LOCALBASE}/include/glm/glm.hpp:math/glm \
15
		${LOCALBASE}/include/rapidjson/rapidjson.h:devel/rapidjson
16
LIB_DEPENDS=	libavcodec.so:multimedia/ffmpeg \
17
		libcurl.so:ftp/curl \
18
		libfreeimage.so:graphics/freeimage \
19
		libfreetype.so:print/freetype2 \
20
		libgit2.so:devel/libgit2 \
21
		libpoppler.so:graphics/poppler \
22
		libpugixml.so:textproc/pugixml \
23
		librlottie.so:graphics/rlottie
24
25
USES=		cmake compiler:c++17-lang gl localbase pkgconfig sdl
26
USE_GITLAB=	yes
27
GL_PROJECT=	emulationstation-de
28
USE_GL=		opengl
29
USE_SDL=	sdl2
30
31
CMAKE_ON=	VIDEO_HW_DECODING
32
33
OPTIONS_DEFINE=		DEINIT DOCS
34
OPTIONS_DEFAULT=	DEINIT
35
36
DEINIT_DESC=	Deinit frontend on emulator launch
37
38
DEINIT_CMAKE_BOOL=	DEINIT_ON_LAUNCH
39
40
post-install-DOCS-on:
41
	${MKDIR} ${STAGEDIR}${DOCSDIR}
42
	${INSTALL_DATA} ${WRKSRC}/*.md \
43
		${STAGEDIR}${DOCSDIR}
44
45
.include <bsd.port.mk>
(-)b/emulators/es-de/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1723849371
2
SHA256 (emulationstation-de-v3.0.3.tar.bz2) = b33b7b6540f17136095d594349e9d6d359cf47be660108cd2b1cabf61434276f
3
SIZE (emulationstation-de-v3.0.3.tar.bz2) = 69857580
(-)b/emulators/es-de/files/patch-CMakeLists.txt (+94 lines)
Added Link Here
1
https://gitlab.com/es-de/emulationstation-de/-/issues/1818
2
3
--- CMakeLists.txt.orig	2024-06-14 15:36:56 UTC
4
+++ CMakeLists.txt
5
@@ -139,6 +139,8 @@ elseif(NOT EMSCRIPTEN AND NOT ANDROID)
6
     find_package(Libgit2 REQUIRED)
7
     find_package(Pugixml REQUIRED)
8
     find_package(SDL2 REQUIRED)
9
+    pkg_check_modules(rapidjson REQUIRED RapidJSON)
10
+    pkg_check_modules(rlottie REQUIRED rlottie)
11
 endif()
12
 
13
 # Add libCEC support.
14
@@ -180,8 +182,7 @@ if(CMAKE_BUILD_TYPE MATCHES Debug)
15
     if(CMAKE_CXX_COMPILER_ID MATCHES MSVC)
16
         set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++17 /Od /DEBUG:FULL")
17
     else()
18
-        set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -O0 -g3 -Wall -Wpedantic -Wsign-compare -Wnarrowing -Wmissing-field-initializers -Wunused-macros")
19
-        set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O0")
20
+        set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -Wall -Wpedantic -Wsign-compare -Wnarrowing -Wmissing-field-initializers -Wunused-macros")
21
     endif()
22
     # If using Clang, then add additional debug data needed by GDB.
23
     # Comment this out if you're using LLDB for debugging as this flag makes the binary
24
@@ -204,11 +205,11 @@ else()
25
     if(CMAKE_CXX_COMPILER_ID MATCHES MSVC)
26
         set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DNDEBUG /std:c++17 /O2 /DEBUG:NONE")
27
     else()
28
-        set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -O2 -DNDEBUG -Wall -Wpedantic -Wsign-compare -Wnarrowing -Wmissing-field-initializers -Wunused-macros")
29
+        set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -DNDEBUG -Wall -Wpedantic -Wsign-compare -Wnarrowing -Wmissing-field-initializers -Wunused-macros")
30
         if(APPLE)
31
             set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O2")
32
         else()
33
-            set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O2 -s")
34
+            set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s")
35
         endif()
36
     endif()
37
 endif()
38
@@ -359,7 +360,7 @@ if(DEINIT_ON_LAUNCH)
39
 endif()
40
 
41
 if(DEINIT_ON_LAUNCH)
42
-    if(CMAKE_SYSTEM_NAME MATCHES Linux)
43
+    if(CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME MATCHES FreeBSD)
44
         add_compile_definitions(DEINIT_ON_LAUNCH)
45
         message("-- Building with deinitialization on game launch")
46
     else()
47
@@ -449,11 +450,7 @@ set(COMMON_INCLUDE_DIRS ${CURL_INCLUDE_DIR}
48
 # Include files.
49
 
50
 set(COMMON_INCLUDE_DIRS ${CURL_INCLUDE_DIR}
51
-                        ${CMAKE_CURRENT_SOURCE_DIR}/external/CImg
52
-                        ${CMAKE_CURRENT_SOURCE_DIR}/external/glm
53
                         ${CMAKE_CURRENT_SOURCE_DIR}/external/lunasvg/include
54
-                        ${CMAKE_CURRENT_SOURCE_DIR}/external/rapidjson/include
55
-                        ${CMAKE_CURRENT_SOURCE_DIR}/external/rlottie/inc
56
                         ${CMAKE_CURRENT_SOURCE_DIR}/external/utfcpp/source
57
                         ${CMAKE_CURRENT_SOURCE_DIR}/es-core/src
58
                         ${CMAKE_CURRENT_SOURCE_DIR}/es-pdf-converter/src)
59
@@ -499,7 +496,9 @@ else()
60
                             ${FREETYPE_INCLUDE_DIRS}
61
                             ${GIT2_INCLUDE_PATH}
62
                             ${PUGIXML_INCLUDE_DIRS}
63
-                            ${SDL2_INCLUDE_DIR})
64
+                            ${SDL2_INCLUDE_DIR}
65
+                            ${rapidjson_INCLUDE_DIRS}
66
+                            ${rlottie_INCLUDE_DIRS})
67
 endif()
68
 
69
 # Add libCEC include directory.
70
@@ -614,7 +613,8 @@ else()
71
                          ${FREETYPE_LIBRARIES}
72
                          ${GIT2_LIBRARY}
73
                          ${PUGIXML_LIBRARIES}
74
-                         ${SDL2_LIBRARY})
75
+                         ${SDL2_LIBRARY}
76
+                         ${rlottie_LINK_LIBRARIES})
77
 endif()
78
 
79
 if(NOT WIN32)
80
@@ -624,7 +624,6 @@ if(NOT WIN32)
81
         set(COMMON_LIBRARIES ${COMMON_LIBRARIES} ${PROJECT_SOURCE_DIR}/android_${ANDROID_ABI}/librlottie.a)
82
     else()
83
         set(COMMON_LIBRARIES ${COMMON_LIBRARIES} ${PROJECT_SOURCE_DIR}/liblunasvg.a)
84
-        set(COMMON_LIBRARIES ${COMMON_LIBRARIES} ${PROJECT_SOURCE_DIR}/librlottie.a)
85
     endif()
86
 endif()
87
 
88
@@ -682,6 +681,3 @@ add_dependencies(lunasvg es-pdf-convert)
89
 # Make sure that es-pdf-convert is built first, and then that rlottie is built before es-core.
90
 # Also set lottie2gif to not be built.
91
 add_dependencies(lunasvg es-pdf-convert)
92
-
93
-add_dependencies(es-core rlottie)
94
-set_target_properties(lottie2gif PROPERTIES EXCLUDE_FROM_ALL 1 EXCLUDE_FROM_DEFAULT_BUILD 1)
(-)b/emulators/es-de/files/patch-es-app_CMakeLists.txt (+13 lines)
Added Link Here
1
https://gitlab.com/es-de/emulationstation-de/-/issues/1817
2
3
--- es-app/CMakeLists.txt.orig	2024-08-17 09:21:08 UTC
4
+++ es-app/CMakeLists.txt
5
@@ -258,7 +258,7 @@ elseif(NOT ANDROID)
6
 elseif(NOT ANDROID)
7
     install(TARGETS es-de RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
8
     install(TARGETS es-pdf-convert RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
9
-    if(CMAKE_SYSTEM_NAME MATCHES Linux)
10
+    if(CMAKE_SYSTEM_NAME MATCHES Linux OR CMAKE_SYSTEM_NAME MATCHES FreeBSD)
11
         install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/assets/es-de.6.gz
12
             DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man6)
13
     else()
(-)b/emulators/es-de/files/patch-es-core_src_utils_FileSystemUtil.cpp (+17 lines)
Added Link Here
1
https://gitlab.com/es-de/emulationstation-de/-/issues/1819
2
3
--- es-core/src/utils/FileSystemUtil.cpp.orig	2024-08-18 10:56:32 UTC
4
+++ es-core/src/utils/FileSystemUtil.cpp
5
@@ -378,6 +378,12 @@ namespace Utils
6
             esBinary = exePath;
7
             exePath = getCanonicalPath(exePath);
8
 
9
+            // Fallback to getPathToBinary(argv[0])
10
+            if (exePath.empty()) {
11
+                esBinary = getPathToBinary(path);
12
+                exePath = getCanonicalPath(esBinary);
13
+            }
14
+
15
             // Fallback to argv[0] if everything else fails.
16
             if (exePath.empty()) {
17
                 esBinary = path;
(-)b/emulators/es-de/files/patch-external_CMakeLists.txt (+23 lines)
Added Link Here
1
--- external/CMakeLists.txt.orig	2024-06-14 15:36:56 UTC
2
+++ external/CMakeLists.txt
3
@@ -61,13 +61,9 @@ endif()
4
     set(CMAKE_CXX_FLAGS -pthread)
5
 endif()
6
 
7
-add_subdirectory(rlottie EXCLUDE_FROM_ALL)
8
-
9
 # rlottie generates a lot of annoying compiler warnings that we don't need to show.
10
 if(CMAKE_CXX_COMPILER_ID MATCHES MSVC)
11
     target_compile_options(rlottie PRIVATE "/wd4244" "/wd4251" "/wd4263" "/wd4334" "/wd4267" "/wd4530" "/wd4996")
12
-else()
13
-    target_compile_options(rlottie PRIVATE "-w")
14
 endif()
15
 
16
 if(ANDROID)
17
@@ -79,6 +75,3 @@ endif()
18
                               ${PROJECT_SOURCE_DIR}/android_${ANDROID_ABI})
19
     endif()
20
 endif()
21
-
22
-# Build LunaSVG before rlottie.
23
-add_dependencies(rlottie lunasvg)
(-)b/emulators/es-de/pkg-descr (+11 lines)
Added Link Here
1
ES-DE (formerly known as EmulationStation Desktop Edition) is a frontend for
2
browsing and launching games from your multi-platform collection. It comes
3
preconfigured for use with a large selection of emulators, game engines, game
4
managers and gaming services. It can also run locally installed games and
5
applications. It's fully customizable, so you can easily expand it with support
6
for additional systems and applications.
7
8
It features a modern and attractive user interface, full controller navigation
9
support, supports over 150 different game systems, highly customizable setup, a
10
built-in scraper for downloading game info and game media, full theme support
11
with lots of high-quality themes.
(-)b/emulators/es-de/pkg-message (+16 lines)
Added Link Here
1
[
2
{ type: install
3
  message: <<EOM
4
The port provides the enabled by default DEINIT option. It deinits the renderer,
5
application window and audio system when an emulator is launched. This can save
6
some resources while playing the actual games, but also benefits audiophile
7
users, who set exclusive access to the audio device with
8
9
    sysctl dev.pcm.%d.play.vchans=0
10
11
Without the DEINIT option enabled, ES-DE will keep the audio device open and
12
prevent the launched emulator from also opening it in this case, effectively
13
disabling sound on the emulator.
14
EOM
15
}
16
]
(-)b/emulators/es-de/pkg-plist (-1 / +2310 lines)
Added Link Here
0
- 
1
bin/es-de
2
bin/es-pdf-convert
3
share/applications/org.es_de.frontend.desktop
4
%%PORTDOCS%%%%DOCSDIR%%/ANDROID-DEV.md
5
%%PORTDOCS%%%%DOCSDIR%%/ANDROID.md
6
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.md
7
%%PORTDOCS%%%%DOCSDIR%%/CREDITS.md
8
%%PORTDOCS%%%%DOCSDIR%%/FAQ-ANDROID.md
9
%%PORTDOCS%%%%DOCSDIR%%/FAQ.md
10
%%PORTDOCS%%%%DOCSDIR%%/INSTALL-DEV.md
11
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.md
12
%%PORTDOCS%%%%DOCSDIR%%/README.md
13
%%PORTDOCS%%%%DOCSDIR%%/ROADMAP.md
14
%%PORTDOCS%%%%DOCSDIR%%/THEMES-DEV.md
15
%%PORTDOCS%%%%DOCSDIR%%/THEMES.md
16
%%PORTDOCS%%%%DOCSDIR%%/USERGUIDE-DEV.md
17
%%PORTDOCS%%%%DOCSDIR%%/USERGUIDE.md
18
%%DATADIR%%/LICENSE
19
%%DATADIR%%/licenses/Akrobat_Fontfabric.pdf
20
%%DATADIR%%/licenses/CImg
21
%%DATADIR%%/licenses/DejaVu
22
%%DATADIR%%/licenses/DroidSans
23
%%DATADIR%%/licenses/FFmpeg
24
%%DATADIR%%/licenses/FontAwesome
25
%%DATADIR%%/licenses/Freesound_CC0
26
%%DATADIR%%/licenses/Freesound_CCBY
27
%%DATADIR%%/licenses/GLEW
28
%%DATADIR%%/licenses/GLM
29
%%DATADIR%%/licenses/GNUFreeFont
30
%%DATADIR%%/licenses/LunaSVG
31
%%DATADIR%%/licenses/MAME
32
%%DATADIR%%/licenses/Nanum
33
%%DATADIR%%/licenses/NotoEmoji
34
%%DATADIR%%/licenses/Ogg
35
%%DATADIR%%/licenses/OpenSans
36
%%DATADIR%%/licenses/Opus
37
%%DATADIR%%/licenses/Poppler
38
%%DATADIR%%/licenses/UTF8-CPP
39
%%DATADIR%%/licenses/Vorbis
40
%%DATADIR%%/licenses/libgit2
41
%%DATADIR%%/licenses/libvpx
42
%%DATADIR%%/licenses/linear-es-de
43
%%DATADIR%%/licenses/modern-es-de
44
%%DATADIR%%/licenses/modern-es-de_nsoicons
45
%%DATADIR%%/licenses/rlottie
46
%%DATADIR%%/licenses/slate-es-de
47
%%DATADIR%%/licenses/ubuntu-font-licence-1.0
48
%%DATADIR%%/resources/MAME/mamebioses.xml
49
%%DATADIR%%/resources/MAME/mamedevices.xml
50
%%DATADIR%%/resources/MAME/mamenames.xml
51
%%DATADIR%%/resources/certificates/curl-ca-bundle.crt
52
%%DATADIR%%/resources/controllers/es_controller_mappings.cfg
53
%%DATADIR%%/resources/fonts/Akrobat-Bold.ttf
54
%%DATADIR%%/resources/fonts/Akrobat-Regular.ttf
55
%%DATADIR%%/resources/fonts/Akrobat-SemiBold.ttf
56
%%DATADIR%%/resources/fonts/DejaVuSans.ttf
57
%%DATADIR%%/resources/fonts/DroidSansFallbackFull.ttf
58
%%DATADIR%%/resources/fonts/FreeMono.ttf
59
%%DATADIR%%/resources/fonts/NanumMyeongjo.ttf
60
%%DATADIR%%/resources/fonts/NotoEmoji.ttf
61
%%DATADIR%%/resources/fonts/Ubuntu-C.ttf
62
%%DATADIR%%/resources/fonts/fontawesome-webfont.ttf
63
%%DATADIR%%/resources/graphics/arrow.svg
64
%%DATADIR%%/resources/graphics/badge_altemulator.svg
65
%%DATADIR%%/resources/graphics/badge_broken.svg
66
%%DATADIR%%/resources/graphics/badge_collection.svg
67
%%DATADIR%%/resources/graphics/badge_completed.svg
68
%%DATADIR%%/resources/graphics/badge_controller.svg
69
%%DATADIR%%/resources/graphics/badge_favorite.svg
70
%%DATADIR%%/resources/graphics/badge_folder.svg
71
%%DATADIR%%/resources/graphics/badge_folderlink_overlay.svg
72
%%DATADIR%%/resources/graphics/badge_kidgame.svg
73
%%DATADIR%%/resources/graphics/badge_manual.svg
74
%%DATADIR%%/resources/graphics/busy_0.svg
75
%%DATADIR%%/resources/graphics/busy_1.svg
76
%%DATADIR%%/resources/graphics/busy_2.svg
77
%%DATADIR%%/resources/graphics/busy_3.svg
78
%%DATADIR%%/resources/graphics/button.svg
79
%%DATADIR%%/resources/graphics/button_filled.svg
80
%%DATADIR%%/resources/graphics/checkbox_checked.svg
81
%%DATADIR%%/resources/graphics/checkbox_unchecked.svg
82
%%DATADIR%%/resources/graphics/controllers/flight_stick_generic.svg
83
%%DATADIR%%/resources/graphics/controllers/gamepad_generic.svg
84
%%DATADIR%%/resources/graphics/controllers/gamepad_nintendo_64.svg
85
%%DATADIR%%/resources/graphics/controllers/gamepad_nintendo_gamecube.svg
86
%%DATADIR%%/resources/graphics/controllers/gamepad_nintendo_nes.svg
87
%%DATADIR%%/resources/graphics/controllers/gamepad_nintendo_snes.svg
88
%%DATADIR%%/resources/graphics/controllers/gamepad_playstation.svg
89
%%DATADIR%%/resources/graphics/controllers/gamepad_sega_dreamcast.svg
90
%%DATADIR%%/resources/graphics/controllers/gamepad_sega_master_system.svg
91
%%DATADIR%%/resources/graphics/controllers/gamepad_sega_md_3_buttons.svg
92
%%DATADIR%%/resources/graphics/controllers/gamepad_sega_md_6_buttons.svg
93
%%DATADIR%%/resources/graphics/controllers/gamepad_xbox.svg
94
%%DATADIR%%/resources/graphics/controllers/joycon_left_or_right_nintendo.svg
95
%%DATADIR%%/resources/graphics/controllers/joycon_pair_nintendo.svg
96
%%DATADIR%%/resources/graphics/controllers/joystick_arcade_1_button.svg
97
%%DATADIR%%/resources/graphics/controllers/joystick_arcade_2_buttons.svg
98
%%DATADIR%%/resources/graphics/controllers/joystick_arcade_3_buttons.svg
99
%%DATADIR%%/resources/graphics/controllers/joystick_arcade_4_buttons.svg
100
%%DATADIR%%/resources/graphics/controllers/joystick_arcade_5_buttons.svg
101
%%DATADIR%%/resources/graphics/controllers/joystick_arcade_6_buttons.svg
102
%%DATADIR%%/resources/graphics/controllers/joystick_arcade_no_buttons.svg
103
%%DATADIR%%/resources/graphics/controllers/joystick_arcade_no_buttons_twin.svg
104
%%DATADIR%%/resources/graphics/controllers/joystick_generic.svg
105
%%DATADIR%%/resources/graphics/controllers/keyboard_and_mouse_generic.svg
106
%%DATADIR%%/resources/graphics/controllers/keyboard_generic.svg
107
%%DATADIR%%/resources/graphics/controllers/lightgun_generic.svg
108
%%DATADIR%%/resources/graphics/controllers/lightgun_nintendo.svg
109
%%DATADIR%%/resources/graphics/controllers/mouse_amiga.svg
110
%%DATADIR%%/resources/graphics/controllers/mouse_generic.svg
111
%%DATADIR%%/resources/graphics/controllers/spinner_generic.svg
112
%%DATADIR%%/resources/graphics/controllers/steering_wheel_generic.svg
113
%%DATADIR%%/resources/graphics/controllers/trackball_generic.svg
114
%%DATADIR%%/resources/graphics/controllers/unknown.svg
115
%%DATADIR%%/resources/graphics/controllers/wii_remote_and_nunchuk_nintendo.svg
116
%%DATADIR%%/resources/graphics/controllers/wii_remote_nintendo.svg
117
%%DATADIR%%/resources/graphics/controllers/xbox_kinect.svg
118
%%DATADIR%%/resources/graphics/frame.png
119
%%DATADIR%%/resources/graphics/frame.svg
120
%%DATADIR%%/resources/graphics/help/button_a_PS.svg
121
%%DATADIR%%/resources/graphics/help/button_a_SNES.svg
122
%%DATADIR%%/resources/graphics/help/button_a_XBOX.svg
123
%%DATADIR%%/resources/graphics/help/button_a_switch.svg
124
%%DATADIR%%/resources/graphics/help/button_b_PS.svg
125
%%DATADIR%%/resources/graphics/help/button_b_SNES.svg
126
%%DATADIR%%/resources/graphics/help/button_b_XBOX.svg
127
%%DATADIR%%/resources/graphics/help/button_b_switch.svg
128
%%DATADIR%%/resources/graphics/help/button_back_PS123.svg
129
%%DATADIR%%/resources/graphics/help/button_back_PS4.svg
130
%%DATADIR%%/resources/graphics/help/button_back_PS5.svg
131
%%DATADIR%%/resources/graphics/help/button_back_SNES.svg
132
%%DATADIR%%/resources/graphics/help/button_back_XBOX.svg
133
%%DATADIR%%/resources/graphics/help/button_back_XBOX360.svg
134
%%DATADIR%%/resources/graphics/help/button_back_switch.svg
135
%%DATADIR%%/resources/graphics/help/button_l.svg
136
%%DATADIR%%/resources/graphics/help/button_lr.svg
137
%%DATADIR%%/resources/graphics/help/button_lt.svg
138
%%DATADIR%%/resources/graphics/help/button_ltrt.svg
139
%%DATADIR%%/resources/graphics/help/button_r.svg
140
%%DATADIR%%/resources/graphics/help/button_rt.svg
141
%%DATADIR%%/resources/graphics/help/button_start_PS123.svg
142
%%DATADIR%%/resources/graphics/help/button_start_PS4.svg
143
%%DATADIR%%/resources/graphics/help/button_start_PS5.svg
144
%%DATADIR%%/resources/graphics/help/button_start_SNES.svg
145
%%DATADIR%%/resources/graphics/help/button_start_XBOX.svg
146
%%DATADIR%%/resources/graphics/help/button_start_XBOX360.svg
147
%%DATADIR%%/resources/graphics/help/button_start_switch.svg
148
%%DATADIR%%/resources/graphics/help/button_x_PS.svg
149
%%DATADIR%%/resources/graphics/help/button_x_SNES.svg
150
%%DATADIR%%/resources/graphics/help/button_x_XBOX.svg
151
%%DATADIR%%/resources/graphics/help/button_x_switch.svg
152
%%DATADIR%%/resources/graphics/help/button_y_PS.svg
153
%%DATADIR%%/resources/graphics/help/button_y_SNES.svg
154
%%DATADIR%%/resources/graphics/help/button_y_XBOX.svg
155
%%DATADIR%%/resources/graphics/help/button_y_switch.svg
156
%%DATADIR%%/resources/graphics/help/dpad_all.svg
157
%%DATADIR%%/resources/graphics/help/dpad_down.svg
158
%%DATADIR%%/resources/graphics/help/dpad_left.svg
159
%%DATADIR%%/resources/graphics/help/dpad_leftright.svg
160
%%DATADIR%%/resources/graphics/help/dpad_right.svg
161
%%DATADIR%%/resources/graphics/help/dpad_up.svg
162
%%DATADIR%%/resources/graphics/help/dpad_updown.svg
163
%%DATADIR%%/resources/graphics/help/mbuttons_a_PS.svg
164
%%DATADIR%%/resources/graphics/help/mbuttons_a_SNES.svg
165
%%DATADIR%%/resources/graphics/help/mbuttons_a_XBOX.svg
166
%%DATADIR%%/resources/graphics/help/mbuttons_a_switch.svg
167
%%DATADIR%%/resources/graphics/help/mbuttons_b_PS.svg
168
%%DATADIR%%/resources/graphics/help/mbuttons_b_SNES.svg
169
%%DATADIR%%/resources/graphics/help/mbuttons_b_XBOX.svg
170
%%DATADIR%%/resources/graphics/help/mbuttons_b_switch.svg
171
%%DATADIR%%/resources/graphics/help/mbuttons_x_PS.svg
172
%%DATADIR%%/resources/graphics/help/mbuttons_x_SNES.svg
173
%%DATADIR%%/resources/graphics/help/mbuttons_x_XBOX.svg
174
%%DATADIR%%/resources/graphics/help/mbuttons_x_switch.svg
175
%%DATADIR%%/resources/graphics/help/mbuttons_y_PS.svg
176
%%DATADIR%%/resources/graphics/help/mbuttons_y_SNES.svg
177
%%DATADIR%%/resources/graphics/help/mbuttons_y_XBOX.svg
178
%%DATADIR%%/resources/graphics/help/mbuttons_y_switch.svg
179
%%DATADIR%%/resources/graphics/help/thumbstick.svg
180
%%DATADIR%%/resources/graphics/help/thumbstick_click.svg
181
%%DATADIR%%/resources/graphics/help/thumbstick_down.svg
182
%%DATADIR%%/resources/graphics/help/thumbstick_left.svg
183
%%DATADIR%%/resources/graphics/help/thumbstick_right.svg
184
%%DATADIR%%/resources/graphics/help/thumbstick_up.svg
185
%%DATADIR%%/resources/graphics/off.svg
186
%%DATADIR%%/resources/graphics/on.svg
187
%%DATADIR%%/resources/graphics/option_arrow.svg
188
%%DATADIR%%/resources/graphics/overlay/button_a.svg
189
%%DATADIR%%/resources/graphics/overlay/button_b.svg
190
%%DATADIR%%/resources/graphics/overlay/button_back.svg
191
%%DATADIR%%/resources/graphics/overlay/button_dpad.svg
192
%%DATADIR%%/resources/graphics/overlay/button_shoulder_l.svg
193
%%DATADIR%%/resources/graphics/overlay/button_shoulder_r.svg
194
%%DATADIR%%/resources/graphics/overlay/button_start.svg
195
%%DATADIR%%/resources/graphics/overlay/button_trigger_l.svg
196
%%DATADIR%%/resources/graphics/overlay/button_trigger_r.svg
197
%%DATADIR%%/resources/graphics/overlay/button_x.svg
198
%%DATADIR%%/resources/graphics/overlay/button_y.svg
199
%%DATADIR%%/resources/graphics/scroll_down.svg
200
%%DATADIR%%/resources/graphics/scroll_up.svg
201
%%DATADIR%%/resources/graphics/slider_knob.svg
202
%%DATADIR%%/resources/graphics/splash.svg
203
%%DATADIR%%/resources/graphics/star_filled.svg
204
%%DATADIR%%/resources/graphics/star_unfilled.svg
205
%%DATADIR%%/resources/graphics/textinput.svg
206
%%DATADIR%%/resources/graphics/textinput_focused.svg
207
%%DATADIR%%/resources/graphics/white.png
208
%%DATADIR%%/resources/graphics/window_icon_256.png
209
%%DATADIR%%/resources/shaders/glsl/blur_horizontal.glsl
210
%%DATADIR%%/resources/shaders/glsl/blur_vertical.glsl
211
%%DATADIR%%/resources/shaders/glsl/core.glsl
212
%%DATADIR%%/resources/shaders/glsl/scanlines.glsl
213
%%DATADIR%%/resources/sorting/hwtype_year/es_systems_sorting.xml
214
%%DATADIR%%/resources/sorting/manufacturer_hwtype_year/es_systems_sorting.xml
215
%%DATADIR%%/resources/sorting/manufacturer_year/es_systems_sorting.xml
216
%%DATADIR%%/resources/sorting/year/es_systems_sorting.xml
217
%%DATADIR%%/resources/sounds/back.wav
218
%%DATADIR%%/resources/sounds/favorite.wav
219
%%DATADIR%%/resources/sounds/launch.wav
220
%%DATADIR%%/resources/sounds/quicksysselect.wav
221
%%DATADIR%%/resources/sounds/scroll.wav
222
%%DATADIR%%/resources/sounds/select.wav
223
%%DATADIR%%/resources/sounds/systembrowse.wav
224
%%DATADIR%%/resources/systems/android/es_find_rules.xml
225
%%DATADIR%%/resources/systems/android/es_systems.xml
226
%%DATADIR%%/resources/systems/linux/es_find_rules.xml
227
%%DATADIR%%/resources/systems/linux/es_systems.xml
228
%%DATADIR%%/resources/systems/macos/es_find_rules.xml
229
%%DATADIR%%/resources/systems/macos/es_systems.xml
230
%%DATADIR%%/resources/systems/unix/es_find_rules.xml
231
%%DATADIR%%/resources/systems/unix/es_systems.xml
232
%%DATADIR%%/resources/systems/windows/es_find_rules.xml
233
%%DATADIR%%/resources/systems/windows/es_find_rules_portable.xml
234
%%DATADIR%%/resources/systems/windows/es_systems.xml
235
%%DATADIR%%/themes/linear-es-de/CREDITS.md
236
%%DATADIR%%/themes/linear-es-de/LICENSE
237
%%DATADIR%%/themes/linear-es-de/README.md
238
%%DATADIR%%/themes/linear-es-de/aspect-ratio-16-10.xml
239
%%DATADIR%%/themes/linear-es-de/aspect-ratio-16-9.xml
240
%%DATADIR%%/themes/linear-es-de/aspect-ratio-21-9.xml
241
%%DATADIR%%/themes/linear-es-de/aspect-ratio-4-3.xml
242
%%DATADIR%%/themes/linear-es-de/assets/badges/badge-altemulator.svg
243
%%DATADIR%%/themes/linear-es-de/assets/badges/badge-broken.svg
244
%%DATADIR%%/themes/linear-es-de/assets/badges/badge-collection.svg
245
%%DATADIR%%/themes/linear-es-de/assets/badges/badge-completed.svg
246
%%DATADIR%%/themes/linear-es-de/assets/badges/badge-controller.svg
247
%%DATADIR%%/themes/linear-es-de/assets/badges/badge-favorite.svg
248
%%DATADIR%%/themes/linear-es-de/assets/badges/badge-folder.svg
249
%%DATADIR%%/themes/linear-es-de/assets/badges/badge-kidgame.svg
250
%%DATADIR%%/themes/linear-es-de/assets/badges/badge-manual.svg
251
%%DATADIR%%/themes/linear-es-de/assets/fonts/Gilroy-Light.ttf
252
%%DATADIR%%/themes/linear-es-de/assets/fonts/Oxygen-Regular.ttf
253
%%DATADIR%%/themes/linear-es-de/assets/images/gradient.svg
254
%%DATADIR%%/themes/linear-es-de/assets/images/icon-players.svg
255
%%DATADIR%%/themes/linear-es-de/assets/images/icon-%%CMAKE_BUILD_TYPE%%-date.svg
256
%%DATADIR%%/themes/linear-es-de/assets/images/pixel.png
257
%%DATADIR%%/themes/linear-es-de/auto-allgames/theme.xml
258
%%DATADIR%%/themes/linear-es-de/auto-favorites/theme.xml
259
%%DATADIR%%/themes/linear-es-de/auto-lastplayed/theme.xml
260
%%DATADIR%%/themes/linear-es-de/capabilities.xml
261
%%DATADIR%%/themes/linear-es-de/colors.xml
262
%%DATADIR%%/themes/linear-es-de/custom-collections/theme.xml
263
%%DATADIR%%/themes/linear-es-de/system/logos/3do.svg
264
%%DATADIR%%/themes/linear-es-de/system/logos/adam.svg
265
%%DATADIR%%/themes/linear-es-de/system/logos/ags.svg
266
%%DATADIR%%/themes/linear-es-de/system/logos/amiga.svg
267
%%DATADIR%%/themes/linear-es-de/system/logos/amiga1200.svg
268
%%DATADIR%%/themes/linear-es-de/system/logos/amiga600.svg
269
%%DATADIR%%/themes/linear-es-de/system/logos/amigacd32.svg
270
%%DATADIR%%/themes/linear-es-de/system/logos/amstradcpc.svg
271
%%DATADIR%%/themes/linear-es-de/system/logos/android.svg
272
%%DATADIR%%/themes/linear-es-de/system/logos/androidapps.svg
273
%%DATADIR%%/themes/linear-es-de/system/logos/androidgames.svg
274
%%DATADIR%%/themes/linear-es-de/system/logos/apple2.svg
275
%%DATADIR%%/themes/linear-es-de/system/logos/apple2gs.svg
276
%%DATADIR%%/themes/linear-es-de/system/logos/arcade.svg
277
%%DATADIR%%/themes/linear-es-de/system/logos/arcadia.svg
278
%%DATADIR%%/themes/linear-es-de/system/logos/archimedes.svg
279
%%DATADIR%%/themes/linear-es-de/system/logos/arduboy.svg
280
%%DATADIR%%/themes/linear-es-de/system/logos/astrocade.svg
281
%%DATADIR%%/themes/linear-es-de/system/logos/atari2600.svg
282
%%DATADIR%%/themes/linear-es-de/system/logos/atari5200.svg
283
%%DATADIR%%/themes/linear-es-de/system/logos/atari7800.svg
284
%%DATADIR%%/themes/linear-es-de/system/logos/atari800.svg
285
%%DATADIR%%/themes/linear-es-de/system/logos/atarijaguar.svg
286
%%DATADIR%%/themes/linear-es-de/system/logos/atarijaguarcd.svg
287
%%DATADIR%%/themes/linear-es-de/system/logos/atarilynx.svg
288
%%DATADIR%%/themes/linear-es-de/system/logos/atarist.svg
289
%%DATADIR%%/themes/linear-es-de/system/logos/atarixe.svg
290
%%DATADIR%%/themes/linear-es-de/system/logos/atomiswave.svg
291
%%DATADIR%%/themes/linear-es-de/system/logos/auto-allgames.svg
292
%%DATADIR%%/themes/linear-es-de/system/logos/auto-favorites.svg
293
%%DATADIR%%/themes/linear-es-de/system/logos/auto-lastplayed.svg
294
%%DATADIR%%/themes/linear-es-de/system/logos/bbcmicro.svg
295
%%DATADIR%%/themes/linear-es-de/system/logos/c64.svg
296
%%DATADIR%%/themes/linear-es-de/system/logos/cavestory.svg
297
%%DATADIR%%/themes/linear-es-de/system/logos/cdimono1.svg
298
%%DATADIR%%/themes/linear-es-de/system/logos/cdtv.svg
299
%%DATADIR%%/themes/linear-es-de/system/logos/chailove.svg
300
%%DATADIR%%/themes/linear-es-de/system/logos/channelf.svg
301
%%DATADIR%%/themes/linear-es-de/system/logos/coco.svg
302
%%DATADIR%%/themes/linear-es-de/system/logos/colecovision.svg
303
%%DATADIR%%/themes/linear-es-de/system/logos/consolearcade.svg
304
%%DATADIR%%/themes/linear-es-de/system/logos/cps.svg
305
%%DATADIR%%/themes/linear-es-de/system/logos/cps1.svg
306
%%DATADIR%%/themes/linear-es-de/system/logos/cps2.svg
307
%%DATADIR%%/themes/linear-es-de/system/logos/cps3.svg
308
%%DATADIR%%/themes/linear-es-de/system/logos/crvision.svg
309
%%DATADIR%%/themes/linear-es-de/system/logos/custom-collections.svg
310
%%DATADIR%%/themes/linear-es-de/system/logos/daphne.svg
311
%%DATADIR%%/themes/linear-es-de/system/logos/desktop.svg
312
%%DATADIR%%/themes/linear-es-de/system/logos/doom.svg
313
%%DATADIR%%/themes/linear-es-de/system/logos/dos.svg
314
%%DATADIR%%/themes/linear-es-de/system/logos/dragon32.svg
315
%%DATADIR%%/themes/linear-es-de/system/logos/dreamcast.svg
316
%%DATADIR%%/themes/linear-es-de/system/logos/easyrpg.svg
317
%%DATADIR%%/themes/linear-es-de/system/logos/electron.svg
318
%%DATADIR%%/themes/linear-es-de/system/logos/emulators.svg
319
%%DATADIR%%/themes/linear-es-de/system/logos/epic.svg
320
%%DATADIR%%/themes/linear-es-de/system/logos/famicom.svg
321
%%DATADIR%%/themes/linear-es-de/system/logos/fba.svg
322
%%DATADIR%%/themes/linear-es-de/system/logos/fbneo.svg
323
%%DATADIR%%/themes/linear-es-de/system/logos/fds.svg
324
%%DATADIR%%/themes/linear-es-de/system/logos/flash.svg
325
%%DATADIR%%/themes/linear-es-de/system/logos/fm7.svg
326
%%DATADIR%%/themes/linear-es-de/system/logos/fmtowns.svg
327
%%DATADIR%%/themes/linear-es-de/system/logos/fpinball.svg
328
%%DATADIR%%/themes/linear-es-de/system/logos/gamate.svg
329
%%DATADIR%%/themes/linear-es-de/system/logos/gameandwatch.svg
330
%%DATADIR%%/themes/linear-es-de/system/logos/gamecom.svg
331
%%DATADIR%%/themes/linear-es-de/system/logos/gamegear.svg
332
%%DATADIR%%/themes/linear-es-de/system/logos/gb.svg
333
%%DATADIR%%/themes/linear-es-de/system/logos/gba.svg
334
%%DATADIR%%/themes/linear-es-de/system/logos/gbc.svg
335
%%DATADIR%%/themes/linear-es-de/system/logos/gc.svg
336
%%DATADIR%%/themes/linear-es-de/system/logos/genesis.svg
337
%%DATADIR%%/themes/linear-es-de/system/logos/gmaster.svg
338
%%DATADIR%%/themes/linear-es-de/system/logos/gx4000.svg
339
%%DATADIR%%/themes/linear-es-de/system/logos/intellivision.svg
340
%%DATADIR%%/themes/linear-es-de/system/logos/j2me.svg
341
%%DATADIR%%/themes/linear-es-de/system/logos/kodi.svg
342
%%DATADIR%%/themes/linear-es-de/system/logos/laserdisc.svg
343
%%DATADIR%%/themes/linear-es-de/system/logos/lcdgames.svg
344
%%DATADIR%%/themes/linear-es-de/system/logos/lowresnx.svg
345
%%DATADIR%%/themes/linear-es-de/system/logos/lutris.svg
346
%%DATADIR%%/themes/linear-es-de/system/logos/lutro.svg
347
%%DATADIR%%/themes/linear-es-de/system/logos/macintosh.svg
348
%%DATADIR%%/themes/linear-es-de/system/logos/mame-advmame.svg
349
%%DATADIR%%/themes/linear-es-de/system/logos/mame.svg
350
%%DATADIR%%/themes/linear-es-de/system/logos/mastersystem.svg
351
%%DATADIR%%/themes/linear-es-de/system/logos/megacd.svg
352
%%DATADIR%%/themes/linear-es-de/system/logos/megacdjp.svg
353
%%DATADIR%%/themes/linear-es-de/system/logos/megadrive.svg
354
%%DATADIR%%/themes/linear-es-de/system/logos/megadrivejp.svg
355
%%DATADIR%%/themes/linear-es-de/system/logos/megaduck.svg
356
%%DATADIR%%/themes/linear-es-de/system/logos/mess.svg
357
%%DATADIR%%/themes/linear-es-de/system/logos/model2.svg
358
%%DATADIR%%/themes/linear-es-de/system/logos/model3.svg
359
%%DATADIR%%/themes/linear-es-de/system/logos/moonlight.svg
360
%%DATADIR%%/themes/linear-es-de/system/logos/moto.svg
361
%%DATADIR%%/themes/linear-es-de/system/logos/msx.svg
362
%%DATADIR%%/themes/linear-es-de/system/logos/msx1.svg
363
%%DATADIR%%/themes/linear-es-de/system/logos/msx2.svg
364
%%DATADIR%%/themes/linear-es-de/system/logos/msxturbor.svg
365
%%DATADIR%%/themes/linear-es-de/system/logos/mugen.svg
366
%%DATADIR%%/themes/linear-es-de/system/logos/multivision.svg
367
%%DATADIR%%/themes/linear-es-de/system/logos/n3ds.svg
368
%%DATADIR%%/themes/linear-es-de/system/logos/n64.svg
369
%%DATADIR%%/themes/linear-es-de/system/logos/n64dd.svg
370
%%DATADIR%%/themes/linear-es-de/system/logos/naomi.svg
371
%%DATADIR%%/themes/linear-es-de/system/logos/naomi2.svg
372
%%DATADIR%%/themes/linear-es-de/system/logos/naomigd.svg
373
%%DATADIR%%/themes/linear-es-de/system/logos/nds.svg
374
%%DATADIR%%/themes/linear-es-de/system/logos/neogeo.svg
375
%%DATADIR%%/themes/linear-es-de/system/logos/neogeocd.svg
376
%%DATADIR%%/themes/linear-es-de/system/logos/neogeocdjp.svg
377
%%DATADIR%%/themes/linear-es-de/system/logos/nes.svg
378
%%DATADIR%%/themes/linear-es-de/system/logos/ngage.svg
379
%%DATADIR%%/themes/linear-es-de/system/logos/ngp.svg
380
%%DATADIR%%/themes/linear-es-de/system/logos/ngpc.svg
381
%%DATADIR%%/themes/linear-es-de/system/logos/now-playing.svg
382
%%DATADIR%%/themes/linear-es-de/system/logos/odyssey2.svg
383
%%DATADIR%%/themes/linear-es-de/system/logos/openbor.svg
384
%%DATADIR%%/themes/linear-es-de/system/logos/oric.svg
385
%%DATADIR%%/themes/linear-es-de/system/logos/palm.svg
386
%%DATADIR%%/themes/linear-es-de/system/logos/pc.svg
387
%%DATADIR%%/themes/linear-es-de/system/logos/pc88.svg
388
%%DATADIR%%/themes/linear-es-de/system/logos/pc98.svg
389
%%DATADIR%%/themes/linear-es-de/system/logos/pcarcade.svg
390
%%DATADIR%%/themes/linear-es-de/system/logos/pcengine.svg
391
%%DATADIR%%/themes/linear-es-de/system/logos/pcenginecd.svg
392
%%DATADIR%%/themes/linear-es-de/system/logos/pcfx.svg
393
%%DATADIR%%/themes/linear-es-de/system/logos/pico8.svg
394
%%DATADIR%%/themes/linear-es-de/system/logos/plus4.svg
395
%%DATADIR%%/themes/linear-es-de/system/logos/pokemini.svg
396
%%DATADIR%%/themes/linear-es-de/system/logos/ports.svg
397
%%DATADIR%%/themes/linear-es-de/system/logos/ps2.svg
398
%%DATADIR%%/themes/linear-es-de/system/logos/ps3.svg
399
%%DATADIR%%/themes/linear-es-de/system/logos/ps4.svg
400
%%DATADIR%%/themes/linear-es-de/system/logos/psp.svg
401
%%DATADIR%%/themes/linear-es-de/system/logos/psvita.svg
402
%%DATADIR%%/themes/linear-es-de/system/logos/psx.svg
403
%%DATADIR%%/themes/linear-es-de/system/logos/pv1000.svg
404
%%DATADIR%%/themes/linear-es-de/system/logos/quake.svg
405
%%DATADIR%%/themes/linear-es-de/system/logos/samcoupe.svg
406
%%DATADIR%%/themes/linear-es-de/system/logos/satellaview.svg
407
%%DATADIR%%/themes/linear-es-de/system/logos/saturn.svg
408
%%DATADIR%%/themes/linear-es-de/system/logos/saturnjp.svg
409
%%DATADIR%%/themes/linear-es-de/system/logos/scummvm.svg
410
%%DATADIR%%/themes/linear-es-de/system/logos/scv.svg
411
%%DATADIR%%/themes/linear-es-de/system/logos/sega32x.svg
412
%%DATADIR%%/themes/linear-es-de/system/logos/sega32xjp.svg
413
%%DATADIR%%/themes/linear-es-de/system/logos/sega32xna.svg
414
%%DATADIR%%/themes/linear-es-de/system/logos/segacd.svg
415
%%DATADIR%%/themes/linear-es-de/system/logos/sfc.svg
416
%%DATADIR%%/themes/linear-es-de/system/logos/sg-1000.svg
417
%%DATADIR%%/themes/linear-es-de/system/logos/sgb.svg
418
%%DATADIR%%/themes/linear-es-de/system/logos/snes.svg
419
%%DATADIR%%/themes/linear-es-de/system/logos/snesna.svg
420
%%DATADIR%%/themes/linear-es-de/system/logos/solarus.svg
421
%%DATADIR%%/themes/linear-es-de/system/logos/spectravideo.svg
422
%%DATADIR%%/themes/linear-es-de/system/logos/steam.svg
423
%%DATADIR%%/themes/linear-es-de/system/logos/stratagus.svg
424
%%DATADIR%%/themes/linear-es-de/system/logos/stv.svg
425
%%DATADIR%%/themes/linear-es-de/system/logos/sufami.svg
426
%%DATADIR%%/themes/linear-es-de/system/logos/supergrafx.svg
427
%%DATADIR%%/themes/linear-es-de/system/logos/supervision.svg
428
%%DATADIR%%/themes/linear-es-de/system/logos/supracan.svg
429
%%DATADIR%%/themes/linear-es-de/system/logos/switch.svg
430
%%DATADIR%%/themes/linear-es-de/system/logos/symbian.svg
431
%%DATADIR%%/themes/linear-es-de/system/logos/tanodragon.svg
432
%%DATADIR%%/themes/linear-es-de/system/logos/tg-cd.svg
433
%%DATADIR%%/themes/linear-es-de/system/logos/tg16.svg
434
%%DATADIR%%/themes/linear-es-de/system/logos/ti99.svg
435
%%DATADIR%%/themes/linear-es-de/system/logos/tic80.svg
436
%%DATADIR%%/themes/linear-es-de/system/logos/to8.svg
437
%%DATADIR%%/themes/linear-es-de/system/logos/tools.svg
438
%%DATADIR%%/themes/linear-es-de/system/logos/triforce.svg
439
%%DATADIR%%/themes/linear-es-de/system/logos/trs-80.svg
440
%%DATADIR%%/themes/linear-es-de/system/logos/type-x.svg
441
%%DATADIR%%/themes/linear-es-de/system/logos/uzebox.svg
442
%%DATADIR%%/themes/linear-es-de/system/logos/vectrex.svg
443
%%DATADIR%%/themes/linear-es-de/system/logos/vic20.svg
444
%%DATADIR%%/themes/linear-es-de/system/logos/videopac.svg
445
%%DATADIR%%/themes/linear-es-de/system/logos/virtualboy.svg
446
%%DATADIR%%/themes/linear-es-de/system/logos/vpinball.svg
447
%%DATADIR%%/themes/linear-es-de/system/logos/vsmile.svg
448
%%DATADIR%%/themes/linear-es-de/system/logos/wasm4.svg
449
%%DATADIR%%/themes/linear-es-de/system/logos/wii.svg
450
%%DATADIR%%/themes/linear-es-de/system/logos/wiiu.svg
451
%%DATADIR%%/themes/linear-es-de/system/logos/windows.svg
452
%%DATADIR%%/themes/linear-es-de/system/logos/windows3x.svg
453
%%DATADIR%%/themes/linear-es-de/system/logos/windows9x.svg
454
%%DATADIR%%/themes/linear-es-de/system/logos/wonderswan.svg
455
%%DATADIR%%/themes/linear-es-de/system/logos/wonderswancolor.svg
456
%%DATADIR%%/themes/linear-es-de/system/logos/x1.svg
457
%%DATADIR%%/themes/linear-es-de/system/logos/x68000.svg
458
%%DATADIR%%/themes/linear-es-de/system/logos/xbox.svg
459
%%DATADIR%%/themes/linear-es-de/system/logos/xbox360.svg
460
%%DATADIR%%/themes/linear-es-de/system/logos/zmachine.svg
461
%%DATADIR%%/themes/linear-es-de/system/logos/zx81.svg
462
%%DATADIR%%/themes/linear-es-de/system/logos/zxnext.svg
463
%%DATADIR%%/themes/linear-es-de/system/logos/zxspectrum.svg
464
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/3do.xml
465
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/_default.xml
466
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/adam.xml
467
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/ags.xml
468
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/amiga.xml
469
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/amiga1200.xml
470
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/amiga600.xml
471
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/amigacd32.xml
472
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/amstradcpc.xml
473
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/android.xml
474
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/apple2.xml
475
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/apple2gs.xml
476
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/arcadia.xml
477
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/archimedes.xml
478
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/arduboy.xml
479
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/astrocade.xml
480
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atari2600.xml
481
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atari5200.xml
482
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atari7800.xml
483
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atari800.xml
484
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atarijaguar.xml
485
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atarijaguarcd.xml
486
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atarilynx.xml
487
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atarist.xml
488
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atarixe.xml
489
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/atomiswave.xml
490
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/auto-allgames.xml
491
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/auto-favorites.xml
492
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/auto-lastplayed.xml
493
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/bbcmicro.xml
494
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/c64.xml
495
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/cdimono1.xml
496
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/cdtv.xml
497
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/chailove.xml
498
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/channelf.xml
499
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/coco.xml
500
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/colecovision.xml
501
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/cps.xml
502
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/cps1.xml
503
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/cps2.xml
504
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/cps3.xml
505
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/crvision.xml
506
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/custom-collections.xml
507
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/daphne.xml
508
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/doom.xml
509
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/dos.xml
510
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/dragon32.xml
511
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/dreamcast.xml
512
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/easyrpg.xml
513
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/electron.xml
514
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/famicom.xml
515
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/fba.xml
516
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/fbneo.xml
517
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/fds.xml
518
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/flash.xml
519
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/fm7.xml
520
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/fmtowns.xml
521
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/fpinball.xml
522
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gamate.xml
523
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gameandwatch.xml
524
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gamecom.xml
525
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gamegear.xml
526
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gb.xml
527
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gba.xml
528
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gbc.xml
529
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gc.xml
530
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/genesis.xml
531
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gmaster.xml
532
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/gx4000.xml
533
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/intellivision.xml
534
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/j2me.xml
535
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/kodi.xml
536
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/lowresnx.xml
537
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/lutris.xml
538
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/lutro.xml
539
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/macintosh.xml
540
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/mame-advmame.xml
541
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/mame.xml
542
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/mastersystem.xml
543
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/megacd.xml
544
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/megacdjp.xml
545
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/megadrive.xml
546
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/megadrivejp.xml
547
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/megaduck.xml
548
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/mess.xml
549
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/model2.xml
550
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/model3.xml
551
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/moto.xml
552
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/msx.xml
553
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/msx1.xml
554
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/msx2.xml
555
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/msxturbor.xml
556
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/mugen.xml
557
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/multivision.xml
558
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/n3ds.xml
559
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/n64.xml
560
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/n64dd.xml
561
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/naomi.xml
562
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/naomi2.xml
563
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/naomigd.xml
564
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/nds.xml
565
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/neogeo.xml
566
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/neogeocd.xml
567
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/neogeocdjp.xml
568
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/nes.xml
569
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/ngage.xml
570
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/ngp.xml
571
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/ngpc.xml
572
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/odyssey2.xml
573
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/openbor.xml
574
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/oric.xml
575
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/palm.xml
576
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/pc.xml
577
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/pc88.xml
578
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/pc98.xml
579
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/pcengine.xml
580
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/pcenginecd.xml
581
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/pcfx.xml
582
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/pico8.xml
583
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/playdate.xml
584
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/plus4.xml
585
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/pokemini.xml
586
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/ps2.xml
587
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/ps3.xml
588
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/ps4.xml
589
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/psp.xml
590
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/psvita.xml
591
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/psx.xml
592
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/pv1000.xml
593
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/quake.xml
594
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/samcoupe.xml
595
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/satellaview.xml
596
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/saturn.xml
597
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/saturnjp.xml
598
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/scummvm.xml
599
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/scv.xml
600
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/sega32x.xml
601
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/sega32xjp.xml
602
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/sega32xna.xml
603
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/segacd.xml
604
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/sfc.xml
605
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/sg-1000.xml
606
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/sgb.xml
607
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/snes.xml
608
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/snesna.xml
609
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/solarus.xml
610
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/spectravideo.xml
611
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/stv.xml
612
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/sufami.xml
613
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/supergrafx.xml
614
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/supervision.xml
615
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/supracan.xml
616
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/switch.xml
617
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/symbian.xml
618
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/tanodragon.xml
619
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/tg-cd.xml
620
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/tg16.xml
621
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/ti99.xml
622
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/tic80.xml
623
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/to8.xml
624
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/triforce.xml
625
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/trs-80.xml
626
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/type-x.xml
627
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/uzebox.xml
628
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/vectrex.xml
629
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/vic20.xml
630
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/videopac.xml
631
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/virtualboy.xml
632
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/vpinball.xml
633
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/vsmile.xml
634
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/wasm4.xml
635
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/wii.xml
636
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/wiiu.xml
637
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/windows.xml
638
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/windows3x.xml
639
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/windows9x.xml
640
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/wonderswan.xml
641
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/wonderswancolor.xml
642
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/x1.xml
643
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/x68000.xml
644
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/xbox.xml
645
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/xbox360.xml
646
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/zmachine.xml
647
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/zx81.xml
648
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/zxnext.xml
649
%%DATADIR%%/themes/linear-es-de/system/metadata-custom/zxspectrum.xml
650
%%DATADIR%%/themes/linear-es-de/system/metadata/3do.xml
651
%%DATADIR%%/themes/linear-es-de/system/metadata/README.md
652
%%DATADIR%%/themes/linear-es-de/system/metadata/_default.xml
653
%%DATADIR%%/themes/linear-es-de/system/metadata/adam.xml
654
%%DATADIR%%/themes/linear-es-de/system/metadata/ags.xml
655
%%DATADIR%%/themes/linear-es-de/system/metadata/amiga.xml
656
%%DATADIR%%/themes/linear-es-de/system/metadata/amiga1200.xml
657
%%DATADIR%%/themes/linear-es-de/system/metadata/amiga600.xml
658
%%DATADIR%%/themes/linear-es-de/system/metadata/amigacd32.xml
659
%%DATADIR%%/themes/linear-es-de/system/metadata/amstradcpc.xml
660
%%DATADIR%%/themes/linear-es-de/system/metadata/android.xml
661
%%DATADIR%%/themes/linear-es-de/system/metadata/apple2.xml
662
%%DATADIR%%/themes/linear-es-de/system/metadata/apple2gs.xml
663
%%DATADIR%%/themes/linear-es-de/system/metadata/arcade.xml
664
%%DATADIR%%/themes/linear-es-de/system/metadata/arcadia.xml
665
%%DATADIR%%/themes/linear-es-de/system/metadata/archimedes.xml
666
%%DATADIR%%/themes/linear-es-de/system/metadata/arduboy.xml
667
%%DATADIR%%/themes/linear-es-de/system/metadata/astrocade.xml
668
%%DATADIR%%/themes/linear-es-de/system/metadata/atari2600.xml
669
%%DATADIR%%/themes/linear-es-de/system/metadata/atari5200.xml
670
%%DATADIR%%/themes/linear-es-de/system/metadata/atari7800.xml
671
%%DATADIR%%/themes/linear-es-de/system/metadata/atari800.xml
672
%%DATADIR%%/themes/linear-es-de/system/metadata/atarijaguar.xml
673
%%DATADIR%%/themes/linear-es-de/system/metadata/atarijaguarcd.xml
674
%%DATADIR%%/themes/linear-es-de/system/metadata/atarilynx.xml
675
%%DATADIR%%/themes/linear-es-de/system/metadata/atarist.xml
676
%%DATADIR%%/themes/linear-es-de/system/metadata/atarixe.xml
677
%%DATADIR%%/themes/linear-es-de/system/metadata/atomiswave.xml
678
%%DATADIR%%/themes/linear-es-de/system/metadata/auto-allgames.xml
679
%%DATADIR%%/themes/linear-es-de/system/metadata/auto-favorites.xml
680
%%DATADIR%%/themes/linear-es-de/system/metadata/auto-lastplayed.xml
681
%%DATADIR%%/themes/linear-es-de/system/metadata/bbcmicro.xml
682
%%DATADIR%%/themes/linear-es-de/system/metadata/c64.xml
683
%%DATADIR%%/themes/linear-es-de/system/metadata/cavestory.xml
684
%%DATADIR%%/themes/linear-es-de/system/metadata/cdimono1.xml
685
%%DATADIR%%/themes/linear-es-de/system/metadata/cdtv.xml
686
%%DATADIR%%/themes/linear-es-de/system/metadata/chailove.xml
687
%%DATADIR%%/themes/linear-es-de/system/metadata/channelf.xml
688
%%DATADIR%%/themes/linear-es-de/system/metadata/coco.xml
689
%%DATADIR%%/themes/linear-es-de/system/metadata/colecovision.xml
690
%%DATADIR%%/themes/linear-es-de/system/metadata/completed.xml
691
%%DATADIR%%/themes/linear-es-de/system/metadata/consolearcade.xml
692
%%DATADIR%%/themes/linear-es-de/system/metadata/cps.xml
693
%%DATADIR%%/themes/linear-es-de/system/metadata/cps1.xml
694
%%DATADIR%%/themes/linear-es-de/system/metadata/cps2.xml
695
%%DATADIR%%/themes/linear-es-de/system/metadata/cps3.xml
696
%%DATADIR%%/themes/linear-es-de/system/metadata/crvision.xml
697
%%DATADIR%%/themes/linear-es-de/system/metadata/custom-collections.xml
698
%%DATADIR%%/themes/linear-es-de/system/metadata/daphne.xml
699
%%DATADIR%%/themes/linear-es-de/system/metadata/desktop.xml
700
%%DATADIR%%/themes/linear-es-de/system/metadata/doom.xml
701
%%DATADIR%%/themes/linear-es-de/system/metadata/dos.xml
702
%%DATADIR%%/themes/linear-es-de/system/metadata/dragon32.xml
703
%%DATADIR%%/themes/linear-es-de/system/metadata/dreamcast.xml
704
%%DATADIR%%/themes/linear-es-de/system/metadata/easyrpg.xml
705
%%DATADIR%%/themes/linear-es-de/system/metadata/electron.xml
706
%%DATADIR%%/themes/linear-es-de/system/metadata/emulators.xml
707
%%DATADIR%%/themes/linear-es-de/system/metadata/epic.xml
708
%%DATADIR%%/themes/linear-es-de/system/metadata/famicom.xml
709
%%DATADIR%%/themes/linear-es-de/system/metadata/fba.xml
710
%%DATADIR%%/themes/linear-es-de/system/metadata/fbneo.xml
711
%%DATADIR%%/themes/linear-es-de/system/metadata/fds.xml
712
%%DATADIR%%/themes/linear-es-de/system/metadata/flash.xml
713
%%DATADIR%%/themes/linear-es-de/system/metadata/fm7.xml
714
%%DATADIR%%/themes/linear-es-de/system/metadata/fmtowns.xml
715
%%DATADIR%%/themes/linear-es-de/system/metadata/fpinball.xml
716
%%DATADIR%%/themes/linear-es-de/system/metadata/gamate.xml
717
%%DATADIR%%/themes/linear-es-de/system/metadata/gameandwatch.xml
718
%%DATADIR%%/themes/linear-es-de/system/metadata/gamecom.xml
719
%%DATADIR%%/themes/linear-es-de/system/metadata/gamegear.xml
720
%%DATADIR%%/themes/linear-es-de/system/metadata/gb.xml
721
%%DATADIR%%/themes/linear-es-de/system/metadata/gba.xml
722
%%DATADIR%%/themes/linear-es-de/system/metadata/gbc.xml
723
%%DATADIR%%/themes/linear-es-de/system/metadata/gc.xml
724
%%DATADIR%%/themes/linear-es-de/system/metadata/genesis.xml
725
%%DATADIR%%/themes/linear-es-de/system/metadata/gmaster.xml
726
%%DATADIR%%/themes/linear-es-de/system/metadata/gx4000.xml
727
%%DATADIR%%/themes/linear-es-de/system/metadata/intellivision.xml
728
%%DATADIR%%/themes/linear-es-de/system/metadata/j2me.xml
729
%%DATADIR%%/themes/linear-es-de/system/metadata/kodi.xml
730
%%DATADIR%%/themes/linear-es-de/system/metadata/laserdisc.xml
731
%%DATADIR%%/themes/linear-es-de/system/metadata/lcdgames.xml
732
%%DATADIR%%/themes/linear-es-de/system/metadata/lowresnx.xml
733
%%DATADIR%%/themes/linear-es-de/system/metadata/lutris.xml
734
%%DATADIR%%/themes/linear-es-de/system/metadata/lutro.xml
735
%%DATADIR%%/themes/linear-es-de/system/metadata/macintosh.xml
736
%%DATADIR%%/themes/linear-es-de/system/metadata/mame-advmame.xml
737
%%DATADIR%%/themes/linear-es-de/system/metadata/mame.xml
738
%%DATADIR%%/themes/linear-es-de/system/metadata/mastersystem.xml
739
%%DATADIR%%/themes/linear-es-de/system/metadata/megacd.xml
740
%%DATADIR%%/themes/linear-es-de/system/metadata/megacdjp.xml
741
%%DATADIR%%/themes/linear-es-de/system/metadata/megadrive.xml
742
%%DATADIR%%/themes/linear-es-de/system/metadata/megadrivejp.xml
743
%%DATADIR%%/themes/linear-es-de/system/metadata/megaduck.xml
744
%%DATADIR%%/themes/linear-es-de/system/metadata/mess.xml
745
%%DATADIR%%/themes/linear-es-de/system/metadata/model2.xml
746
%%DATADIR%%/themes/linear-es-de/system/metadata/model3.xml
747
%%DATADIR%%/themes/linear-es-de/system/metadata/moonlight.xml
748
%%DATADIR%%/themes/linear-es-de/system/metadata/moto.xml
749
%%DATADIR%%/themes/linear-es-de/system/metadata/msx.xml
750
%%DATADIR%%/themes/linear-es-de/system/metadata/msx1.xml
751
%%DATADIR%%/themes/linear-es-de/system/metadata/msx2.xml
752
%%DATADIR%%/themes/linear-es-de/system/metadata/msxturbor.xml
753
%%DATADIR%%/themes/linear-es-de/system/metadata/mugen.xml
754
%%DATADIR%%/themes/linear-es-de/system/metadata/multivision.xml
755
%%DATADIR%%/themes/linear-es-de/system/metadata/n3ds.xml
756
%%DATADIR%%/themes/linear-es-de/system/metadata/n64.xml
757
%%DATADIR%%/themes/linear-es-de/system/metadata/n64dd.xml
758
%%DATADIR%%/themes/linear-es-de/system/metadata/naomi.xml
759
%%DATADIR%%/themes/linear-es-de/system/metadata/naomi2.xml
760
%%DATADIR%%/themes/linear-es-de/system/metadata/naomigd.xml
761
%%DATADIR%%/themes/linear-es-de/system/metadata/nds.xml
762
%%DATADIR%%/themes/linear-es-de/system/metadata/neogeo.xml
763
%%DATADIR%%/themes/linear-es-de/system/metadata/neogeocd.xml
764
%%DATADIR%%/themes/linear-es-de/system/metadata/neogeocdjp.xml
765
%%DATADIR%%/themes/linear-es-de/system/metadata/nes.xml
766
%%DATADIR%%/themes/linear-es-de/system/metadata/ngage.xml
767
%%DATADIR%%/themes/linear-es-de/system/metadata/ngp.xml
768
%%DATADIR%%/themes/linear-es-de/system/metadata/ngpc.xml
769
%%DATADIR%%/themes/linear-es-de/system/metadata/now-playing.xml
770
%%DATADIR%%/themes/linear-es-de/system/metadata/odyssey2.xml
771
%%DATADIR%%/themes/linear-es-de/system/metadata/openbor.xml
772
%%DATADIR%%/themes/linear-es-de/system/metadata/oric.xml
773
%%DATADIR%%/themes/linear-es-de/system/metadata/palm.xml
774
%%DATADIR%%/themes/linear-es-de/system/metadata/pc.xml
775
%%DATADIR%%/themes/linear-es-de/system/metadata/pc88.xml
776
%%DATADIR%%/themes/linear-es-de/system/metadata/pc98.xml
777
%%DATADIR%%/themes/linear-es-de/system/metadata/pcarcade.xml
778
%%DATADIR%%/themes/linear-es-de/system/metadata/pcengine.xml
779
%%DATADIR%%/themes/linear-es-de/system/metadata/pcenginecd.xml
780
%%DATADIR%%/themes/linear-es-de/system/metadata/pcfx.xml
781
%%DATADIR%%/themes/linear-es-de/system/metadata/pico8.xml
782
%%DATADIR%%/themes/linear-es-de/system/metadata/playdate.xml
783
%%DATADIR%%/themes/linear-es-de/system/metadata/plus4.xml
784
%%DATADIR%%/themes/linear-es-de/system/metadata/pokemini.xml
785
%%DATADIR%%/themes/linear-es-de/system/metadata/ports.xml
786
%%DATADIR%%/themes/linear-es-de/system/metadata/ps2.xml
787
%%DATADIR%%/themes/linear-es-de/system/metadata/ps3.xml
788
%%DATADIR%%/themes/linear-es-de/system/metadata/ps4.xml
789
%%DATADIR%%/themes/linear-es-de/system/metadata/psp.xml
790
%%DATADIR%%/themes/linear-es-de/system/metadata/psvita.xml
791
%%DATADIR%%/themes/linear-es-de/system/metadata/psx.xml
792
%%DATADIR%%/themes/linear-es-de/system/metadata/pv1000.xml
793
%%DATADIR%%/themes/linear-es-de/system/metadata/quake.xml
794
%%DATADIR%%/themes/linear-es-de/system/metadata/samcoupe.xml
795
%%DATADIR%%/themes/linear-es-de/system/metadata/satellaview.xml
796
%%DATADIR%%/themes/linear-es-de/system/metadata/saturn.xml
797
%%DATADIR%%/themes/linear-es-de/system/metadata/saturnjp.xml
798
%%DATADIR%%/themes/linear-es-de/system/metadata/scummvm.xml
799
%%DATADIR%%/themes/linear-es-de/system/metadata/scv.xml
800
%%DATADIR%%/themes/linear-es-de/system/metadata/sega32x.xml
801
%%DATADIR%%/themes/linear-es-de/system/metadata/sega32xjp.xml
802
%%DATADIR%%/themes/linear-es-de/system/metadata/sega32xna.xml
803
%%DATADIR%%/themes/linear-es-de/system/metadata/segacd.xml
804
%%DATADIR%%/themes/linear-es-de/system/metadata/sfc.xml
805
%%DATADIR%%/themes/linear-es-de/system/metadata/sg-1000.xml
806
%%DATADIR%%/themes/linear-es-de/system/metadata/sgb.xml
807
%%DATADIR%%/themes/linear-es-de/system/metadata/snes.xml
808
%%DATADIR%%/themes/linear-es-de/system/metadata/snesna.xml
809
%%DATADIR%%/themes/linear-es-de/system/metadata/solarus.xml
810
%%DATADIR%%/themes/linear-es-de/system/metadata/spectravideo.xml
811
%%DATADIR%%/themes/linear-es-de/system/metadata/steam.xml
812
%%DATADIR%%/themes/linear-es-de/system/metadata/stratagus.xml
813
%%DATADIR%%/themes/linear-es-de/system/metadata/stv.xml
814
%%DATADIR%%/themes/linear-es-de/system/metadata/sufami.xml
815
%%DATADIR%%/themes/linear-es-de/system/metadata/supergrafx.xml
816
%%DATADIR%%/themes/linear-es-de/system/metadata/supervision.xml
817
%%DATADIR%%/themes/linear-es-de/system/metadata/supracan.xml
818
%%DATADIR%%/themes/linear-es-de/system/metadata/switch.xml
819
%%DATADIR%%/themes/linear-es-de/system/metadata/symbian.xml
820
%%DATADIR%%/themes/linear-es-de/system/metadata/tanodragon.xml
821
%%DATADIR%%/themes/linear-es-de/system/metadata/tg-cd.xml
822
%%DATADIR%%/themes/linear-es-de/system/metadata/tg16.xml
823
%%DATADIR%%/themes/linear-es-de/system/metadata/ti99.xml
824
%%DATADIR%%/themes/linear-es-de/system/metadata/tic80.xml
825
%%DATADIR%%/themes/linear-es-de/system/metadata/to8.xml
826
%%DATADIR%%/themes/linear-es-de/system/metadata/tools.xml
827
%%DATADIR%%/themes/linear-es-de/system/metadata/triforce.xml
828
%%DATADIR%%/themes/linear-es-de/system/metadata/trs-80.xml
829
%%DATADIR%%/themes/linear-es-de/system/metadata/type-x.xml
830
%%DATADIR%%/themes/linear-es-de/system/metadata/uzebox.xml
831
%%DATADIR%%/themes/linear-es-de/system/metadata/vectrex.xml
832
%%DATADIR%%/themes/linear-es-de/system/metadata/vic20.xml
833
%%DATADIR%%/themes/linear-es-de/system/metadata/videopac.xml
834
%%DATADIR%%/themes/linear-es-de/system/metadata/virtualboy.xml
835
%%DATADIR%%/themes/linear-es-de/system/metadata/vpinball.xml
836
%%DATADIR%%/themes/linear-es-de/system/metadata/vsmile.xml
837
%%DATADIR%%/themes/linear-es-de/system/metadata/wasm4.xml
838
%%DATADIR%%/themes/linear-es-de/system/metadata/wii.xml
839
%%DATADIR%%/themes/linear-es-de/system/metadata/wiiu.xml
840
%%DATADIR%%/themes/linear-es-de/system/metadata/windows.xml
841
%%DATADIR%%/themes/linear-es-de/system/metadata/windows3x.xml
842
%%DATADIR%%/themes/linear-es-de/system/metadata/windows9x.xml
843
%%DATADIR%%/themes/linear-es-de/system/metadata/wonderswan.xml
844
%%DATADIR%%/themes/linear-es-de/system/metadata/wonderswancolor.xml
845
%%DATADIR%%/themes/linear-es-de/system/metadata/x1.xml
846
%%DATADIR%%/themes/linear-es-de/system/metadata/x68000.xml
847
%%DATADIR%%/themes/linear-es-de/system/metadata/xbox.xml
848
%%DATADIR%%/themes/linear-es-de/system/metadata/xbox360.xml
849
%%DATADIR%%/themes/linear-es-de/system/metadata/zmachine.xml
850
%%DATADIR%%/themes/linear-es-de/system/metadata/zx81.xml
851
%%DATADIR%%/themes/linear-es-de/system/metadata/zxnext.xml
852
%%DATADIR%%/themes/linear-es-de/system/metadata/zxspectrum.xml
853
%%DATADIR%%/themes/linear-es-de/system/systemart/3do.webp
854
%%DATADIR%%/themes/linear-es-de/system/systemart/adam.webp
855
%%DATADIR%%/themes/linear-es-de/system/systemart/ags.webp
856
%%DATADIR%%/themes/linear-es-de/system/systemart/amiga.webp
857
%%DATADIR%%/themes/linear-es-de/system/systemart/amiga1200.webp
858
%%DATADIR%%/themes/linear-es-de/system/systemart/amiga600.webp
859
%%DATADIR%%/themes/linear-es-de/system/systemart/amigacd32.webp
860
%%DATADIR%%/themes/linear-es-de/system/systemart/amstradcpc.webp
861
%%DATADIR%%/themes/linear-es-de/system/systemart/android.webp
862
%%DATADIR%%/themes/linear-es-de/system/systemart/androidapps.webp
863
%%DATADIR%%/themes/linear-es-de/system/systemart/androidgames.webp
864
%%DATADIR%%/themes/linear-es-de/system/systemart/apple2.webp
865
%%DATADIR%%/themes/linear-es-de/system/systemart/apple2gs.webp
866
%%DATADIR%%/themes/linear-es-de/system/systemart/arcade.webp
867
%%DATADIR%%/themes/linear-es-de/system/systemart/arcadia.webp
868
%%DATADIR%%/themes/linear-es-de/system/systemart/archimedes.webp
869
%%DATADIR%%/themes/linear-es-de/system/systemart/arduboy.webp
870
%%DATADIR%%/themes/linear-es-de/system/systemart/astrocade.webp
871
%%DATADIR%%/themes/linear-es-de/system/systemart/atari2600.webp
872
%%DATADIR%%/themes/linear-es-de/system/systemart/atari5200.webp
873
%%DATADIR%%/themes/linear-es-de/system/systemart/atari7800.webp
874
%%DATADIR%%/themes/linear-es-de/system/systemart/atari800.webp
875
%%DATADIR%%/themes/linear-es-de/system/systemart/atarijaguar.webp
876
%%DATADIR%%/themes/linear-es-de/system/systemart/atarijaguarcd.webp
877
%%DATADIR%%/themes/linear-es-de/system/systemart/atarilynx.webp
878
%%DATADIR%%/themes/linear-es-de/system/systemart/atarist.webp
879
%%DATADIR%%/themes/linear-es-de/system/systemart/atarixe.webp
880
%%DATADIR%%/themes/linear-es-de/system/systemart/atomiswave.webp
881
%%DATADIR%%/themes/linear-es-de/system/systemart/auto-allgames.webp
882
%%DATADIR%%/themes/linear-es-de/system/systemart/auto-favorites.webp
883
%%DATADIR%%/themes/linear-es-de/system/systemart/auto-lastplayed.webp
884
%%DATADIR%%/themes/linear-es-de/system/systemart/bbcmicro.webp
885
%%DATADIR%%/themes/linear-es-de/system/systemart/c64.webp
886
%%DATADIR%%/themes/linear-es-de/system/systemart/cavestory.webp
887
%%DATADIR%%/themes/linear-es-de/system/systemart/cdimono1.webp
888
%%DATADIR%%/themes/linear-es-de/system/systemart/cdtv.webp
889
%%DATADIR%%/themes/linear-es-de/system/systemart/chailove.webp
890
%%DATADIR%%/themes/linear-es-de/system/systemart/channelf.webp
891
%%DATADIR%%/themes/linear-es-de/system/systemart/coco.webp
892
%%DATADIR%%/themes/linear-es-de/system/systemart/colecovision.webp
893
%%DATADIR%%/themes/linear-es-de/system/systemart/consolearcade.webp
894
%%DATADIR%%/themes/linear-es-de/system/systemart/cps.webp
895
%%DATADIR%%/themes/linear-es-de/system/systemart/cps1.webp
896
%%DATADIR%%/themes/linear-es-de/system/systemart/cps2.webp
897
%%DATADIR%%/themes/linear-es-de/system/systemart/cps3.webp
898
%%DATADIR%%/themes/linear-es-de/system/systemart/crvision.webp
899
%%DATADIR%%/themes/linear-es-de/system/systemart/custom-collections.webp
900
%%DATADIR%%/themes/linear-es-de/system/systemart/daphne.webp
901
%%DATADIR%%/themes/linear-es-de/system/systemart/desktop.webp
902
%%DATADIR%%/themes/linear-es-de/system/systemart/doom.webp
903
%%DATADIR%%/themes/linear-es-de/system/systemart/dos.webp
904
%%DATADIR%%/themes/linear-es-de/system/systemart/dragon32.webp
905
%%DATADIR%%/themes/linear-es-de/system/systemart/dreamcast.webp
906
%%DATADIR%%/themes/linear-es-de/system/systemart/easyrpg.webp
907
%%DATADIR%%/themes/linear-es-de/system/systemart/electron.webp
908
%%DATADIR%%/themes/linear-es-de/system/systemart/emulators.webp
909
%%DATADIR%%/themes/linear-es-de/system/systemart/epic.webp
910
%%DATADIR%%/themes/linear-es-de/system/systemart/famicom.webp
911
%%DATADIR%%/themes/linear-es-de/system/systemart/fba.webp
912
%%DATADIR%%/themes/linear-es-de/system/systemart/fbneo.webp
913
%%DATADIR%%/themes/linear-es-de/system/systemart/fds.webp
914
%%DATADIR%%/themes/linear-es-de/system/systemart/flash.webp
915
%%DATADIR%%/themes/linear-es-de/system/systemart/fm7.webp
916
%%DATADIR%%/themes/linear-es-de/system/systemart/fmtowns.webp
917
%%DATADIR%%/themes/linear-es-de/system/systemart/fpinball.webp
918
%%DATADIR%%/themes/linear-es-de/system/systemart/gamate.webp
919
%%DATADIR%%/themes/linear-es-de/system/systemart/gameandwatch.webp
920
%%DATADIR%%/themes/linear-es-de/system/systemart/gamecom.webp
921
%%DATADIR%%/themes/linear-es-de/system/systemart/gamegear.webp
922
%%DATADIR%%/themes/linear-es-de/system/systemart/gb.webp
923
%%DATADIR%%/themes/linear-es-de/system/systemart/gba.webp
924
%%DATADIR%%/themes/linear-es-de/system/systemart/gbc.webp
925
%%DATADIR%%/themes/linear-es-de/system/systemart/gc.webp
926
%%DATADIR%%/themes/linear-es-de/system/systemart/genesis.webp
927
%%DATADIR%%/themes/linear-es-de/system/systemart/gmaster.webp
928
%%DATADIR%%/themes/linear-es-de/system/systemart/gx4000.webp
929
%%DATADIR%%/themes/linear-es-de/system/systemart/intellivision.webp
930
%%DATADIR%%/themes/linear-es-de/system/systemart/j2me.webp
931
%%DATADIR%%/themes/linear-es-de/system/systemart/kodi.webp
932
%%DATADIR%%/themes/linear-es-de/system/systemart/laserdisc.webp
933
%%DATADIR%%/themes/linear-es-de/system/systemart/lcdgames.webp
934
%%DATADIR%%/themes/linear-es-de/system/systemart/lowresnx.webp
935
%%DATADIR%%/themes/linear-es-de/system/systemart/lutris.webp
936
%%DATADIR%%/themes/linear-es-de/system/systemart/lutro.webp
937
%%DATADIR%%/themes/linear-es-de/system/systemart/macintosh.webp
938
%%DATADIR%%/themes/linear-es-de/system/systemart/mame-advmame.webp
939
%%DATADIR%%/themes/linear-es-de/system/systemart/mame.webp
940
%%DATADIR%%/themes/linear-es-de/system/systemart/mario.webp
941
%%DATADIR%%/themes/linear-es-de/system/systemart/mastersystem.webp
942
%%DATADIR%%/themes/linear-es-de/system/systemart/megacd.webp
943
%%DATADIR%%/themes/linear-es-de/system/systemart/megacdjp.webp
944
%%DATADIR%%/themes/linear-es-de/system/systemart/megadrive.webp
945
%%DATADIR%%/themes/linear-es-de/system/systemart/megadrivejp.webp
946
%%DATADIR%%/themes/linear-es-de/system/systemart/megaduck.webp
947
%%DATADIR%%/themes/linear-es-de/system/systemart/mess.webp
948
%%DATADIR%%/themes/linear-es-de/system/systemart/model2.webp
949
%%DATADIR%%/themes/linear-es-de/system/systemart/model3.webp
950
%%DATADIR%%/themes/linear-es-de/system/systemart/moto.webp
951
%%DATADIR%%/themes/linear-es-de/system/systemart/msx.webp
952
%%DATADIR%%/themes/linear-es-de/system/systemart/msx1.webp
953
%%DATADIR%%/themes/linear-es-de/system/systemart/msx2.webp
954
%%DATADIR%%/themes/linear-es-de/system/systemart/msxturbor.webp
955
%%DATADIR%%/themes/linear-es-de/system/systemart/mugen.webp
956
%%DATADIR%%/themes/linear-es-de/system/systemart/multivision.webp
957
%%DATADIR%%/themes/linear-es-de/system/systemart/n3ds.webp
958
%%DATADIR%%/themes/linear-es-de/system/systemart/n64.webp
959
%%DATADIR%%/themes/linear-es-de/system/systemart/n64dd.webp
960
%%DATADIR%%/themes/linear-es-de/system/systemart/naomi.webp
961
%%DATADIR%%/themes/linear-es-de/system/systemart/naomi2.webp
962
%%DATADIR%%/themes/linear-es-de/system/systemart/naomigd.webp
963
%%DATADIR%%/themes/linear-es-de/system/systemart/nds.webp
964
%%DATADIR%%/themes/linear-es-de/system/systemart/neogeo.webp
965
%%DATADIR%%/themes/linear-es-de/system/systemart/neogeocd.webp
966
%%DATADIR%%/themes/linear-es-de/system/systemart/neogeocdjp.webp
967
%%DATADIR%%/themes/linear-es-de/system/systemart/nes.webp
968
%%DATADIR%%/themes/linear-es-de/system/systemart/ngage.webp
969
%%DATADIR%%/themes/linear-es-de/system/systemart/ngp.webp
970
%%DATADIR%%/themes/linear-es-de/system/systemart/ngpc.webp
971
%%DATADIR%%/themes/linear-es-de/system/systemart/odyssey2.webp
972
%%DATADIR%%/themes/linear-es-de/system/systemart/openbor.webp
973
%%DATADIR%%/themes/linear-es-de/system/systemart/oric.webp
974
%%DATADIR%%/themes/linear-es-de/system/systemart/palm.webp
975
%%DATADIR%%/themes/linear-es-de/system/systemart/pc.webp
976
%%DATADIR%%/themes/linear-es-de/system/systemart/pc88.webp
977
%%DATADIR%%/themes/linear-es-de/system/systemart/pc98.webp
978
%%DATADIR%%/themes/linear-es-de/system/systemart/pcarcade.webp
979
%%DATADIR%%/themes/linear-es-de/system/systemart/pcengine.webp
980
%%DATADIR%%/themes/linear-es-de/system/systemart/pcenginecd.webp
981
%%DATADIR%%/themes/linear-es-de/system/systemart/pcfx.webp
982
%%DATADIR%%/themes/linear-es-de/system/systemart/pico8.webp
983
%%DATADIR%%/themes/linear-es-de/system/systemart/plus4.webp
984
%%DATADIR%%/themes/linear-es-de/system/systemart/pokemini.webp
985
%%DATADIR%%/themes/linear-es-de/system/systemart/ports.webp
986
%%DATADIR%%/themes/linear-es-de/system/systemart/ps2.webp
987
%%DATADIR%%/themes/linear-es-de/system/systemart/ps3.webp
988
%%DATADIR%%/themes/linear-es-de/system/systemart/ps4.webp
989
%%DATADIR%%/themes/linear-es-de/system/systemart/psp.webp
990
%%DATADIR%%/themes/linear-es-de/system/systemart/psvita.webp
991
%%DATADIR%%/themes/linear-es-de/system/systemart/psx.webp
992
%%DATADIR%%/themes/linear-es-de/system/systemart/pv1000.webp
993
%%DATADIR%%/themes/linear-es-de/system/systemart/quake.webp
994
%%DATADIR%%/themes/linear-es-de/system/systemart/samcoupe.webp
995
%%DATADIR%%/themes/linear-es-de/system/systemart/satellaview.webp
996
%%DATADIR%%/themes/linear-es-de/system/systemart/saturn.webp
997
%%DATADIR%%/themes/linear-es-de/system/systemart/saturnjp.webp
998
%%DATADIR%%/themes/linear-es-de/system/systemart/scummvm.webp
999
%%DATADIR%%/themes/linear-es-de/system/systemart/scv.webp
1000
%%DATADIR%%/themes/linear-es-de/system/systemart/sega32x.webp
1001
%%DATADIR%%/themes/linear-es-de/system/systemart/sega32xjp.webp
1002
%%DATADIR%%/themes/linear-es-de/system/systemart/sega32xna.webp
1003
%%DATADIR%%/themes/linear-es-de/system/systemart/segacd.webp
1004
%%DATADIR%%/themes/linear-es-de/system/systemart/sfc.webp
1005
%%DATADIR%%/themes/linear-es-de/system/systemart/sg-1000.webp
1006
%%DATADIR%%/themes/linear-es-de/system/systemart/sgb.webp
1007
%%DATADIR%%/themes/linear-es-de/system/systemart/snes.webp
1008
%%DATADIR%%/themes/linear-es-de/system/systemart/snesna.webp
1009
%%DATADIR%%/themes/linear-es-de/system/systemart/solarus.webp
1010
%%DATADIR%%/themes/linear-es-de/system/systemart/spectravideo.webp
1011
%%DATADIR%%/themes/linear-es-de/system/systemart/steam.webp
1012
%%DATADIR%%/themes/linear-es-de/system/systemart/stv.webp
1013
%%DATADIR%%/themes/linear-es-de/system/systemart/sufami.webp
1014
%%DATADIR%%/themes/linear-es-de/system/systemart/supergrafx.webp
1015
%%DATADIR%%/themes/linear-es-de/system/systemart/supervision.webp
1016
%%DATADIR%%/themes/linear-es-de/system/systemart/supracan.webp
1017
%%DATADIR%%/themes/linear-es-de/system/systemart/switch.webp
1018
%%DATADIR%%/themes/linear-es-de/system/systemart/symbian.webp
1019
%%DATADIR%%/themes/linear-es-de/system/systemart/tanodragon.webp
1020
%%DATADIR%%/themes/linear-es-de/system/systemart/tg-cd.webp
1021
%%DATADIR%%/themes/linear-es-de/system/systemart/tg16.webp
1022
%%DATADIR%%/themes/linear-es-de/system/systemart/ti99.webp
1023
%%DATADIR%%/themes/linear-es-de/system/systemart/tic80.webp
1024
%%DATADIR%%/themes/linear-es-de/system/systemart/to8.webp
1025
%%DATADIR%%/themes/linear-es-de/system/systemart/tools.webp
1026
%%DATADIR%%/themes/linear-es-de/system/systemart/triforce.webp
1027
%%DATADIR%%/themes/linear-es-de/system/systemart/trs-80.webp
1028
%%DATADIR%%/themes/linear-es-de/system/systemart/type-x.webp
1029
%%DATADIR%%/themes/linear-es-de/system/systemart/uzebox.webp
1030
%%DATADIR%%/themes/linear-es-de/system/systemart/vectrex.webp
1031
%%DATADIR%%/themes/linear-es-de/system/systemart/vic20.webp
1032
%%DATADIR%%/themes/linear-es-de/system/systemart/videopac.webp
1033
%%DATADIR%%/themes/linear-es-de/system/systemart/virtualboy.webp
1034
%%DATADIR%%/themes/linear-es-de/system/systemart/vpinball.webp
1035
%%DATADIR%%/themes/linear-es-de/system/systemart/vsmile.webp
1036
%%DATADIR%%/themes/linear-es-de/system/systemart/wasm4.webp
1037
%%DATADIR%%/themes/linear-es-de/system/systemart/wii.webp
1038
%%DATADIR%%/themes/linear-es-de/system/systemart/wiiu.webp
1039
%%DATADIR%%/themes/linear-es-de/system/systemart/windows.webp
1040
%%DATADIR%%/themes/linear-es-de/system/systemart/windows3x.webp
1041
%%DATADIR%%/themes/linear-es-de/system/systemart/windows9x.webp
1042
%%DATADIR%%/themes/linear-es-de/system/systemart/wonderswan.webp
1043
%%DATADIR%%/themes/linear-es-de/system/systemart/wonderswancolor.webp
1044
%%DATADIR%%/themes/linear-es-de/system/systemart/x1.webp
1045
%%DATADIR%%/themes/linear-es-de/system/systemart/x68000.webp
1046
%%DATADIR%%/themes/linear-es-de/system/systemart/xbox.webp
1047
%%DATADIR%%/themes/linear-es-de/system/systemart/xbox360.webp
1048
%%DATADIR%%/themes/linear-es-de/system/systemart/zelda.webp
1049
%%DATADIR%%/themes/linear-es-de/system/systemart/zmachine.webp
1050
%%DATADIR%%/themes/linear-es-de/system/systemart/zx81.webp
1051
%%DATADIR%%/themes/linear-es-de/system/systemart/zxnext.webp
1052
%%DATADIR%%/themes/linear-es-de/system/systemart/zxspectrum.webp
1053
%%DATADIR%%/themes/linear-es-de/theme.xml
1054
%%DATADIR%%/themes/modern-es-de/CREDITS.md
1055
%%DATADIR%%/themes/modern-es-de/LICENSE
1056
%%DATADIR%%/themes/modern-es-de/README.md
1057
%%DATADIR%%/themes/modern-es-de/art/3do.webp
1058
%%DATADIR%%/themes/modern-es-de/art/adam.webp
1059
%%DATADIR%%/themes/modern-es-de/art/ags.webp
1060
%%DATADIR%%/themes/modern-es-de/art/amiga.webp
1061
%%DATADIR%%/themes/modern-es-de/art/amiga1200.webp
1062
%%DATADIR%%/themes/modern-es-de/art/amiga600.webp
1063
%%DATADIR%%/themes/modern-es-de/art/amigacd32.webp
1064
%%DATADIR%%/themes/modern-es-de/art/amstradcpc.webp
1065
%%DATADIR%%/themes/modern-es-de/art/android.webp
1066
%%DATADIR%%/themes/modern-es-de/art/androidapps.webp
1067
%%DATADIR%%/themes/modern-es-de/art/androidgames.webp
1068
%%DATADIR%%/themes/modern-es-de/art/apple2.webp
1069
%%DATADIR%%/themes/modern-es-de/art/apple2gs.webp
1070
%%DATADIR%%/themes/modern-es-de/art/arcade.webp
1071
%%DATADIR%%/themes/modern-es-de/art/arcadia.webp
1072
%%DATADIR%%/themes/modern-es-de/art/archimedes.webp
1073
%%DATADIR%%/themes/modern-es-de/art/arduboy.webp
1074
%%DATADIR%%/themes/modern-es-de/art/astrocade.webp
1075
%%DATADIR%%/themes/modern-es-de/art/atari2600.webp
1076
%%DATADIR%%/themes/modern-es-de/art/atari5200.webp
1077
%%DATADIR%%/themes/modern-es-de/art/atari7800.webp
1078
%%DATADIR%%/themes/modern-es-de/art/atari800.webp
1079
%%DATADIR%%/themes/modern-es-de/art/atarijaguar.webp
1080
%%DATADIR%%/themes/modern-es-de/art/atarijaguarcd.webp
1081
%%DATADIR%%/themes/modern-es-de/art/atarilynx.webp
1082
%%DATADIR%%/themes/modern-es-de/art/atarist.webp
1083
%%DATADIR%%/themes/modern-es-de/art/atarixe.webp
1084
%%DATADIR%%/themes/modern-es-de/art/atomiswave.webp
1085
%%DATADIR%%/themes/modern-es-de/art/auto-allgames.webp
1086
%%DATADIR%%/themes/modern-es-de/art/auto-favorites.webp
1087
%%DATADIR%%/themes/modern-es-de/art/auto-lastplayed.webp
1088
%%DATADIR%%/themes/modern-es-de/art/bbcmicro.webp
1089
%%DATADIR%%/themes/modern-es-de/art/c64.webp
1090
%%DATADIR%%/themes/modern-es-de/art/cavestory.webp
1091
%%DATADIR%%/themes/modern-es-de/art/cdimono1.webp
1092
%%DATADIR%%/themes/modern-es-de/art/cdtv.webp
1093
%%DATADIR%%/themes/modern-es-de/art/chailove.webp
1094
%%DATADIR%%/themes/modern-es-de/art/channelf.webp
1095
%%DATADIR%%/themes/modern-es-de/art/coco.webp
1096
%%DATADIR%%/themes/modern-es-de/art/colecovision.webp
1097
%%DATADIR%%/themes/modern-es-de/art/consolearcade.webp
1098
%%DATADIR%%/themes/modern-es-de/art/cps.webp
1099
%%DATADIR%%/themes/modern-es-de/art/cps1.webp
1100
%%DATADIR%%/themes/modern-es-de/art/cps2.webp
1101
%%DATADIR%%/themes/modern-es-de/art/cps3.webp
1102
%%DATADIR%%/themes/modern-es-de/art/crvision.webp
1103
%%DATADIR%%/themes/modern-es-de/art/custom-collections.webp
1104
%%DATADIR%%/themes/modern-es-de/art/daphne.webp
1105
%%DATADIR%%/themes/modern-es-de/art/desktop.webp
1106
%%DATADIR%%/themes/modern-es-de/art/doom.webp
1107
%%DATADIR%%/themes/modern-es-de/art/dos.webp
1108
%%DATADIR%%/themes/modern-es-de/art/dragon32.webp
1109
%%DATADIR%%/themes/modern-es-de/art/dreamcast.webp
1110
%%DATADIR%%/themes/modern-es-de/art/easyrpg.webp
1111
%%DATADIR%%/themes/modern-es-de/art/electron.webp
1112
%%DATADIR%%/themes/modern-es-de/art/emulators.webp
1113
%%DATADIR%%/themes/modern-es-de/art/epic.webp
1114
%%DATADIR%%/themes/modern-es-de/art/famicom.webp
1115
%%DATADIR%%/themes/modern-es-de/art/fba.webp
1116
%%DATADIR%%/themes/modern-es-de/art/fbneo.webp
1117
%%DATADIR%%/themes/modern-es-de/art/fds.webp
1118
%%DATADIR%%/themes/modern-es-de/art/flash.webp
1119
%%DATADIR%%/themes/modern-es-de/art/fm7.webp
1120
%%DATADIR%%/themes/modern-es-de/art/fmtowns.webp
1121
%%DATADIR%%/themes/modern-es-de/art/fpinball.webp
1122
%%DATADIR%%/themes/modern-es-de/art/gamate.webp
1123
%%DATADIR%%/themes/modern-es-de/art/gameandwatch.webp
1124
%%DATADIR%%/themes/modern-es-de/art/gamecom.webp
1125
%%DATADIR%%/themes/modern-es-de/art/gamegear.webp
1126
%%DATADIR%%/themes/modern-es-de/art/gb.webp
1127
%%DATADIR%%/themes/modern-es-de/art/gba.webp
1128
%%DATADIR%%/themes/modern-es-de/art/gbc.webp
1129
%%DATADIR%%/themes/modern-es-de/art/gc.webp
1130
%%DATADIR%%/themes/modern-es-de/art/genesis.webp
1131
%%DATADIR%%/themes/modern-es-de/art/gmaster.webp
1132
%%DATADIR%%/themes/modern-es-de/art/gx4000.webp
1133
%%DATADIR%%/themes/modern-es-de/art/intellivision.webp
1134
%%DATADIR%%/themes/modern-es-de/art/j2me.webp
1135
%%DATADIR%%/themes/modern-es-de/art/kodi.webp
1136
%%DATADIR%%/themes/modern-es-de/art/laserdisc.webp
1137
%%DATADIR%%/themes/modern-es-de/art/lcdgames.webp
1138
%%DATADIR%%/themes/modern-es-de/art/lowresnx.webp
1139
%%DATADIR%%/themes/modern-es-de/art/lutris.webp
1140
%%DATADIR%%/themes/modern-es-de/art/lutro.webp
1141
%%DATADIR%%/themes/modern-es-de/art/macintosh.webp
1142
%%DATADIR%%/themes/modern-es-de/art/mame-advmame.webp
1143
%%DATADIR%%/themes/modern-es-de/art/mame.webp
1144
%%DATADIR%%/themes/modern-es-de/art/mastersystem.webp
1145
%%DATADIR%%/themes/modern-es-de/art/megacd.webp
1146
%%DATADIR%%/themes/modern-es-de/art/megacdjp.webp
1147
%%DATADIR%%/themes/modern-es-de/art/megadrive.webp
1148
%%DATADIR%%/themes/modern-es-de/art/megadrivejp.webp
1149
%%DATADIR%%/themes/modern-es-de/art/megaduck.webp
1150
%%DATADIR%%/themes/modern-es-de/art/mess.webp
1151
%%DATADIR%%/themes/modern-es-de/art/model2.webp
1152
%%DATADIR%%/themes/modern-es-de/art/model3.webp
1153
%%DATADIR%%/themes/modern-es-de/art/moto.webp
1154
%%DATADIR%%/themes/modern-es-de/art/msx.webp
1155
%%DATADIR%%/themes/modern-es-de/art/msx1.webp
1156
%%DATADIR%%/themes/modern-es-de/art/msx2.webp
1157
%%DATADIR%%/themes/modern-es-de/art/msxturbor.webp
1158
%%DATADIR%%/themes/modern-es-de/art/mugen.webp
1159
%%DATADIR%%/themes/modern-es-de/art/multivision.webp
1160
%%DATADIR%%/themes/modern-es-de/art/n3ds.webp
1161
%%DATADIR%%/themes/modern-es-de/art/n64.webp
1162
%%DATADIR%%/themes/modern-es-de/art/n64dd.webp
1163
%%DATADIR%%/themes/modern-es-de/art/naomi.webp
1164
%%DATADIR%%/themes/modern-es-de/art/naomi2.webp
1165
%%DATADIR%%/themes/modern-es-de/art/naomigd.webp
1166
%%DATADIR%%/themes/modern-es-de/art/nds.webp
1167
%%DATADIR%%/themes/modern-es-de/art/neogeo.webp
1168
%%DATADIR%%/themes/modern-es-de/art/neogeocd.webp
1169
%%DATADIR%%/themes/modern-es-de/art/neogeocdjp.webp
1170
%%DATADIR%%/themes/modern-es-de/art/nes.webp
1171
%%DATADIR%%/themes/modern-es-de/art/ngage.webp
1172
%%DATADIR%%/themes/modern-es-de/art/ngp.webp
1173
%%DATADIR%%/themes/modern-es-de/art/ngpc.webp
1174
%%DATADIR%%/themes/modern-es-de/art/odyssey2.webp
1175
%%DATADIR%%/themes/modern-es-de/art/openbor.webp
1176
%%DATADIR%%/themes/modern-es-de/art/oric.webp
1177
%%DATADIR%%/themes/modern-es-de/art/palm.webp
1178
%%DATADIR%%/themes/modern-es-de/art/pc.webp
1179
%%DATADIR%%/themes/modern-es-de/art/pc88.webp
1180
%%DATADIR%%/themes/modern-es-de/art/pc98.webp
1181
%%DATADIR%%/themes/modern-es-de/art/pcarcade.webp
1182
%%DATADIR%%/themes/modern-es-de/art/pcengine.webp
1183
%%DATADIR%%/themes/modern-es-de/art/pcenginecd.webp
1184
%%DATADIR%%/themes/modern-es-de/art/pcfx.webp
1185
%%DATADIR%%/themes/modern-es-de/art/pico8.webp
1186
%%DATADIR%%/themes/modern-es-de/art/plus4.webp
1187
%%DATADIR%%/themes/modern-es-de/art/pokemini.webp
1188
%%DATADIR%%/themes/modern-es-de/art/ports.webp
1189
%%DATADIR%%/themes/modern-es-de/art/ps2.webp
1190
%%DATADIR%%/themes/modern-es-de/art/ps3.webp
1191
%%DATADIR%%/themes/modern-es-de/art/ps4.webp
1192
%%DATADIR%%/themes/modern-es-de/art/psp.webp
1193
%%DATADIR%%/themes/modern-es-de/art/psvita.webp
1194
%%DATADIR%%/themes/modern-es-de/art/psx.webp
1195
%%DATADIR%%/themes/modern-es-de/art/pv1000.webp
1196
%%DATADIR%%/themes/modern-es-de/art/quake.webp
1197
%%DATADIR%%/themes/modern-es-de/art/samcoupe.webp
1198
%%DATADIR%%/themes/modern-es-de/art/satellaview.webp
1199
%%DATADIR%%/themes/modern-es-de/art/saturn.webp
1200
%%DATADIR%%/themes/modern-es-de/art/saturnjp.webp
1201
%%DATADIR%%/themes/modern-es-de/art/scummvm.webp
1202
%%DATADIR%%/themes/modern-es-de/art/scv.webp
1203
%%DATADIR%%/themes/modern-es-de/art/sega32x.webp
1204
%%DATADIR%%/themes/modern-es-de/art/sega32xjp.webp
1205
%%DATADIR%%/themes/modern-es-de/art/sega32xna.webp
1206
%%DATADIR%%/themes/modern-es-de/art/segacd.webp
1207
%%DATADIR%%/themes/modern-es-de/art/sfc.webp
1208
%%DATADIR%%/themes/modern-es-de/art/sg-1000.webp
1209
%%DATADIR%%/themes/modern-es-de/art/sgb.webp
1210
%%DATADIR%%/themes/modern-es-de/art/snes.webp
1211
%%DATADIR%%/themes/modern-es-de/art/snesna.webp
1212
%%DATADIR%%/themes/modern-es-de/art/solarus.webp
1213
%%DATADIR%%/themes/modern-es-de/art/spectravideo.webp
1214
%%DATADIR%%/themes/modern-es-de/art/steam.webp
1215
%%DATADIR%%/themes/modern-es-de/art/stv.webp
1216
%%DATADIR%%/themes/modern-es-de/art/sufami.webp
1217
%%DATADIR%%/themes/modern-es-de/art/supergrafx.webp
1218
%%DATADIR%%/themes/modern-es-de/art/supervision.webp
1219
%%DATADIR%%/themes/modern-es-de/art/supracan.webp
1220
%%DATADIR%%/themes/modern-es-de/art/switch.webp
1221
%%DATADIR%%/themes/modern-es-de/art/symbian.webp
1222
%%DATADIR%%/themes/modern-es-de/art/tanodragon.webp
1223
%%DATADIR%%/themes/modern-es-de/art/tg-cd.webp
1224
%%DATADIR%%/themes/modern-es-de/art/tg16.webp
1225
%%DATADIR%%/themes/modern-es-de/art/ti99.webp
1226
%%DATADIR%%/themes/modern-es-de/art/tic80.webp
1227
%%DATADIR%%/themes/modern-es-de/art/to8.webp
1228
%%DATADIR%%/themes/modern-es-de/art/tools.webp
1229
%%DATADIR%%/themes/modern-es-de/art/triforce.webp
1230
%%DATADIR%%/themes/modern-es-de/art/trs-80.webp
1231
%%DATADIR%%/themes/modern-es-de/art/type-x.webp
1232
%%DATADIR%%/themes/modern-es-de/art/uzebox.webp
1233
%%DATADIR%%/themes/modern-es-de/art/vectrex.webp
1234
%%DATADIR%%/themes/modern-es-de/art/vic20.webp
1235
%%DATADIR%%/themes/modern-es-de/art/videopac.webp
1236
%%DATADIR%%/themes/modern-es-de/art/virtualboy.webp
1237
%%DATADIR%%/themes/modern-es-de/art/vpinball.webp
1238
%%DATADIR%%/themes/modern-es-de/art/vsmile.webp
1239
%%DATADIR%%/themes/modern-es-de/art/wasm4.webp
1240
%%DATADIR%%/themes/modern-es-de/art/wii.webp
1241
%%DATADIR%%/themes/modern-es-de/art/wiiu.webp
1242
%%DATADIR%%/themes/modern-es-de/art/windows.webp
1243
%%DATADIR%%/themes/modern-es-de/art/windows3x.webp
1244
%%DATADIR%%/themes/modern-es-de/art/windows9x.webp
1245
%%DATADIR%%/themes/modern-es-de/art/wonderswan.webp
1246
%%DATADIR%%/themes/modern-es-de/art/wonderswancolor.webp
1247
%%DATADIR%%/themes/modern-es-de/art/x1.webp
1248
%%DATADIR%%/themes/modern-es-de/art/x68000.webp
1249
%%DATADIR%%/themes/modern-es-de/art/xbox.webp
1250
%%DATADIR%%/themes/modern-es-de/art/xbox360.webp
1251
%%DATADIR%%/themes/modern-es-de/art/zmachine.webp
1252
%%DATADIR%%/themes/modern-es-de/art/zx81.webp
1253
%%DATADIR%%/themes/modern-es-de/art/zxnext.webp
1254
%%DATADIR%%/themes/modern-es-de/art/zxspectrum.webp
1255
%%DATADIR%%/themes/modern-es-de/art_legacy/3do.webp
1256
%%DATADIR%%/themes/modern-es-de/art_legacy/adam.webp
1257
%%DATADIR%%/themes/modern-es-de/art_legacy/ags.webp
1258
%%DATADIR%%/themes/modern-es-de/art_legacy/amiga.webp
1259
%%DATADIR%%/themes/modern-es-de/art_legacy/amiga1200.webp
1260
%%DATADIR%%/themes/modern-es-de/art_legacy/amiga600.webp
1261
%%DATADIR%%/themes/modern-es-de/art_legacy/amigacd32.webp
1262
%%DATADIR%%/themes/modern-es-de/art_legacy/amstradcpc.webp
1263
%%DATADIR%%/themes/modern-es-de/art_legacy/android.webp
1264
%%DATADIR%%/themes/modern-es-de/art_legacy/androidapps.webp
1265
%%DATADIR%%/themes/modern-es-de/art_legacy/androidgames.webp
1266
%%DATADIR%%/themes/modern-es-de/art_legacy/apple2.webp
1267
%%DATADIR%%/themes/modern-es-de/art_legacy/apple2gs.webp
1268
%%DATADIR%%/themes/modern-es-de/art_legacy/arcade.webp
1269
%%DATADIR%%/themes/modern-es-de/art_legacy/arcadia.webp
1270
%%DATADIR%%/themes/modern-es-de/art_legacy/archimedes.webp
1271
%%DATADIR%%/themes/modern-es-de/art_legacy/arduboy.webp
1272
%%DATADIR%%/themes/modern-es-de/art_legacy/astrocade.webp
1273
%%DATADIR%%/themes/modern-es-de/art_legacy/atari2600.webp
1274
%%DATADIR%%/themes/modern-es-de/art_legacy/atari5200.webp
1275
%%DATADIR%%/themes/modern-es-de/art_legacy/atari7800.webp
1276
%%DATADIR%%/themes/modern-es-de/art_legacy/atari800.webp
1277
%%DATADIR%%/themes/modern-es-de/art_legacy/atarijaguar.webp
1278
%%DATADIR%%/themes/modern-es-de/art_legacy/atarijaguarcd.webp
1279
%%DATADIR%%/themes/modern-es-de/art_legacy/atarilynx.webp
1280
%%DATADIR%%/themes/modern-es-de/art_legacy/atarist.webp
1281
%%DATADIR%%/themes/modern-es-de/art_legacy/atarixe.webp
1282
%%DATADIR%%/themes/modern-es-de/art_legacy/atomiswave.webp
1283
%%DATADIR%%/themes/modern-es-de/art_legacy/auto-allgames.webp
1284
%%DATADIR%%/themes/modern-es-de/art_legacy/auto-favorites.webp
1285
%%DATADIR%%/themes/modern-es-de/art_legacy/auto-lastplayed.webp
1286
%%DATADIR%%/themes/modern-es-de/art_legacy/bbcmicro.webp
1287
%%DATADIR%%/themes/modern-es-de/art_legacy/c64.webp
1288
%%DATADIR%%/themes/modern-es-de/art_legacy/cdimono1.webp
1289
%%DATADIR%%/themes/modern-es-de/art_legacy/cdtv.webp
1290
%%DATADIR%%/themes/modern-es-de/art_legacy/chailove.webp
1291
%%DATADIR%%/themes/modern-es-de/art_legacy/channelf.webp
1292
%%DATADIR%%/themes/modern-es-de/art_legacy/coco.webp
1293
%%DATADIR%%/themes/modern-es-de/art_legacy/colecovision.webp
1294
%%DATADIR%%/themes/modern-es-de/art_legacy/consolearcade.webp
1295
%%DATADIR%%/themes/modern-es-de/art_legacy/cps.webp
1296
%%DATADIR%%/themes/modern-es-de/art_legacy/cps1.webp
1297
%%DATADIR%%/themes/modern-es-de/art_legacy/cps2.webp
1298
%%DATADIR%%/themes/modern-es-de/art_legacy/cps3.webp
1299
%%DATADIR%%/themes/modern-es-de/art_legacy/crvision.webp
1300
%%DATADIR%%/themes/modern-es-de/art_legacy/custom-collections.webp
1301
%%DATADIR%%/themes/modern-es-de/art_legacy/daphne.webp
1302
%%DATADIR%%/themes/modern-es-de/art_legacy/desktop.webp
1303
%%DATADIR%%/themes/modern-es-de/art_legacy/doom.webp
1304
%%DATADIR%%/themes/modern-es-de/art_legacy/dos.webp
1305
%%DATADIR%%/themes/modern-es-de/art_legacy/dragon32.webp
1306
%%DATADIR%%/themes/modern-es-de/art_legacy/dreamcast.webp
1307
%%DATADIR%%/themes/modern-es-de/art_legacy/easyrpg.webp
1308
%%DATADIR%%/themes/modern-es-de/art_legacy/electron.webp
1309
%%DATADIR%%/themes/modern-es-de/art_legacy/emulators.webp
1310
%%DATADIR%%/themes/modern-es-de/art_legacy/epic.webp
1311
%%DATADIR%%/themes/modern-es-de/art_legacy/famicom.webp
1312
%%DATADIR%%/themes/modern-es-de/art_legacy/fba.webp
1313
%%DATADIR%%/themes/modern-es-de/art_legacy/fbneo.webp
1314
%%DATADIR%%/themes/modern-es-de/art_legacy/fds.webp
1315
%%DATADIR%%/themes/modern-es-de/art_legacy/flash.webp
1316
%%DATADIR%%/themes/modern-es-de/art_legacy/fm7.webp
1317
%%DATADIR%%/themes/modern-es-de/art_legacy/fmtowns.webp
1318
%%DATADIR%%/themes/modern-es-de/art_legacy/fpinball.webp
1319
%%DATADIR%%/themes/modern-es-de/art_legacy/gamate.webp
1320
%%DATADIR%%/themes/modern-es-de/art_legacy/gameandwatch.webp
1321
%%DATADIR%%/themes/modern-es-de/art_legacy/gamecom.webp
1322
%%DATADIR%%/themes/modern-es-de/art_legacy/gamegear.webp
1323
%%DATADIR%%/themes/modern-es-de/art_legacy/gb.webp
1324
%%DATADIR%%/themes/modern-es-de/art_legacy/gba.webp
1325
%%DATADIR%%/themes/modern-es-de/art_legacy/gbc.webp
1326
%%DATADIR%%/themes/modern-es-de/art_legacy/gc.webp
1327
%%DATADIR%%/themes/modern-es-de/art_legacy/genesis.webp
1328
%%DATADIR%%/themes/modern-es-de/art_legacy/gmaster.webp
1329
%%DATADIR%%/themes/modern-es-de/art_legacy/gog.webp
1330
%%DATADIR%%/themes/modern-es-de/art_legacy/gx4000.webp
1331
%%DATADIR%%/themes/modern-es-de/art_legacy/ibm.webp
1332
%%DATADIR%%/themes/modern-es-de/art_legacy/intellivision.webp
1333
%%DATADIR%%/themes/modern-es-de/art_legacy/j2me.webp
1334
%%DATADIR%%/themes/modern-es-de/art_legacy/kodi.webp
1335
%%DATADIR%%/themes/modern-es-de/art_legacy/laserdisc.webp
1336
%%DATADIR%%/themes/modern-es-de/art_legacy/lcdgames.webp
1337
%%DATADIR%%/themes/modern-es-de/art_legacy/love.webp
1338
%%DATADIR%%/themes/modern-es-de/art_legacy/lowresnx.webp
1339
%%DATADIR%%/themes/modern-es-de/art_legacy/lutris.webp
1340
%%DATADIR%%/themes/modern-es-de/art_legacy/lutro.webp
1341
%%DATADIR%%/themes/modern-es-de/art_legacy/macintosh.webp
1342
%%DATADIR%%/themes/modern-es-de/art_legacy/mame-advmame.webp
1343
%%DATADIR%%/themes/modern-es-de/art_legacy/mame-libretro.webp
1344
%%DATADIR%%/themes/modern-es-de/art_legacy/mame.webp
1345
%%DATADIR%%/themes/modern-es-de/art_legacy/mastersystem.webp
1346
%%DATADIR%%/themes/modern-es-de/art_legacy/megacd.webp
1347
%%DATADIR%%/themes/modern-es-de/art_legacy/megacdjp.webp
1348
%%DATADIR%%/themes/modern-es-de/art_legacy/megadrive.webp
1349
%%DATADIR%%/themes/modern-es-de/art_legacy/megadrivejp.webp
1350
%%DATADIR%%/themes/modern-es-de/art_legacy/megaduck.webp
1351
%%DATADIR%%/themes/modern-es-de/art_legacy/mess.webp
1352
%%DATADIR%%/themes/modern-es-de/art_legacy/model2.webp
1353
%%DATADIR%%/themes/modern-es-de/art_legacy/model3.webp
1354
%%DATADIR%%/themes/modern-es-de/art_legacy/moto.webp
1355
%%DATADIR%%/themes/modern-es-de/art_legacy/msx.webp
1356
%%DATADIR%%/themes/modern-es-de/art_legacy/msx1.webp
1357
%%DATADIR%%/themes/modern-es-de/art_legacy/msx2.webp
1358
%%DATADIR%%/themes/modern-es-de/art_legacy/msxturbor.webp
1359
%%DATADIR%%/themes/modern-es-de/art_legacy/mugen.webp
1360
%%DATADIR%%/themes/modern-es-de/art_legacy/multivision.webp
1361
%%DATADIR%%/themes/modern-es-de/art_legacy/n3ds.webp
1362
%%DATADIR%%/themes/modern-es-de/art_legacy/n64.webp
1363
%%DATADIR%%/themes/modern-es-de/art_legacy/n64dd.webp
1364
%%DATADIR%%/themes/modern-es-de/art_legacy/naomi.webp
1365
%%DATADIR%%/themes/modern-es-de/art_legacy/naomi2.webp
1366
%%DATADIR%%/themes/modern-es-de/art_legacy/naomigd.webp
1367
%%DATADIR%%/themes/modern-es-de/art_legacy/nds.webp
1368
%%DATADIR%%/themes/modern-es-de/art_legacy/neogeo.webp
1369
%%DATADIR%%/themes/modern-es-de/art_legacy/neogeocd.webp
1370
%%DATADIR%%/themes/modern-es-de/art_legacy/neogeocdjp.webp
1371
%%DATADIR%%/themes/modern-es-de/art_legacy/nes.webp
1372
%%DATADIR%%/themes/modern-es-de/art_legacy/ngage.webp
1373
%%DATADIR%%/themes/modern-es-de/art_legacy/ngp.webp
1374
%%DATADIR%%/themes/modern-es-de/art_legacy/ngpc.webp
1375
%%DATADIR%%/themes/modern-es-de/art_legacy/odyssey2.webp
1376
%%DATADIR%%/themes/modern-es-de/art_legacy/openbor.webp
1377
%%DATADIR%%/themes/modern-es-de/art_legacy/oric.webp
1378
%%DATADIR%%/themes/modern-es-de/art_legacy/palm.webp
1379
%%DATADIR%%/themes/modern-es-de/art_legacy/pc-cd.webp
1380
%%DATADIR%%/themes/modern-es-de/art_legacy/pc.webp
1381
%%DATADIR%%/themes/modern-es-de/art_legacy/pc88.webp
1382
%%DATADIR%%/themes/modern-es-de/art_legacy/pc98.webp
1383
%%DATADIR%%/themes/modern-es-de/art_legacy/pcarcade.webp
1384
%%DATADIR%%/themes/modern-es-de/art_legacy/pcengine.webp
1385
%%DATADIR%%/themes/modern-es-de/art_legacy/pcenginecd.webp
1386
%%DATADIR%%/themes/modern-es-de/art_legacy/pcfx.webp
1387
%%DATADIR%%/themes/modern-es-de/art_legacy/pico8.webp
1388
%%DATADIR%%/themes/modern-es-de/art_legacy/plus4.webp
1389
%%DATADIR%%/themes/modern-es-de/art_legacy/pokemini.webp
1390
%%DATADIR%%/themes/modern-es-de/art_legacy/ports.webp
1391
%%DATADIR%%/themes/modern-es-de/art_legacy/ps2.webp
1392
%%DATADIR%%/themes/modern-es-de/art_legacy/ps3.webp
1393
%%DATADIR%%/themes/modern-es-de/art_legacy/ps4.webp
1394
%%DATADIR%%/themes/modern-es-de/art_legacy/psp.webp
1395
%%DATADIR%%/themes/modern-es-de/art_legacy/psvita.webp
1396
%%DATADIR%%/themes/modern-es-de/art_legacy/psx.webp
1397
%%DATADIR%%/themes/modern-es-de/art_legacy/pv1000.webp
1398
%%DATADIR%%/themes/modern-es-de/art_legacy/quake.webp
1399
%%DATADIR%%/themes/modern-es-de/art_legacy/reflexive.webp
1400
%%DATADIR%%/themes/modern-es-de/art_legacy/samcoupe.webp
1401
%%DATADIR%%/themes/modern-es-de/art_legacy/satellaview.webp
1402
%%DATADIR%%/themes/modern-es-de/art_legacy/saturn.webp
1403
%%DATADIR%%/themes/modern-es-de/art_legacy/saturnjp.webp
1404
%%DATADIR%%/themes/modern-es-de/art_legacy/scummvm.webp
1405
%%DATADIR%%/themes/modern-es-de/art_legacy/scv.webp
1406
%%DATADIR%%/themes/modern-es-de/art_legacy/sega32x.webp
1407
%%DATADIR%%/themes/modern-es-de/art_legacy/sega32xjp.webp
1408
%%DATADIR%%/themes/modern-es-de/art_legacy/sega32xna.webp
1409
%%DATADIR%%/themes/modern-es-de/art_legacy/segacd.webp
1410
%%DATADIR%%/themes/modern-es-de/art_legacy/settings.webp
1411
%%DATADIR%%/themes/modern-es-de/art_legacy/sfc.webp
1412
%%DATADIR%%/themes/modern-es-de/art_legacy/sg-1000.webp
1413
%%DATADIR%%/themes/modern-es-de/art_legacy/sgb.webp
1414
%%DATADIR%%/themes/modern-es-de/art_legacy/snes.webp
1415
%%DATADIR%%/themes/modern-es-de/art_legacy/snesna.webp
1416
%%DATADIR%%/themes/modern-es-de/art_legacy/solarus.webp
1417
%%DATADIR%%/themes/modern-es-de/art_legacy/spectravideo.webp
1418
%%DATADIR%%/themes/modern-es-de/art_legacy/steam.webp
1419
%%DATADIR%%/themes/modern-es-de/art_legacy/stv.webp
1420
%%DATADIR%%/themes/modern-es-de/art_legacy/sufami.webp
1421
%%DATADIR%%/themes/modern-es-de/art_legacy/supergrafx.webp
1422
%%DATADIR%%/themes/modern-es-de/art_legacy/supervision.webp
1423
%%DATADIR%%/themes/modern-es-de/art_legacy/supracan.webp
1424
%%DATADIR%%/themes/modern-es-de/art_legacy/switch.webp
1425
%%DATADIR%%/themes/modern-es-de/art_legacy/symbian.webp
1426
%%DATADIR%%/themes/modern-es-de/art_legacy/tanodragon.webp
1427
%%DATADIR%%/themes/modern-es-de/art_legacy/tg-cd.webp
1428
%%DATADIR%%/themes/modern-es-de/art_legacy/tg16.webp
1429
%%DATADIR%%/themes/modern-es-de/art_legacy/ti99.webp
1430
%%DATADIR%%/themes/modern-es-de/art_legacy/tic80.webp
1431
%%DATADIR%%/themes/modern-es-de/art_legacy/to8.webp
1432
%%DATADIR%%/themes/modern-es-de/art_legacy/triforce.webp
1433
%%DATADIR%%/themes/modern-es-de/art_legacy/trs-80.webp
1434
%%DATADIR%%/themes/modern-es-de/art_legacy/type-x.webp
1435
%%DATADIR%%/themes/modern-es-de/art_legacy/uzebox.webp
1436
%%DATADIR%%/themes/modern-es-de/art_legacy/vectrex.webp
1437
%%DATADIR%%/themes/modern-es-de/art_legacy/vic20.webp
1438
%%DATADIR%%/themes/modern-es-de/art_legacy/videopac.webp
1439
%%DATADIR%%/themes/modern-es-de/art_legacy/virtualboy.webp
1440
%%DATADIR%%/themes/modern-es-de/art_legacy/vpinball.webp
1441
%%DATADIR%%/themes/modern-es-de/art_legacy/vsmile.webp
1442
%%DATADIR%%/themes/modern-es-de/art_legacy/wasm4.webp
1443
%%DATADIR%%/themes/modern-es-de/art_legacy/web.webp
1444
%%DATADIR%%/themes/modern-es-de/art_legacy/wii.webp
1445
%%DATADIR%%/themes/modern-es-de/art_legacy/wiiu.webp
1446
%%DATADIR%%/themes/modern-es-de/art_legacy/windows.webp
1447
%%DATADIR%%/themes/modern-es-de/art_legacy/windows3x.webp
1448
%%DATADIR%%/themes/modern-es-de/art_legacy/windows9x.webp
1449
%%DATADIR%%/themes/modern-es-de/art_legacy/wonderswan.webp
1450
%%DATADIR%%/themes/modern-es-de/art_legacy/wonderswancolor.webp
1451
%%DATADIR%%/themes/modern-es-de/art_legacy/x1.webp
1452
%%DATADIR%%/themes/modern-es-de/art_legacy/x68000.webp
1453
%%DATADIR%%/themes/modern-es-de/art_legacy/xbox.webp
1454
%%DATADIR%%/themes/modern-es-de/art_legacy/xbox360.webp
1455
%%DATADIR%%/themes/modern-es-de/art_legacy/zmachine.webp
1456
%%DATADIR%%/themes/modern-es-de/art_legacy/zx81.webp
1457
%%DATADIR%%/themes/modern-es-de/art_legacy/zxnext.webp
1458
%%DATADIR%%/themes/modern-es-de/art_legacy/zxspectrum.webp
1459
%%DATADIR%%/themes/modern-es-de/aspect-ratio-16-10.xml
1460
%%DATADIR%%/themes/modern-es-de/aspect-ratio-16-9.xml
1461
%%DATADIR%%/themes/modern-es-de/aspect-ratio-21-9.xml
1462
%%DATADIR%%/themes/modern-es-de/aspect-ratio-4-3.xml
1463
%%DATADIR%%/themes/modern-es-de/assets/arrow_block.svg
1464
%%DATADIR%%/themes/modern-es-de/assets/box.png
1465
%%DATADIR%%/themes/modern-es-de/assets/controllers/classic.svg
1466
%%DATADIR%%/themes/modern-es-de/assets/controllers/dualshock4.svg
1467
%%DATADIR%%/themes/modern-es-de/assets/controllers/generic.svg
1468
%%DATADIR%%/themes/modern-es-de/assets/controllers/gun.svg
1469
%%DATADIR%%/themes/modern-es-de/assets/controllers/joycon-left.svg
1470
%%DATADIR%%/themes/modern-es-de/assets/controllers/joycon-pair.svg
1471
%%DATADIR%%/themes/modern-es-de/assets/controllers/joystick.svg
1472
%%DATADIR%%/themes/modern-es-de/assets/controllers/keyboard-mouse.svg
1473
%%DATADIR%%/themes/modern-es-de/assets/controllers/keyboard.svg
1474
%%DATADIR%%/themes/modern-es-de/assets/controllers/mouse.svg
1475
%%DATADIR%%/themes/modern-es-de/assets/controllers/n64.svg
1476
%%DATADIR%%/themes/modern-es-de/assets/controllers/trackball.svg
1477
%%DATADIR%%/themes/modern-es-de/assets/controllers/wheel.svg
1478
%%DATADIR%%/themes/modern-es-de/assets/controllers/wiimote-nunchuck.svg
1479
%%DATADIR%%/themes/modern-es-de/assets/controllers/wiimote.svg
1480
%%DATADIR%%/themes/modern-es-de/assets/controllers/xbox.svg
1481
%%DATADIR%%/themes/modern-es-de/assets/dark/badges/altemulator.svg
1482
%%DATADIR%%/themes/modern-es-de/assets/dark/badges/broken.svg
1483
%%DATADIR%%/themes/modern-es-de/assets/dark/badges/collection.svg
1484
%%DATADIR%%/themes/modern-es-de/assets/dark/badges/completed.svg
1485
%%DATADIR%%/themes/modern-es-de/assets/dark/badges/controller.svg
1486
%%DATADIR%%/themes/modern-es-de/assets/dark/badges/favorite.svg
1487
%%DATADIR%%/themes/modern-es-de/assets/dark/badges/folder.svg
1488
%%DATADIR%%/themes/modern-es-de/assets/dark/badges/kidgame.svg
1489
%%DATADIR%%/themes/modern-es-de/assets/dark/badges/manual.svg
1490
%%DATADIR%%/themes/modern-es-de/assets/dark/gradient.png
1491
%%DATADIR%%/themes/modern-es-de/assets/dark/star-unfilled.svg
1492
%%DATADIR%%/themes/modern-es-de/assets/fonts/nswitchui.ttf
1493
%%DATADIR%%/themes/modern-es-de/assets/frame.png
1494
%%DATADIR%%/themes/modern-es-de/assets/light/badges/altemulator.svg
1495
%%DATADIR%%/themes/modern-es-de/assets/light/badges/broken.svg
1496
%%DATADIR%%/themes/modern-es-de/assets/light/badges/collection.svg
1497
%%DATADIR%%/themes/modern-es-de/assets/light/badges/completed.svg
1498
%%DATADIR%%/themes/modern-es-de/assets/light/badges/controller.svg
1499
%%DATADIR%%/themes/modern-es-de/assets/light/badges/favorite.svg
1500
%%DATADIR%%/themes/modern-es-de/assets/light/badges/folder.svg
1501
%%DATADIR%%/themes/modern-es-de/assets/light/badges/kidgame.svg
1502
%%DATADIR%%/themes/modern-es-de/assets/light/badges/manual.svg
1503
%%DATADIR%%/themes/modern-es-de/assets/light/gradient.png
1504
%%DATADIR%%/themes/modern-es-de/assets/light/star-unfilled.svg
1505
%%DATADIR%%/themes/modern-es-de/assets/selection_box.png
1506
%%DATADIR%%/themes/modern-es-de/assets/selection_box.svg
1507
%%DATADIR%%/themes/modern-es-de/assets/sounds/back.wav
1508
%%DATADIR%%/themes/modern-es-de/assets/sounds/favorite.wav
1509
%%DATADIR%%/themes/modern-es-de/assets/sounds/launch.wav
1510
%%DATADIR%%/themes/modern-es-de/assets/sounds/quicksysselect.wav
1511
%%DATADIR%%/themes/modern-es-de/assets/sounds/scroll.wav
1512
%%DATADIR%%/themes/modern-es-de/assets/sounds/select.wav
1513
%%DATADIR%%/themes/modern-es-de/assets/sounds/systembrowse.wav
1514
%%DATADIR%%/themes/modern-es-de/assets/star-filled.svg
1515
%%DATADIR%%/themes/modern-es-de/capabilities.xml
1516
%%DATADIR%%/themes/modern-es-de/colors.xml
1517
%%DATADIR%%/themes/modern-es-de/custom-collections/theme.xml
1518
%%DATADIR%%/themes/modern-es-de/navigationsounds.xml
1519
%%DATADIR%%/themes/modern-es-de/theme.xml
1520
%%DATADIR%%/themes/slate-es-de/3do/colors.xml
1521
%%DATADIR%%/themes/slate-es-de/3do/images/consolegame.svg
1522
%%DATADIR%%/themes/slate-es-de/3do/images/controller.svg
1523
%%DATADIR%%/themes/slate-es-de/3do/images/logo.svg
1524
%%DATADIR%%/themes/slate-es-de/3do/systeminfo.xml
1525
%%DATADIR%%/themes/slate-es-de/CREDITS.md
1526
%%DATADIR%%/themes/slate-es-de/LICENSE
1527
%%DATADIR%%/themes/slate-es-de/MISSING.md
1528
%%DATADIR%%/themes/slate-es-de/README.md
1529
%%DATADIR%%/themes/slate-es-de/adam/colors.xml
1530
%%DATADIR%%/themes/slate-es-de/adam/images/consolegame.svg
1531
%%DATADIR%%/themes/slate-es-de/adam/images/controller.svg
1532
%%DATADIR%%/themes/slate-es-de/adam/images/logo.svg
1533
%%DATADIR%%/themes/slate-es-de/adam/systeminfo.xml
1534
%%DATADIR%%/themes/slate-es-de/ags/colors.xml
1535
%%DATADIR%%/themes/slate-es-de/ags/images/logo.svg
1536
%%DATADIR%%/themes/slate-es-de/ags/systeminfo.xml
1537
%%DATADIR%%/themes/slate-es-de/amiga/colors.xml
1538
%%DATADIR%%/themes/slate-es-de/amiga/images/consolegame.svg
1539
%%DATADIR%%/themes/slate-es-de/amiga/images/controller.svg
1540
%%DATADIR%%/themes/slate-es-de/amiga/images/logo.svg
1541
%%DATADIR%%/themes/slate-es-de/amiga/systeminfo.xml
1542
%%DATADIR%%/themes/slate-es-de/amiga1200/colors.xml
1543
%%DATADIR%%/themes/slate-es-de/amiga1200/images/consolegame.svg
1544
%%DATADIR%%/themes/slate-es-de/amiga1200/images/controller.svg
1545
%%DATADIR%%/themes/slate-es-de/amiga1200/images/logo.svg
1546
%%DATADIR%%/themes/slate-es-de/amiga1200/systeminfo.xml
1547
%%DATADIR%%/themes/slate-es-de/amiga600/colors.xml
1548
%%DATADIR%%/themes/slate-es-de/amiga600/images/consolegame.svg
1549
%%DATADIR%%/themes/slate-es-de/amiga600/images/controller.svg
1550
%%DATADIR%%/themes/slate-es-de/amiga600/images/logo.svg
1551
%%DATADIR%%/themes/slate-es-de/amiga600/systeminfo.xml
1552
%%DATADIR%%/themes/slate-es-de/amigacd32/colors.xml
1553
%%DATADIR%%/themes/slate-es-de/amigacd32/images/logo.svg
1554
%%DATADIR%%/themes/slate-es-de/amigacd32/systeminfo.xml
1555
%%DATADIR%%/themes/slate-es-de/amstradcpc/colors.xml
1556
%%DATADIR%%/themes/slate-es-de/amstradcpc/images/consolegame.svg
1557
%%DATADIR%%/themes/slate-es-de/amstradcpc/images/logo.svg
1558
%%DATADIR%%/themes/slate-es-de/amstradcpc/systeminfo.xml
1559
%%DATADIR%%/themes/slate-es-de/android/colors.xml
1560
%%DATADIR%%/themes/slate-es-de/android/images/logo.svg
1561
%%DATADIR%%/themes/slate-es-de/android/systeminfo.xml
1562
%%DATADIR%%/themes/slate-es-de/androidapps/colors.xml
1563
%%DATADIR%%/themes/slate-es-de/androidapps/images/logo.svg
1564
%%DATADIR%%/themes/slate-es-de/androidapps/systeminfo.xml
1565
%%DATADIR%%/themes/slate-es-de/androidgames/colors.xml
1566
%%DATADIR%%/themes/slate-es-de/androidgames/images/logo.svg
1567
%%DATADIR%%/themes/slate-es-de/androidgames/systeminfo.xml
1568
%%DATADIR%%/themes/slate-es-de/apple2/colors.xml
1569
%%DATADIR%%/themes/slate-es-de/apple2/images/consolegame.svg
1570
%%DATADIR%%/themes/slate-es-de/apple2/images/controller.svg
1571
%%DATADIR%%/themes/slate-es-de/apple2/images/logo.svg
1572
%%DATADIR%%/themes/slate-es-de/apple2/systeminfo.xml
1573
%%DATADIR%%/themes/slate-es-de/apple2gs/colors.xml
1574
%%DATADIR%%/themes/slate-es-de/apple2gs/images/logo.svg
1575
%%DATADIR%%/themes/slate-es-de/apple2gs/systeminfo.xml
1576
%%DATADIR%%/themes/slate-es-de/arcade/colors.xml
1577
%%DATADIR%%/themes/slate-es-de/arcade/images/consolegame.svg
1578
%%DATADIR%%/themes/slate-es-de/arcade/images/controller.svg
1579
%%DATADIR%%/themes/slate-es-de/arcade/images/logo.svg
1580
%%DATADIR%%/themes/slate-es-de/arcade/images/logo2.svg
1581
%%DATADIR%%/themes/slate-es-de/arcade/systeminfo.xml
1582
%%DATADIR%%/themes/slate-es-de/arcadia/colors.xml
1583
%%DATADIR%%/themes/slate-es-de/arcadia/images/logo.svg
1584
%%DATADIR%%/themes/slate-es-de/arcadia/systeminfo.xml
1585
%%DATADIR%%/themes/slate-es-de/archimedes/colors.xml
1586
%%DATADIR%%/themes/slate-es-de/archimedes/images/logo.svg
1587
%%DATADIR%%/themes/slate-es-de/archimedes/systeminfo.xml
1588
%%DATADIR%%/themes/slate-es-de/arduboy/colors.xml
1589
%%DATADIR%%/themes/slate-es-de/arduboy/images/logo.svg
1590
%%DATADIR%%/themes/slate-es-de/arduboy/systeminfo.xml
1591
%%DATADIR%%/themes/slate-es-de/aspect-ratio-16-9-vertical.xml
1592
%%DATADIR%%/themes/slate-es-de/aspect-ratio-16-9.xml
1593
%%DATADIR%%/themes/slate-es-de/aspect-ratio-4-3-vertical.xml
1594
%%DATADIR%%/themes/slate-es-de/aspect-ratio-4-3.xml
1595
%%DATADIR%%/themes/slate-es-de/astrocade/colors.xml
1596
%%DATADIR%%/themes/slate-es-de/astrocade/images/logo.svg
1597
%%DATADIR%%/themes/slate-es-de/astrocade/systeminfo.xml
1598
%%DATADIR%%/themes/slate-es-de/atari2600/colors.xml
1599
%%DATADIR%%/themes/slate-es-de/atari2600/images/consolegame.svg
1600
%%DATADIR%%/themes/slate-es-de/atari2600/images/controller.svg
1601
%%DATADIR%%/themes/slate-es-de/atari2600/images/logo.svg
1602
%%DATADIR%%/themes/slate-es-de/atari2600/systeminfo.xml
1603
%%DATADIR%%/themes/slate-es-de/atari5200/colors.xml
1604
%%DATADIR%%/themes/slate-es-de/atari5200/images/logo.svg
1605
%%DATADIR%%/themes/slate-es-de/atari5200/systeminfo.xml
1606
%%DATADIR%%/themes/slate-es-de/atari7800/colors.xml
1607
%%DATADIR%%/themes/slate-es-de/atari7800/images/consolegame.svg
1608
%%DATADIR%%/themes/slate-es-de/atari7800/images/controller.svg
1609
%%DATADIR%%/themes/slate-es-de/atari7800/images/logo.svg
1610
%%DATADIR%%/themes/slate-es-de/atari7800/systeminfo.xml
1611
%%DATADIR%%/themes/slate-es-de/atari800/colors.xml
1612
%%DATADIR%%/themes/slate-es-de/atari800/images/logo.svg
1613
%%DATADIR%%/themes/slate-es-de/atari800/systeminfo.xml
1614
%%DATADIR%%/themes/slate-es-de/atarijaguar/colors.xml
1615
%%DATADIR%%/themes/slate-es-de/atarijaguar/images/logo.svg
1616
%%DATADIR%%/themes/slate-es-de/atarijaguar/images/logo2.svg
1617
%%DATADIR%%/themes/slate-es-de/atarijaguar/systeminfo.xml
1618
%%DATADIR%%/themes/slate-es-de/atarijaguarcd/colors.xml
1619
%%DATADIR%%/themes/slate-es-de/atarijaguarcd/images/logo.svg
1620
%%DATADIR%%/themes/slate-es-de/atarijaguarcd/systeminfo.xml
1621
%%DATADIR%%/themes/slate-es-de/atarilynx/colors.xml
1622
%%DATADIR%%/themes/slate-es-de/atarilynx/images/consolegame.svg
1623
%%DATADIR%%/themes/slate-es-de/atarilynx/images/logo.svg
1624
%%DATADIR%%/themes/slate-es-de/atarilynx/systeminfo.xml
1625
%%DATADIR%%/themes/slate-es-de/atarist/colors.xml
1626
%%DATADIR%%/themes/slate-es-de/atarist/images/consolegame.svg
1627
%%DATADIR%%/themes/slate-es-de/atarist/images/logo.svg
1628
%%DATADIR%%/themes/slate-es-de/atarist/systeminfo.xml
1629
%%DATADIR%%/themes/slate-es-de/atarixe/colors.xml
1630
%%DATADIR%%/themes/slate-es-de/atarixe/images/logo.svg
1631
%%DATADIR%%/themes/slate-es-de/atarixe/systeminfo.xml
1632
%%DATADIR%%/themes/slate-es-de/atomiswave/colors.xml
1633
%%DATADIR%%/themes/slate-es-de/atomiswave/images/logo.svg
1634
%%DATADIR%%/themes/slate-es-de/atomiswave/systeminfo.xml
1635
%%DATADIR%%/themes/slate-es-de/auto-allgames/colors.xml
1636
%%DATADIR%%/themes/slate-es-de/auto-allgames/images/consolegame.svg
1637
%%DATADIR%%/themes/slate-es-de/auto-allgames/images/logo.svg
1638
%%DATADIR%%/themes/slate-es-de/auto-allgames/systeminfo.xml
1639
%%DATADIR%%/themes/slate-es-de/auto-allgames/theme.xml
1640
%%DATADIR%%/themes/slate-es-de/auto-favorites/colors.xml
1641
%%DATADIR%%/themes/slate-es-de/auto-favorites/images/consolegame.svg
1642
%%DATADIR%%/themes/slate-es-de/auto-favorites/images/logo.svg
1643
%%DATADIR%%/themes/slate-es-de/auto-favorites/systeminfo.xml
1644
%%DATADIR%%/themes/slate-es-de/auto-favorites/theme.xml
1645
%%DATADIR%%/themes/slate-es-de/auto-lastplayed/colors.xml
1646
%%DATADIR%%/themes/slate-es-de/auto-lastplayed/images/consolegame.svg
1647
%%DATADIR%%/themes/slate-es-de/auto-lastplayed/images/logo.svg
1648
%%DATADIR%%/themes/slate-es-de/auto-lastplayed/systeminfo.xml
1649
%%DATADIR%%/themes/slate-es-de/auto-lastplayed/theme.xml
1650
%%DATADIR%%/themes/slate-es-de/bbcmicro/colors.xml
1651
%%DATADIR%%/themes/slate-es-de/bbcmicro/images/logo.svg
1652
%%DATADIR%%/themes/slate-es-de/bbcmicro/systeminfo.xml
1653
%%DATADIR%%/themes/slate-es-de/c64/colors.xml
1654
%%DATADIR%%/themes/slate-es-de/c64/images/consolegame.svg
1655
%%DATADIR%%/themes/slate-es-de/c64/images/controller.svg
1656
%%DATADIR%%/themes/slate-es-de/c64/images/logo.svg
1657
%%DATADIR%%/themes/slate-es-de/c64/systeminfo.xml
1658
%%DATADIR%%/themes/slate-es-de/capabilities.xml
1659
%%DATADIR%%/themes/slate-es-de/cdimono1/colors.xml
1660
%%DATADIR%%/themes/slate-es-de/cdimono1/images/logo.svg
1661
%%DATADIR%%/themes/slate-es-de/cdimono1/systeminfo.xml
1662
%%DATADIR%%/themes/slate-es-de/cdtv/colors.xml
1663
%%DATADIR%%/themes/slate-es-de/cdtv/images/logo.svg
1664
%%DATADIR%%/themes/slate-es-de/cdtv/systeminfo.xml
1665
%%DATADIR%%/themes/slate-es-de/chailove/colors.xml
1666
%%DATADIR%%/themes/slate-es-de/chailove/images/logo.svg
1667
%%DATADIR%%/themes/slate-es-de/chailove/images/logo2.svg
1668
%%DATADIR%%/themes/slate-es-de/chailove/systeminfo.xml
1669
%%DATADIR%%/themes/slate-es-de/channelf/colors.xml
1670
%%DATADIR%%/themes/slate-es-de/channelf/images/logo.svg
1671
%%DATADIR%%/themes/slate-es-de/channelf/systeminfo.xml
1672
%%DATADIR%%/themes/slate-es-de/coco/colors.xml
1673
%%DATADIR%%/themes/slate-es-de/coco/images/logo.svg
1674
%%DATADIR%%/themes/slate-es-de/coco/systeminfo.xml
1675
%%DATADIR%%/themes/slate-es-de/colecovision/colors.xml
1676
%%DATADIR%%/themes/slate-es-de/colecovision/images/consolegame.svg
1677
%%DATADIR%%/themes/slate-es-de/colecovision/images/controller.svg
1678
%%DATADIR%%/themes/slate-es-de/colecovision/images/logo.svg
1679
%%DATADIR%%/themes/slate-es-de/colecovision/systeminfo.xml
1680
%%DATADIR%%/themes/slate-es-de/colors.xml
1681
%%DATADIR%%/themes/slate-es-de/consolearcade/colors.xml
1682
%%DATADIR%%/themes/slate-es-de/consolearcade/images/logo.svg
1683
%%DATADIR%%/themes/slate-es-de/consolearcade/systeminfo.xml
1684
%%DATADIR%%/themes/slate-es-de/core/fonts/Exo2-BoldCondensed.otf
1685
%%DATADIR%%/themes/slate-es-de/core/fonts/Exo2-RegularCondensed.otf
1686
%%DATADIR%%/themes/slate-es-de/core/fonts/Exo2-SemiBoldCondensed.otf
1687
%%DATADIR%%/themes/slate-es-de/core/images/background.png
1688
%%DATADIR%%/themes/slate-es-de/core/images/band.png
1689
%%DATADIR%%/themes/slate-es-de/core/images/frame.png
1690
%%DATADIR%%/themes/slate-es-de/core/images/grid_frame.svg
1691
%%DATADIR%%/themes/slate-es-de/core/images/rating_empty.svg
1692
%%DATADIR%%/themes/slate-es-de/core/images/rating_filled.svg
1693
%%DATADIR%%/themes/slate-es-de/core/sounds/back.wav
1694
%%DATADIR%%/themes/slate-es-de/core/sounds/favorite.wav
1695
%%DATADIR%%/themes/slate-es-de/core/sounds/launch.wav
1696
%%DATADIR%%/themes/slate-es-de/core/sounds/quicksysselect.wav
1697
%%DATADIR%%/themes/slate-es-de/core/sounds/scroll.wav
1698
%%DATADIR%%/themes/slate-es-de/core/sounds/select.wav
1699
%%DATADIR%%/themes/slate-es-de/core/sounds/systembrowse.wav
1700
%%DATADIR%%/themes/slate-es-de/cps/colors.xml
1701
%%DATADIR%%/themes/slate-es-de/cps/images/logo.svg
1702
%%DATADIR%%/themes/slate-es-de/cps/systeminfo.xml
1703
%%DATADIR%%/themes/slate-es-de/cps1/colors.xml
1704
%%DATADIR%%/themes/slate-es-de/cps1/images/logo.svg
1705
%%DATADIR%%/themes/slate-es-de/cps1/systeminfo.xml
1706
%%DATADIR%%/themes/slate-es-de/cps2/colors.xml
1707
%%DATADIR%%/themes/slate-es-de/cps2/images/logo.svg
1708
%%DATADIR%%/themes/slate-es-de/cps2/systeminfo.xml
1709
%%DATADIR%%/themes/slate-es-de/cps3/colors.xml
1710
%%DATADIR%%/themes/slate-es-de/cps3/images/logo.svg
1711
%%DATADIR%%/themes/slate-es-de/cps3/systeminfo.xml
1712
%%DATADIR%%/themes/slate-es-de/crvision/colors.xml
1713
%%DATADIR%%/themes/slate-es-de/crvision/images/logo.svg
1714
%%DATADIR%%/themes/slate-es-de/crvision/systeminfo.xml
1715
%%DATADIR%%/themes/slate-es-de/custom-collections/colors.xml
1716
%%DATADIR%%/themes/slate-es-de/custom-collections/images/consolegame.svg
1717
%%DATADIR%%/themes/slate-es-de/custom-collections/images/logo.svg
1718
%%DATADIR%%/themes/slate-es-de/custom-collections/systeminfo.xml
1719
%%DATADIR%%/themes/slate-es-de/custom-collections/theme.xml
1720
%%DATADIR%%/themes/slate-es-de/daphne/colors.xml
1721
%%DATADIR%%/themes/slate-es-de/daphne/images/logo.svg
1722
%%DATADIR%%/themes/slate-es-de/daphne/systeminfo.xml
1723
%%DATADIR%%/themes/slate-es-de/desktop/colors.xml
1724
%%DATADIR%%/themes/slate-es-de/desktop/images/logo.svg
1725
%%DATADIR%%/themes/slate-es-de/desktop/systeminfo.xml
1726
%%DATADIR%%/themes/slate-es-de/doom/colors.xml
1727
%%DATADIR%%/themes/slate-es-de/doom/images/consolegame.svg
1728
%%DATADIR%%/themes/slate-es-de/doom/images/controller.svg
1729
%%DATADIR%%/themes/slate-es-de/doom/images/logo.svg
1730
%%DATADIR%%/themes/slate-es-de/doom/systeminfo.xml
1731
%%DATADIR%%/themes/slate-es-de/dos/colors.xml
1732
%%DATADIR%%/themes/slate-es-de/dos/images/consolegame.svg
1733
%%DATADIR%%/themes/slate-es-de/dos/images/controller.svg
1734
%%DATADIR%%/themes/slate-es-de/dos/images/logo.svg
1735
%%DATADIR%%/themes/slate-es-de/dos/systeminfo.xml
1736
%%DATADIR%%/themes/slate-es-de/dragon32/colors.xml
1737
%%DATADIR%%/themes/slate-es-de/dragon32/images/logo.svg
1738
%%DATADIR%%/themes/slate-es-de/dragon32/systeminfo.xml
1739
%%DATADIR%%/themes/slate-es-de/dreamcast/colors.xml
1740
%%DATADIR%%/themes/slate-es-de/dreamcast/images/consolegame.svg
1741
%%DATADIR%%/themes/slate-es-de/dreamcast/images/controller.svg
1742
%%DATADIR%%/themes/slate-es-de/dreamcast/images/jp/consolegame.svg
1743
%%DATADIR%%/themes/slate-es-de/dreamcast/images/jp/controller.svg
1744
%%DATADIR%%/themes/slate-es-de/dreamcast/images/jp/logo.svg
1745
%%DATADIR%%/themes/slate-es-de/dreamcast/images/logo.svg
1746
%%DATADIR%%/themes/slate-es-de/dreamcast/images/us/consolegame.svg
1747
%%DATADIR%%/themes/slate-es-de/dreamcast/images/us/controller.svg
1748
%%DATADIR%%/themes/slate-es-de/dreamcast/images/us/logo.svg
1749
%%DATADIR%%/themes/slate-es-de/dreamcast/systeminfo.xml
1750
%%DATADIR%%/themes/slate-es-de/easyrpg/colors.xml
1751
%%DATADIR%%/themes/slate-es-de/easyrpg/images/logo.svg
1752
%%DATADIR%%/themes/slate-es-de/easyrpg/systeminfo.xml
1753
%%DATADIR%%/themes/slate-es-de/electron/colors.xml
1754
%%DATADIR%%/themes/slate-es-de/electron/images/logo.svg
1755
%%DATADIR%%/themes/slate-es-de/electron/systeminfo.xml
1756
%%DATADIR%%/themes/slate-es-de/emulators/colors.xml
1757
%%DATADIR%%/themes/slate-es-de/emulators/images/logo.svg
1758
%%DATADIR%%/themes/slate-es-de/emulators/systeminfo.xml
1759
%%DATADIR%%/themes/slate-es-de/epic/colors.xml
1760
%%DATADIR%%/themes/slate-es-de/epic/images/logo.svg
1761
%%DATADIR%%/themes/slate-es-de/epic/systeminfo.xml
1762
%%DATADIR%%/themes/slate-es-de/famicom/colors.xml
1763
%%DATADIR%%/themes/slate-es-de/famicom/images/consolegame.svg
1764
%%DATADIR%%/themes/slate-es-de/famicom/images/controller.svg
1765
%%DATADIR%%/themes/slate-es-de/famicom/images/logo.svg
1766
%%DATADIR%%/themes/slate-es-de/famicom/systeminfo.xml
1767
%%DATADIR%%/themes/slate-es-de/fba/colors.xml
1768
%%DATADIR%%/themes/slate-es-de/fba/images/consolegame.svg
1769
%%DATADIR%%/themes/slate-es-de/fba/images/controller.svg
1770
%%DATADIR%%/themes/slate-es-de/fba/images/logo.svg
1771
%%DATADIR%%/themes/slate-es-de/fba/systeminfo.xml
1772
%%DATADIR%%/themes/slate-es-de/fbneo/colors.xml
1773
%%DATADIR%%/themes/slate-es-de/fbneo/images/consolegame.svg
1774
%%DATADIR%%/themes/slate-es-de/fbneo/images/controller.svg
1775
%%DATADIR%%/themes/slate-es-de/fbneo/images/logo.svg
1776
%%DATADIR%%/themes/slate-es-de/fbneo/systeminfo.xml
1777
%%DATADIR%%/themes/slate-es-de/fds/colors.xml
1778
%%DATADIR%%/themes/slate-es-de/fds/images/consolegame.svg
1779
%%DATADIR%%/themes/slate-es-de/fds/images/controller.svg
1780
%%DATADIR%%/themes/slate-es-de/fds/images/logo.svg
1781
%%DATADIR%%/themes/slate-es-de/fds/systeminfo.xml
1782
%%DATADIR%%/themes/slate-es-de/flash/colors.xml
1783
%%DATADIR%%/themes/slate-es-de/flash/images/logo.svg
1784
%%DATADIR%%/themes/slate-es-de/flash/systeminfo.xml
1785
%%DATADIR%%/themes/slate-es-de/fm7/colors.xml
1786
%%DATADIR%%/themes/slate-es-de/fm7/images/logo.svg
1787
%%DATADIR%%/themes/slate-es-de/fm7/systeminfo.xml
1788
%%DATADIR%%/themes/slate-es-de/fmtowns/colors.xml
1789
%%DATADIR%%/themes/slate-es-de/fmtowns/images/logo.svg
1790
%%DATADIR%%/themes/slate-es-de/fmtowns/systeminfo.xml
1791
%%DATADIR%%/themes/slate-es-de/fpinball/colors.xml
1792
%%DATADIR%%/themes/slate-es-de/fpinball/images/logo.svg
1793
%%DATADIR%%/themes/slate-es-de/fpinball/systeminfo.xml
1794
%%DATADIR%%/themes/slate-es-de/gamate/colors.xml
1795
%%DATADIR%%/themes/slate-es-de/gamate/images/logo.svg
1796
%%DATADIR%%/themes/slate-es-de/gamate/systeminfo.xml
1797
%%DATADIR%%/themes/slate-es-de/gameandwatch/colors.xml
1798
%%DATADIR%%/themes/slate-es-de/gameandwatch/images/consolegame.svg
1799
%%DATADIR%%/themes/slate-es-de/gameandwatch/images/logo.svg
1800
%%DATADIR%%/themes/slate-es-de/gameandwatch/systeminfo.xml
1801
%%DATADIR%%/themes/slate-es-de/gamecom/colors.xml
1802
%%DATADIR%%/themes/slate-es-de/gamecom/images/logo.svg
1803
%%DATADIR%%/themes/slate-es-de/gamecom/systeminfo.xml
1804
%%DATADIR%%/themes/slate-es-de/gamegear/colors.xml
1805
%%DATADIR%%/themes/slate-es-de/gamegear/images/consolegame.svg
1806
%%DATADIR%%/themes/slate-es-de/gamegear/images/logo.svg
1807
%%DATADIR%%/themes/slate-es-de/gamegear/systeminfo.xml
1808
%%DATADIR%%/themes/slate-es-de/gb/colors.xml
1809
%%DATADIR%%/themes/slate-es-de/gb/images/consolegame.svg
1810
%%DATADIR%%/themes/slate-es-de/gb/images/logo.svg
1811
%%DATADIR%%/themes/slate-es-de/gb/systeminfo.xml
1812
%%DATADIR%%/themes/slate-es-de/gba/colors.xml
1813
%%DATADIR%%/themes/slate-es-de/gba/images/consolegame.svg
1814
%%DATADIR%%/themes/slate-es-de/gba/images/logo.svg
1815
%%DATADIR%%/themes/slate-es-de/gba/systeminfo.xml
1816
%%DATADIR%%/themes/slate-es-de/gbc/colors.xml
1817
%%DATADIR%%/themes/slate-es-de/gbc/images/consolegame.svg
1818
%%DATADIR%%/themes/slate-es-de/gbc/images/logo.svg
1819
%%DATADIR%%/themes/slate-es-de/gbc/systeminfo.xml
1820
%%DATADIR%%/themes/slate-es-de/gc/colors.xml
1821
%%DATADIR%%/themes/slate-es-de/gc/images/consolegame.svg
1822
%%DATADIR%%/themes/slate-es-de/gc/images/controller.svg
1823
%%DATADIR%%/themes/slate-es-de/gc/images/logo.svg
1824
%%DATADIR%%/themes/slate-es-de/gc/systeminfo.xml
1825
%%DATADIR%%/themes/slate-es-de/genesis/colors.xml
1826
%%DATADIR%%/themes/slate-es-de/genesis/images/consolegame.svg
1827
%%DATADIR%%/themes/slate-es-de/genesis/images/controller.svg
1828
%%DATADIR%%/themes/slate-es-de/genesis/images/logo.svg
1829
%%DATADIR%%/themes/slate-es-de/genesis/systeminfo.xml
1830
%%DATADIR%%/themes/slate-es-de/gmaster/colors.xml
1831
%%DATADIR%%/themes/slate-es-de/gmaster/images/logo.svg
1832
%%DATADIR%%/themes/slate-es-de/gmaster/systeminfo.xml
1833
%%DATADIR%%/themes/slate-es-de/gx4000/colors.xml
1834
%%DATADIR%%/themes/slate-es-de/gx4000/images/logo.svg
1835
%%DATADIR%%/themes/slate-es-de/gx4000/systeminfo.xml
1836
%%DATADIR%%/themes/slate-es-de/intellivision/colors.xml
1837
%%DATADIR%%/themes/slate-es-de/intellivision/images/logo.svg
1838
%%DATADIR%%/themes/slate-es-de/intellivision/systeminfo.xml
1839
%%DATADIR%%/themes/slate-es-de/j2me/colors.xml
1840
%%DATADIR%%/themes/slate-es-de/j2me/images/logo.svg
1841
%%DATADIR%%/themes/slate-es-de/j2me/systeminfo.xml
1842
%%DATADIR%%/themes/slate-es-de/kodi/colors.xml
1843
%%DATADIR%%/themes/slate-es-de/kodi/images/logo.svg
1844
%%DATADIR%%/themes/slate-es-de/kodi/systeminfo.xml
1845
%%DATADIR%%/themes/slate-es-de/laserdisc/colors.xml
1846
%%DATADIR%%/themes/slate-es-de/laserdisc/images/logo.svg
1847
%%DATADIR%%/themes/slate-es-de/laserdisc/systeminfo.xml
1848
%%DATADIR%%/themes/slate-es-de/lcdgames/colors.xml
1849
%%DATADIR%%/themes/slate-es-de/lcdgames/images/logo.svg
1850
%%DATADIR%%/themes/slate-es-de/lcdgames/systeminfo.xml
1851
%%DATADIR%%/themes/slate-es-de/lowresnx/colors.xml
1852
%%DATADIR%%/themes/slate-es-de/lowresnx/images/logo.svg
1853
%%DATADIR%%/themes/slate-es-de/lowresnx/systeminfo.xml
1854
%%DATADIR%%/themes/slate-es-de/lutris/colors.xml
1855
%%DATADIR%%/themes/slate-es-de/lutris/images/logo.svg
1856
%%DATADIR%%/themes/slate-es-de/lutris/systeminfo.xml
1857
%%DATADIR%%/themes/slate-es-de/lutro/colors.xml
1858
%%DATADIR%%/themes/slate-es-de/lutro/images/consolegame.svg
1859
%%DATADIR%%/themes/slate-es-de/lutro/images/logo.svg
1860
%%DATADIR%%/themes/slate-es-de/lutro/systeminfo.xml
1861
%%DATADIR%%/themes/slate-es-de/macintosh/colors.xml
1862
%%DATADIR%%/themes/slate-es-de/macintosh/images/logo.svg
1863
%%DATADIR%%/themes/slate-es-de/macintosh/systeminfo.xml
1864
%%DATADIR%%/themes/slate-es-de/mame-advmame/colors.xml
1865
%%DATADIR%%/themes/slate-es-de/mame-advmame/images/consolegame.svg
1866
%%DATADIR%%/themes/slate-es-de/mame-advmame/images/controller.svg
1867
%%DATADIR%%/themes/slate-es-de/mame-advmame/images/logo.svg
1868
%%DATADIR%%/themes/slate-es-de/mame-advmame/systeminfo.xml
1869
%%DATADIR%%/themes/slate-es-de/mame/colors.xml
1870
%%DATADIR%%/themes/slate-es-de/mame/images/consolegame.svg
1871
%%DATADIR%%/themes/slate-es-de/mame/images/controller.svg
1872
%%DATADIR%%/themes/slate-es-de/mame/images/logo.svg
1873
%%DATADIR%%/themes/slate-es-de/mame/systeminfo.xml
1874
%%DATADIR%%/themes/slate-es-de/mastersystem/colors.xml
1875
%%DATADIR%%/themes/slate-es-de/mastersystem/images/consolegame.svg
1876
%%DATADIR%%/themes/slate-es-de/mastersystem/images/controller.svg
1877
%%DATADIR%%/themes/slate-es-de/mastersystem/images/logo.svg
1878
%%DATADIR%%/themes/slate-es-de/mastersystem/systeminfo.xml
1879
%%DATADIR%%/themes/slate-es-de/megacd/colors.xml
1880
%%DATADIR%%/themes/slate-es-de/megacd/images/consolegame.svg
1881
%%DATADIR%%/themes/slate-es-de/megacd/images/controller.svg
1882
%%DATADIR%%/themes/slate-es-de/megacd/images/logo.svg
1883
%%DATADIR%%/themes/slate-es-de/megacd/systeminfo.xml
1884
%%DATADIR%%/themes/slate-es-de/megacdjp/colors.xml
1885
%%DATADIR%%/themes/slate-es-de/megacdjp/images/consolegame.svg
1886
%%DATADIR%%/themes/slate-es-de/megacdjp/images/controller.svg
1887
%%DATADIR%%/themes/slate-es-de/megacdjp/images/logo.svg
1888
%%DATADIR%%/themes/slate-es-de/megacdjp/systeminfo.xml
1889
%%DATADIR%%/themes/slate-es-de/megadrive/colors.xml
1890
%%DATADIR%%/themes/slate-es-de/megadrive/images/consolegame.svg
1891
%%DATADIR%%/themes/slate-es-de/megadrive/images/consolegame2.svg
1892
%%DATADIR%%/themes/slate-es-de/megadrive/images/controller.svg
1893
%%DATADIR%%/themes/slate-es-de/megadrive/images/logo.svg
1894
%%DATADIR%%/themes/slate-es-de/megadrive/systeminfo.xml
1895
%%DATADIR%%/themes/slate-es-de/megadrivejp/colors.xml
1896
%%DATADIR%%/themes/slate-es-de/megadrivejp/images/consolegame.svg
1897
%%DATADIR%%/themes/slate-es-de/megadrivejp/images/controller.svg
1898
%%DATADIR%%/themes/slate-es-de/megadrivejp/images/logo.svg
1899
%%DATADIR%%/themes/slate-es-de/megadrivejp/systeminfo.xml
1900
%%DATADIR%%/themes/slate-es-de/megaduck/colors.xml
1901
%%DATADIR%%/themes/slate-es-de/megaduck/images/logo.svg
1902
%%DATADIR%%/themes/slate-es-de/megaduck/systeminfo.xml
1903
%%DATADIR%%/themes/slate-es-de/mess/colors.xml
1904
%%DATADIR%%/themes/slate-es-de/mess/images/logo.svg
1905
%%DATADIR%%/themes/slate-es-de/mess/systeminfo.xml
1906
%%DATADIR%%/themes/slate-es-de/model2/colors.xml
1907
%%DATADIR%%/themes/slate-es-de/model2/images/logo.svg
1908
%%DATADIR%%/themes/slate-es-de/model2/systeminfo.xml
1909
%%DATADIR%%/themes/slate-es-de/model3/colors.xml
1910
%%DATADIR%%/themes/slate-es-de/model3/images/logo.svg
1911
%%DATADIR%%/themes/slate-es-de/model3/systeminfo.xml
1912
%%DATADIR%%/themes/slate-es-de/moto/colors.xml
1913
%%DATADIR%%/themes/slate-es-de/moto/images/logo.svg
1914
%%DATADIR%%/themes/slate-es-de/moto/images/logo2.svg
1915
%%DATADIR%%/themes/slate-es-de/moto/systeminfo.xml
1916
%%DATADIR%%/themes/slate-es-de/msx/colors.xml
1917
%%DATADIR%%/themes/slate-es-de/msx/images/consolegame.svg
1918
%%DATADIR%%/themes/slate-es-de/msx/images/controller.svg
1919
%%DATADIR%%/themes/slate-es-de/msx/images/logo.svg
1920
%%DATADIR%%/themes/slate-es-de/msx/systeminfo.xml
1921
%%DATADIR%%/themes/slate-es-de/msx1/colors.xml
1922
%%DATADIR%%/themes/slate-es-de/msx1/images/consolegame.svg
1923
%%DATADIR%%/themes/slate-es-de/msx1/images/controller.svg
1924
%%DATADIR%%/themes/slate-es-de/msx1/images/logo.svg
1925
%%DATADIR%%/themes/slate-es-de/msx1/systeminfo.xml
1926
%%DATADIR%%/themes/slate-es-de/msx2/colors.xml
1927
%%DATADIR%%/themes/slate-es-de/msx2/images/consolegame.svg
1928
%%DATADIR%%/themes/slate-es-de/msx2/images/controller.svg
1929
%%DATADIR%%/themes/slate-es-de/msx2/images/logo.svg
1930
%%DATADIR%%/themes/slate-es-de/msx2/systeminfo.xml
1931
%%DATADIR%%/themes/slate-es-de/msxturbor/colors.xml
1932
%%DATADIR%%/themes/slate-es-de/msxturbor/images/logo.svg
1933
%%DATADIR%%/themes/slate-es-de/msxturbor/systeminfo.xml
1934
%%DATADIR%%/themes/slate-es-de/mugen/colors.xml
1935
%%DATADIR%%/themes/slate-es-de/mugen/images/logo.svg
1936
%%DATADIR%%/themes/slate-es-de/mugen/systeminfo.xml
1937
%%DATADIR%%/themes/slate-es-de/multivision/colors.xml
1938
%%DATADIR%%/themes/slate-es-de/multivision/images/logo.svg
1939
%%DATADIR%%/themes/slate-es-de/multivision/systeminfo.xml
1940
%%DATADIR%%/themes/slate-es-de/n3ds/colors.xml
1941
%%DATADIR%%/themes/slate-es-de/n3ds/images/consolegame.svg
1942
%%DATADIR%%/themes/slate-es-de/n3ds/images/logo.svg
1943
%%DATADIR%%/themes/slate-es-de/n3ds/systeminfo.xml
1944
%%DATADIR%%/themes/slate-es-de/n64/colors.xml
1945
%%DATADIR%%/themes/slate-es-de/n64/images/consolegame.svg
1946
%%DATADIR%%/themes/slate-es-de/n64/images/controller.svg
1947
%%DATADIR%%/themes/slate-es-de/n64/images/logo.svg
1948
%%DATADIR%%/themes/slate-es-de/n64/systeminfo.xml
1949
%%DATADIR%%/themes/slate-es-de/n64dd/colors.xml
1950
%%DATADIR%%/themes/slate-es-de/n64dd/images/controller.svg
1951
%%DATADIR%%/themes/slate-es-de/n64dd/images/logo.svg
1952
%%DATADIR%%/themes/slate-es-de/n64dd/systeminfo.xml
1953
%%DATADIR%%/themes/slate-es-de/naomi/colors.xml
1954
%%DATADIR%%/themes/slate-es-de/naomi/images/logo.svg
1955
%%DATADIR%%/themes/slate-es-de/naomi/systeminfo.xml
1956
%%DATADIR%%/themes/slate-es-de/naomi2/colors.xml
1957
%%DATADIR%%/themes/slate-es-de/naomi2/images/logo.svg
1958
%%DATADIR%%/themes/slate-es-de/naomi2/systeminfo.xml
1959
%%DATADIR%%/themes/slate-es-de/naomigd/colors.xml
1960
%%DATADIR%%/themes/slate-es-de/naomigd/images/logo.svg
1961
%%DATADIR%%/themes/slate-es-de/naomigd/systeminfo.xml
1962
%%DATADIR%%/themes/slate-es-de/navigationsounds.xml
1963
%%DATADIR%%/themes/slate-es-de/nds/colors.xml
1964
%%DATADIR%%/themes/slate-es-de/nds/images/consolegame.svg
1965
%%DATADIR%%/themes/slate-es-de/nds/images/logo.svg
1966
%%DATADIR%%/themes/slate-es-de/nds/systeminfo.xml
1967
%%DATADIR%%/themes/slate-es-de/neogeo/colors.xml
1968
%%DATADIR%%/themes/slate-es-de/neogeo/images/consolegame.svg
1969
%%DATADIR%%/themes/slate-es-de/neogeo/images/controller.svg
1970
%%DATADIR%%/themes/slate-es-de/neogeo/images/logo.svg
1971
%%DATADIR%%/themes/slate-es-de/neogeo/systeminfo.xml
1972
%%DATADIR%%/themes/slate-es-de/neogeocd/colors.xml
1973
%%DATADIR%%/themes/slate-es-de/neogeocd/images/logo.svg
1974
%%DATADIR%%/themes/slate-es-de/neogeocd/systeminfo.xml
1975
%%DATADIR%%/themes/slate-es-de/neogeocdjp/colors.xml
1976
%%DATADIR%%/themes/slate-es-de/neogeocdjp/images/logo.svg
1977
%%DATADIR%%/themes/slate-es-de/neogeocdjp/systeminfo.xml
1978
%%DATADIR%%/themes/slate-es-de/nes/colors.xml
1979
%%DATADIR%%/themes/slate-es-de/nes/images/consolegame.svg
1980
%%DATADIR%%/themes/slate-es-de/nes/images/controller.svg
1981
%%DATADIR%%/themes/slate-es-de/nes/images/logo.svg
1982
%%DATADIR%%/themes/slate-es-de/nes/systeminfo.xml
1983
%%DATADIR%%/themes/slate-es-de/ngage/colors.xml
1984
%%DATADIR%%/themes/slate-es-de/ngage/images/logo.svg
1985
%%DATADIR%%/themes/slate-es-de/ngage/systeminfo.xml
1986
%%DATADIR%%/themes/slate-es-de/ngp/colors.xml
1987
%%DATADIR%%/themes/slate-es-de/ngp/images/consolegame.svg
1988
%%DATADIR%%/themes/slate-es-de/ngp/images/logo.svg
1989
%%DATADIR%%/themes/slate-es-de/ngp/systeminfo.xml
1990
%%DATADIR%%/themes/slate-es-de/ngpc/colors.xml
1991
%%DATADIR%%/themes/slate-es-de/ngpc/images/consolegame.svg
1992
%%DATADIR%%/themes/slate-es-de/ngpc/images/logo.svg
1993
%%DATADIR%%/themes/slate-es-de/ngpc/systeminfo.xml
1994
%%DATADIR%%/themes/slate-es-de/odyssey2/colors.xml
1995
%%DATADIR%%/themes/slate-es-de/odyssey2/images/consolegame.svg
1996
%%DATADIR%%/themes/slate-es-de/odyssey2/images/controller.svg
1997
%%DATADIR%%/themes/slate-es-de/odyssey2/images/logo.svg
1998
%%DATADIR%%/themes/slate-es-de/odyssey2/systeminfo.xml
1999
%%DATADIR%%/themes/slate-es-de/openbor/colors.xml
2000
%%DATADIR%%/themes/slate-es-de/openbor/images/logo.svg
2001
%%DATADIR%%/themes/slate-es-de/openbor/systeminfo.xml
2002
%%DATADIR%%/themes/slate-es-de/oric/colors.xml
2003
%%DATADIR%%/themes/slate-es-de/oric/images/logo.svg
2004
%%DATADIR%%/themes/slate-es-de/oric/systeminfo.xml
2005
%%DATADIR%%/themes/slate-es-de/palm/colors.xml
2006
%%DATADIR%%/themes/slate-es-de/palm/images/logo.svg
2007
%%DATADIR%%/themes/slate-es-de/palm/systeminfo.xml
2008
%%DATADIR%%/themes/slate-es-de/pc/colors.xml
2009
%%DATADIR%%/themes/slate-es-de/pc/images/consolegame.svg
2010
%%DATADIR%%/themes/slate-es-de/pc/images/controller.svg
2011
%%DATADIR%%/themes/slate-es-de/pc/images/logo.svg
2012
%%DATADIR%%/themes/slate-es-de/pc/systeminfo.xml
2013
%%DATADIR%%/themes/slate-es-de/pc88/colors.xml
2014
%%DATADIR%%/themes/slate-es-de/pc88/images/logo.svg
2015
%%DATADIR%%/themes/slate-es-de/pc88/systeminfo.xml
2016
%%DATADIR%%/themes/slate-es-de/pc98/colors.xml
2017
%%DATADIR%%/themes/slate-es-de/pc98/images/logo.svg
2018
%%DATADIR%%/themes/slate-es-de/pc98/systeminfo.xml
2019
%%DATADIR%%/themes/slate-es-de/pcarcade/colors.xml
2020
%%DATADIR%%/themes/slate-es-de/pcarcade/images/logo.svg
2021
%%DATADIR%%/themes/slate-es-de/pcarcade/systeminfo.xml
2022
%%DATADIR%%/themes/slate-es-de/pcengine/colors.xml
2023
%%DATADIR%%/themes/slate-es-de/pcengine/images/consolegame.svg
2024
%%DATADIR%%/themes/slate-es-de/pcengine/images/controller.svg
2025
%%DATADIR%%/themes/slate-es-de/pcengine/images/logo.svg
2026
%%DATADIR%%/themes/slate-es-de/pcengine/systeminfo.xml
2027
%%DATADIR%%/themes/slate-es-de/pcenginecd/colors.xml
2028
%%DATADIR%%/themes/slate-es-de/pcenginecd/images/consolegame.svg
2029
%%DATADIR%%/themes/slate-es-de/pcenginecd/images/controller.svg
2030
%%DATADIR%%/themes/slate-es-de/pcenginecd/images/logo.svg
2031
%%DATADIR%%/themes/slate-es-de/pcenginecd/images/logo2.svg
2032
%%DATADIR%%/themes/slate-es-de/pcenginecd/systeminfo.xml
2033
%%DATADIR%%/themes/slate-es-de/pcfx/colors.xml
2034
%%DATADIR%%/themes/slate-es-de/pcfx/images/logo.svg
2035
%%DATADIR%%/themes/slate-es-de/pcfx/systeminfo.xml
2036
%%DATADIR%%/themes/slate-es-de/pico8/colors.xml
2037
%%DATADIR%%/themes/slate-es-de/pico8/images/logo.svg
2038
%%DATADIR%%/themes/slate-es-de/pico8/systeminfo.xml
2039
%%DATADIR%%/themes/slate-es-de/plus4/colors.xml
2040
%%DATADIR%%/themes/slate-es-de/plus4/images/logo.svg
2041
%%DATADIR%%/themes/slate-es-de/plus4/systeminfo.xml
2042
%%DATADIR%%/themes/slate-es-de/pokemini/colors.xml
2043
%%DATADIR%%/themes/slate-es-de/pokemini/images/logo.svg
2044
%%DATADIR%%/themes/slate-es-de/pokemini/systeminfo.xml
2045
%%DATADIR%%/themes/slate-es-de/ports/colors.xml
2046
%%DATADIR%%/themes/slate-es-de/ports/images/logo.svg
2047
%%DATADIR%%/themes/slate-es-de/ports/systeminfo.xml
2048
%%DATADIR%%/themes/slate-es-de/ps2/colors.xml
2049
%%DATADIR%%/themes/slate-es-de/ps2/images/consolegame.svg
2050
%%DATADIR%%/themes/slate-es-de/ps2/images/controller.svg
2051
%%DATADIR%%/themes/slate-es-de/ps2/images/logo.svg
2052
%%DATADIR%%/themes/slate-es-de/ps2/systeminfo.xml
2053
%%DATADIR%%/themes/slate-es-de/ps3/colors.xml
2054
%%DATADIR%%/themes/slate-es-de/ps3/images/consolegame.svg
2055
%%DATADIR%%/themes/slate-es-de/ps3/images/controller.svg
2056
%%DATADIR%%/themes/slate-es-de/ps3/images/logo.svg
2057
%%DATADIR%%/themes/slate-es-de/ps3/systeminfo.xml
2058
%%DATADIR%%/themes/slate-es-de/ps4/colors.xml
2059
%%DATADIR%%/themes/slate-es-de/ps4/images/logo.svg
2060
%%DATADIR%%/themes/slate-es-de/ps4/systeminfo.xml
2061
%%DATADIR%%/themes/slate-es-de/psp/colors.xml
2062
%%DATADIR%%/themes/slate-es-de/psp/images/consolegame.svg
2063
%%DATADIR%%/themes/slate-es-de/psp/images/logo.svg
2064
%%DATADIR%%/themes/slate-es-de/psp/systeminfo.xml
2065
%%DATADIR%%/themes/slate-es-de/psvita/colors.xml
2066
%%DATADIR%%/themes/slate-es-de/psvita/images/consolegame.svg
2067
%%DATADIR%%/themes/slate-es-de/psvita/images/logo.svg
2068
%%DATADIR%%/themes/slate-es-de/psvita/systeminfo.xml
2069
%%DATADIR%%/themes/slate-es-de/psx/colors.xml
2070
%%DATADIR%%/themes/slate-es-de/psx/images/consolegame.svg
2071
%%DATADIR%%/themes/slate-es-de/psx/images/controller.svg
2072
%%DATADIR%%/themes/slate-es-de/psx/images/logo.svg
2073
%%DATADIR%%/themes/slate-es-de/psx/systeminfo.xml
2074
%%DATADIR%%/themes/slate-es-de/pv1000/colors.xml
2075
%%DATADIR%%/themes/slate-es-de/pv1000/images/logo.svg
2076
%%DATADIR%%/themes/slate-es-de/pv1000/systeminfo.xml
2077
%%DATADIR%%/themes/slate-es-de/quake/colors.xml
2078
%%DATADIR%%/themes/slate-es-de/quake/images/logo.svg
2079
%%DATADIR%%/themes/slate-es-de/quake/systeminfo.xml
2080
%%DATADIR%%/themes/slate-es-de/samcoupe/colors.xml
2081
%%DATADIR%%/themes/slate-es-de/samcoupe/images/logo.svg
2082
%%DATADIR%%/themes/slate-es-de/samcoupe/systeminfo.xml
2083
%%DATADIR%%/themes/slate-es-de/satellaview/colors.xml
2084
%%DATADIR%%/themes/slate-es-de/satellaview/images/controller.svg
2085
%%DATADIR%%/themes/slate-es-de/satellaview/images/logo.svg
2086
%%DATADIR%%/themes/slate-es-de/satellaview/systeminfo.xml
2087
%%DATADIR%%/themes/slate-es-de/saturn/colors.xml
2088
%%DATADIR%%/themes/slate-es-de/saturn/images/consolegame.svg
2089
%%DATADIR%%/themes/slate-es-de/saturn/images/controller.svg
2090
%%DATADIR%%/themes/slate-es-de/saturn/images/logo.svg
2091
%%DATADIR%%/themes/slate-es-de/saturn/systeminfo.xml
2092
%%DATADIR%%/themes/slate-es-de/saturnjp/colors.xml
2093
%%DATADIR%%/themes/slate-es-de/saturnjp/images/consolegame.svg
2094
%%DATADIR%%/themes/slate-es-de/saturnjp/images/controller.svg
2095
%%DATADIR%%/themes/slate-es-de/saturnjp/images/logo.svg
2096
%%DATADIR%%/themes/slate-es-de/saturnjp/systeminfo.xml
2097
%%DATADIR%%/themes/slate-es-de/scummvm/colors.xml
2098
%%DATADIR%%/themes/slate-es-de/scummvm/images/consolegame.svg
2099
%%DATADIR%%/themes/slate-es-de/scummvm/images/controller.svg
2100
%%DATADIR%%/themes/slate-es-de/scummvm/images/logo.svg
2101
%%DATADIR%%/themes/slate-es-de/scummvm/systeminfo.xml
2102
%%DATADIR%%/themes/slate-es-de/scv/colors.xml
2103
%%DATADIR%%/themes/slate-es-de/scv/images/logo.svg
2104
%%DATADIR%%/themes/slate-es-de/scv/systeminfo.xml
2105
%%DATADIR%%/themes/slate-es-de/sega32x/colors.xml
2106
%%DATADIR%%/themes/slate-es-de/sega32x/images/consolegame.svg
2107
%%DATADIR%%/themes/slate-es-de/sega32x/images/controller.svg
2108
%%DATADIR%%/themes/slate-es-de/sega32x/images/logo.svg
2109
%%DATADIR%%/themes/slate-es-de/sega32x/systeminfo.xml
2110
%%DATADIR%%/themes/slate-es-de/sega32xjp/colors.xml
2111
%%DATADIR%%/themes/slate-es-de/sega32xjp/images/consolegame.svg
2112
%%DATADIR%%/themes/slate-es-de/sega32xjp/images/controller.svg
2113
%%DATADIR%%/themes/slate-es-de/sega32xjp/images/logo.svg
2114
%%DATADIR%%/themes/slate-es-de/sega32xjp/systeminfo.xml
2115
%%DATADIR%%/themes/slate-es-de/sega32xna/colors.xml
2116
%%DATADIR%%/themes/slate-es-de/sega32xna/images/consolegame.svg
2117
%%DATADIR%%/themes/slate-es-de/sega32xna/images/controller.svg
2118
%%DATADIR%%/themes/slate-es-de/sega32xna/images/logo.svg
2119
%%DATADIR%%/themes/slate-es-de/sega32xna/systeminfo.xml
2120
%%DATADIR%%/themes/slate-es-de/segacd/colors.xml
2121
%%DATADIR%%/themes/slate-es-de/segacd/images/consolegame.svg
2122
%%DATADIR%%/themes/slate-es-de/segacd/images/controller.svg
2123
%%DATADIR%%/themes/slate-es-de/segacd/images/logo.svg
2124
%%DATADIR%%/themes/slate-es-de/segacd/systeminfo.xml
2125
%%DATADIR%%/themes/slate-es-de/sfc/colors.xml
2126
%%DATADIR%%/themes/slate-es-de/sfc/images/consolegame.svg
2127
%%DATADIR%%/themes/slate-es-de/sfc/images/controller.svg
2128
%%DATADIR%%/themes/slate-es-de/sfc/images/logo.svg
2129
%%DATADIR%%/themes/slate-es-de/sfc/systeminfo.xml
2130
%%DATADIR%%/themes/slate-es-de/sg-1000/colors.xml
2131
%%DATADIR%%/themes/slate-es-de/sg-1000/images/consolegame.svg
2132
%%DATADIR%%/themes/slate-es-de/sg-1000/images/controller.svg
2133
%%DATADIR%%/themes/slate-es-de/sg-1000/images/logo.svg
2134
%%DATADIR%%/themes/slate-es-de/sg-1000/systeminfo.xml
2135
%%DATADIR%%/themes/slate-es-de/sgb/colors.xml
2136
%%DATADIR%%/themes/slate-es-de/sgb/images/logo.svg
2137
%%DATADIR%%/themes/slate-es-de/sgb/systeminfo.xml
2138
%%DATADIR%%/themes/slate-es-de/snes/colors.xml
2139
%%DATADIR%%/themes/slate-es-de/snes/images/consolegame.svg
2140
%%DATADIR%%/themes/slate-es-de/snes/images/controller.svg
2141
%%DATADIR%%/themes/slate-es-de/snes/images/logo.svg
2142
%%DATADIR%%/themes/slate-es-de/snes/systeminfo.xml
2143
%%DATADIR%%/themes/slate-es-de/snesna/colors.xml
2144
%%DATADIR%%/themes/slate-es-de/snesna/images/consolegame.svg
2145
%%DATADIR%%/themes/slate-es-de/snesna/images/controller.svg
2146
%%DATADIR%%/themes/slate-es-de/snesna/images/logo.svg
2147
%%DATADIR%%/themes/slate-es-de/snesna/systeminfo.xml
2148
%%DATADIR%%/themes/slate-es-de/solarus/colors.xml
2149
%%DATADIR%%/themes/slate-es-de/solarus/images/logo.svg
2150
%%DATADIR%%/themes/slate-es-de/solarus/systeminfo.xml
2151
%%DATADIR%%/themes/slate-es-de/spectravideo/colors.xml
2152
%%DATADIR%%/themes/slate-es-de/spectravideo/images/logo.svg
2153
%%DATADIR%%/themes/slate-es-de/spectravideo/systeminfo.xml
2154
%%DATADIR%%/themes/slate-es-de/steam/colors.xml
2155
%%DATADIR%%/themes/slate-es-de/steam/images/logo.svg
2156
%%DATADIR%%/themes/slate-es-de/steam/images/logo2.svg
2157
%%DATADIR%%/themes/slate-es-de/steam/systeminfo.xml
2158
%%DATADIR%%/themes/slate-es-de/stv/colors.xml
2159
%%DATADIR%%/themes/slate-es-de/stv/images/logo.svg
2160
%%DATADIR%%/themes/slate-es-de/stv/systeminfo.xml
2161
%%DATADIR%%/themes/slate-es-de/sufami/colors.xml
2162
%%DATADIR%%/themes/slate-es-de/sufami/images/controller.svg
2163
%%DATADIR%%/themes/slate-es-de/sufami/images/logo.svg
2164
%%DATADIR%%/themes/slate-es-de/sufami/systeminfo.xml
2165
%%DATADIR%%/themes/slate-es-de/supergrafx/colors.xml
2166
%%DATADIR%%/themes/slate-es-de/supergrafx/images/consolegame.svg
2167
%%DATADIR%%/themes/slate-es-de/supergrafx/images/controller.svg
2168
%%DATADIR%%/themes/slate-es-de/supergrafx/images/logo.svg
2169
%%DATADIR%%/themes/slate-es-de/supergrafx/systeminfo.xml
2170
%%DATADIR%%/themes/slate-es-de/supervision/colors.xml
2171
%%DATADIR%%/themes/slate-es-de/supervision/images/logo.svg
2172
%%DATADIR%%/themes/slate-es-de/supervision/systeminfo.xml
2173
%%DATADIR%%/themes/slate-es-de/supracan/colors.xml
2174
%%DATADIR%%/themes/slate-es-de/supracan/images/logo.svg
2175
%%DATADIR%%/themes/slate-es-de/supracan/systeminfo.xml
2176
%%DATADIR%%/themes/slate-es-de/switch/colors.xml
2177
%%DATADIR%%/themes/slate-es-de/switch/images/consolegame.svg
2178
%%DATADIR%%/themes/slate-es-de/switch/images/logo.svg
2179
%%DATADIR%%/themes/slate-es-de/switch/systeminfo.xml
2180
%%DATADIR%%/themes/slate-es-de/symbian/colors.xml
2181
%%DATADIR%%/themes/slate-es-de/symbian/images/logo.svg
2182
%%DATADIR%%/themes/slate-es-de/symbian/systeminfo.xml
2183
%%DATADIR%%/themes/slate-es-de/tanodragon/colors.xml
2184
%%DATADIR%%/themes/slate-es-de/tanodragon/images/logo.svg
2185
%%DATADIR%%/themes/slate-es-de/tanodragon/systeminfo.xml
2186
%%DATADIR%%/themes/slate-es-de/tg-cd/colors.xml
2187
%%DATADIR%%/themes/slate-es-de/tg-cd/images/consolegame.svg
2188
%%DATADIR%%/themes/slate-es-de/tg-cd/images/controller.svg
2189
%%DATADIR%%/themes/slate-es-de/tg-cd/images/logo.svg
2190
%%DATADIR%%/themes/slate-es-de/tg-cd/systeminfo.xml
2191
%%DATADIR%%/themes/slate-es-de/tg16/colors.xml
2192
%%DATADIR%%/themes/slate-es-de/tg16/images/consolegame.svg
2193
%%DATADIR%%/themes/slate-es-de/tg16/images/controller.svg
2194
%%DATADIR%%/themes/slate-es-de/tg16/images/logo.svg
2195
%%DATADIR%%/themes/slate-es-de/tg16/systeminfo.xml
2196
%%DATADIR%%/themes/slate-es-de/theme.xml
2197
%%DATADIR%%/themes/slate-es-de/ti99/colors.xml
2198
%%DATADIR%%/themes/slate-es-de/ti99/images/logo.svg
2199
%%DATADIR%%/themes/slate-es-de/ti99/systeminfo.xml
2200
%%DATADIR%%/themes/slate-es-de/tic80/colors.xml
2201
%%DATADIR%%/themes/slate-es-de/tic80/images/logo.svg
2202
%%DATADIR%%/themes/slate-es-de/tic80/systeminfo.xml
2203
%%DATADIR%%/themes/slate-es-de/to8/colors.xml
2204
%%DATADIR%%/themes/slate-es-de/to8/images/logo.svg
2205
%%DATADIR%%/themes/slate-es-de/to8/systeminfo.xml
2206
%%DATADIR%%/themes/slate-es-de/triforce/colors.xml
2207
%%DATADIR%%/themes/slate-es-de/triforce/images/logo.svg
2208
%%DATADIR%%/themes/slate-es-de/triforce/systeminfo.xml
2209
%%DATADIR%%/themes/slate-es-de/trs-80/colors.xml
2210
%%DATADIR%%/themes/slate-es-de/trs-80/images/logo.svg
2211
%%DATADIR%%/themes/slate-es-de/trs-80/systeminfo.xml
2212
%%DATADIR%%/themes/slate-es-de/type-x/colors.xml
2213
%%DATADIR%%/themes/slate-es-de/type-x/images/logo.svg
2214
%%DATADIR%%/themes/slate-es-de/type-x/systeminfo.xml
2215
%%DATADIR%%/themes/slate-es-de/uzebox/colors.xml
2216
%%DATADIR%%/themes/slate-es-de/uzebox/images/controller.svg
2217
%%DATADIR%%/themes/slate-es-de/uzebox/images/logo.svg
2218
%%DATADIR%%/themes/slate-es-de/uzebox/systeminfo.xml
2219
%%DATADIR%%/themes/slate-es-de/vectrex/colors.xml
2220
%%DATADIR%%/themes/slate-es-de/vectrex/images/consolegame.svg
2221
%%DATADIR%%/themes/slate-es-de/vectrex/images/controller.svg
2222
%%DATADIR%%/themes/slate-es-de/vectrex/images/logo.svg
2223
%%DATADIR%%/themes/slate-es-de/vectrex/systeminfo.xml
2224
%%DATADIR%%/themes/slate-es-de/vic20/colors.xml
2225
%%DATADIR%%/themes/slate-es-de/vic20/images/consolegame.svg
2226
%%DATADIR%%/themes/slate-es-de/vic20/images/controller.svg
2227
%%DATADIR%%/themes/slate-es-de/vic20/images/logo.svg
2228
%%DATADIR%%/themes/slate-es-de/vic20/systeminfo.xml
2229
%%DATADIR%%/themes/slate-es-de/videopac/colors.xml
2230
%%DATADIR%%/themes/slate-es-de/videopac/images/consolegame.svg
2231
%%DATADIR%%/themes/slate-es-de/videopac/images/controller.svg
2232
%%DATADIR%%/themes/slate-es-de/videopac/images/logo.svg
2233
%%DATADIR%%/themes/slate-es-de/videopac/systeminfo.xml
2234
%%DATADIR%%/themes/slate-es-de/virtualboy/colors.xml
2235
%%DATADIR%%/themes/slate-es-de/virtualboy/images/consolegame.svg
2236
%%DATADIR%%/themes/slate-es-de/virtualboy/images/controller.svg
2237
%%DATADIR%%/themes/slate-es-de/virtualboy/images/logo.svg
2238
%%DATADIR%%/themes/slate-es-de/virtualboy/systeminfo.xml
2239
%%DATADIR%%/themes/slate-es-de/vpinball/colors.xml
2240
%%DATADIR%%/themes/slate-es-de/vpinball/images/logo.svg
2241
%%DATADIR%%/themes/slate-es-de/vpinball/systeminfo.xml
2242
%%DATADIR%%/themes/slate-es-de/vsmile/colors.xml
2243
%%DATADIR%%/themes/slate-es-de/vsmile/images/logo.svg
2244
%%DATADIR%%/themes/slate-es-de/vsmile/systeminfo.xml
2245
%%DATADIR%%/themes/slate-es-de/wasm4/colors.xml
2246
%%DATADIR%%/themes/slate-es-de/wasm4/images/logo.svg
2247
%%DATADIR%%/themes/slate-es-de/wasm4/systeminfo.xml
2248
%%DATADIR%%/themes/slate-es-de/wii/colors.xml
2249
%%DATADIR%%/themes/slate-es-de/wii/images/consolegame.svg
2250
%%DATADIR%%/themes/slate-es-de/wii/images/controller.svg
2251
%%DATADIR%%/themes/slate-es-de/wii/images/logo.svg
2252
%%DATADIR%%/themes/slate-es-de/wii/systeminfo.xml
2253
%%DATADIR%%/themes/slate-es-de/wiiu/colors.xml
2254
%%DATADIR%%/themes/slate-es-de/wiiu/images/consolegame.svg
2255
%%DATADIR%%/themes/slate-es-de/wiiu/images/controller.svg
2256
%%DATADIR%%/themes/slate-es-de/wiiu/images/logo.svg
2257
%%DATADIR%%/themes/slate-es-de/wiiu/systeminfo.xml
2258
%%DATADIR%%/themes/slate-es-de/windows/colors.xml
2259
%%DATADIR%%/themes/slate-es-de/windows/images/logo.svg
2260
%%DATADIR%%/themes/slate-es-de/windows/systeminfo.xml
2261
%%DATADIR%%/themes/slate-es-de/windows3x/colors.xml
2262
%%DATADIR%%/themes/slate-es-de/windows3x/images/logo.svg
2263
%%DATADIR%%/themes/slate-es-de/windows3x/systeminfo.xml
2264
%%DATADIR%%/themes/slate-es-de/windows9x/colors.xml
2265
%%DATADIR%%/themes/slate-es-de/windows9x/images/logo.svg
2266
%%DATADIR%%/themes/slate-es-de/windows9x/systeminfo.xml
2267
%%DATADIR%%/themes/slate-es-de/wonderswan/colors.xml
2268
%%DATADIR%%/themes/slate-es-de/wonderswan/images/consolegame.svg
2269
%%DATADIR%%/themes/slate-es-de/wonderswan/images/logo.svg
2270
%%DATADIR%%/themes/slate-es-de/wonderswan/systeminfo.xml
2271
%%DATADIR%%/themes/slate-es-de/wonderswancolor/colors.xml
2272
%%DATADIR%%/themes/slate-es-de/wonderswancolor/images/consolegame.svg
2273
%%DATADIR%%/themes/slate-es-de/wonderswancolor/images/logo.svg
2274
%%DATADIR%%/themes/slate-es-de/wonderswancolor/systeminfo.xml
2275
%%DATADIR%%/themes/slate-es-de/x1/colors.xml
2276
%%DATADIR%%/themes/slate-es-de/x1/images/logo.svg
2277
%%DATADIR%%/themes/slate-es-de/x1/systeminfo.xml
2278
%%DATADIR%%/themes/slate-es-de/x68000/colors.xml
2279
%%DATADIR%%/themes/slate-es-de/x68000/images/consolegame.svg
2280
%%DATADIR%%/themes/slate-es-de/x68000/images/controller.svg
2281
%%DATADIR%%/themes/slate-es-de/x68000/images/logo.svg
2282
%%DATADIR%%/themes/slate-es-de/x68000/systeminfo.xml
2283
%%DATADIR%%/themes/slate-es-de/xbox/colors.xml
2284
%%DATADIR%%/themes/slate-es-de/xbox/images/consolegame.svg
2285
%%DATADIR%%/themes/slate-es-de/xbox/images/controller.svg
2286
%%DATADIR%%/themes/slate-es-de/xbox/images/logo.svg
2287
%%DATADIR%%/themes/slate-es-de/xbox/systeminfo.xml
2288
%%DATADIR%%/themes/slate-es-de/xbox360/colors.xml
2289
%%DATADIR%%/themes/slate-es-de/xbox360/images/consolegame.svg
2290
%%DATADIR%%/themes/slate-es-de/xbox360/images/controller.svg
2291
%%DATADIR%%/themes/slate-es-de/xbox360/images/logo.svg
2292
%%DATADIR%%/themes/slate-es-de/xbox360/systeminfo.xml
2293
%%DATADIR%%/themes/slate-es-de/zmachine/colors.xml
2294
%%DATADIR%%/themes/slate-es-de/zmachine/images/logo.svg
2295
%%DATADIR%%/themes/slate-es-de/zmachine/systeminfo.xml
2296
%%DATADIR%%/themes/slate-es-de/zx81/colors.xml
2297
%%DATADIR%%/themes/slate-es-de/zx81/images/consolegame.svg
2298
%%DATADIR%%/themes/slate-es-de/zx81/images/logo.svg
2299
%%DATADIR%%/themes/slate-es-de/zx81/systeminfo.xml
2300
%%DATADIR%%/themes/slate-es-de/zxnext/colors.xml
2301
%%DATADIR%%/themes/slate-es-de/zxnext/images/logo.svg
2302
%%DATADIR%%/themes/slate-es-de/zxnext/systeminfo.xml
2303
%%DATADIR%%/themes/slate-es-de/zxspectrum/colors.xml
2304
%%DATADIR%%/themes/slate-es-de/zxspectrum/images/consolegame.svg
2305
%%DATADIR%%/themes/slate-es-de/zxspectrum/images/logo.svg
2306
%%DATADIR%%/themes/slate-es-de/zxspectrum/systeminfo.xml
2307
share/icons/hicolor/scalable/apps/org.es_de.frontend.svg
2308
share/man/man6/es-de.6.gz
2309
share/metainfo/org.es_de.frontend.appdata.xml
2310
share/pixmaps/org.es_de.frontend.svg

Return to bug 280891