[Scummvm-cvs-logs] SF.net SVN: scummvm: [27682] scummvm/branches/gsoc2007-fsnode
david_corrales at users.sourceforge.net
david_corrales at users.sourceforge.net
Sat Jun 23 21:04:15 CEST 2007
Revision: 27682
http://scummvm.svn.sourceforge.net/scummvm/?rev=27682&view=rev
Author: david_corrales
Date: 2007-06-23 12:04:15 -0700 (Sat, 23 Jun 2007)
Log Message:
-----------
Missed some files in the branch/trunk merge.
Added Paths:
-----------
scummvm/branches/gsoc2007-fsnode/backends/platform/ds/arm9/makefile.in
scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.cer
scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.key
scummvm/branches/gsoc2007-fsnode/backends/platform/wince/README-WinCE.txt
scummvm/branches/gsoc2007-fsnode/common/keyboard.h
scummvm/branches/gsoc2007-fsnode/dists/pred.dic
scummvm/branches/gsoc2007-fsnode/dists/slackware/scummvm.SlackBuild.in
scummvm/branches/gsoc2007-fsnode/engines/agi/wagparser.cpp
scummvm/branches/gsoc2007-fsnode/engines/agi/wagparser.h
scummvm/branches/gsoc2007-fsnode/engines/lure/fights.cpp
scummvm/branches/gsoc2007-fsnode/engines/lure/fights.h
scummvm/branches/gsoc2007-fsnode/engines/lure/sound.cpp
scummvm/branches/gsoc2007-fsnode/engines/lure/sound.h
scummvm/branches/gsoc2007-fsnode/sound/rate_arm.cpp
scummvm/branches/gsoc2007-fsnode/sound/rate_arm_asm.s
Added: scummvm/branches/gsoc2007-fsnode/backends/platform/ds/arm9/makefile.in
===================================================================
--- scummvm/branches/gsoc2007-fsnode/backends/platform/ds/arm9/makefile.in (rev 0)
+++ scummvm/branches/gsoc2007-fsnode/backends/platform/ds/arm9/makefile.in 2007-06-23 19:04:15 UTC (rev 27682)
@@ -0,0 +1,350 @@
+#BUILD_PLUGINS = 1
+#libndsdir = $(DEVKITPRO)/libnds
+libndsdir = /home/neil/devkitpro/libnds
+
+# Select the build you want by uncommenting one of the following lines:
+
+DS_BUILD_A = 1
+#DS_BUILD_B = 1
+#DS_BUILD_C = 1
+#DS_BUILD_D = 1
+
+# Uncomment the following line to build in support for MP3 audio
+# using libmad:
+USE_MAD = 1
+
+# Uncomment the following line to enable support for the
+# ace DS Debugger (remembering to make the same change in the arm7 makefile):
+#USE_DEBUGGER = 1
+# NOTE: The header and libs for the debugger is assumed to be in the libnds
+# folder.
+
+VPATH = $(srcdir)
+
+# Command to build libmad is:
+# ./configure --host=arm-elf --enable-speed --enable-sso -enable-fpm=arm CFLAGS='-specs=ds_arm9.specs -mthumb-interwork'
+
+
+ifdef DS_BUILD_A
+ DEFINES = -DDS_SCUMM_BUILD -DDS_BUILD_A
+ LOGO = logoa.bmp
+ DISABLE_HE = 1
+ #DISABLE_SCUMM = 1
+ DISABLE_SCUMM_7_8 = 1
+ DISABLE_AGOS = 1
+ DISABLE_SKY = 1
+ DISABLE_SWORD1 = 1
+ DISABLE_SWORD2 = 1
+ DISABLE_QUEEN = 1
+ DISABLE_SAGA = 1
+ DISABLE_KYRA = 1
+ DISABLE_GOB = 1
+ DISABLE_LURE = 1
+ DISABLE_CINE = 1
+ DISABLE_AGI = 1
+ DISABLE_TOUCHE = 1
+ DISABLE_PARALLACTION = 1
+ BUILD=scummvm-A
+endif
+
+ifdef DS_BUILD_B
+ DEFINES = -DDS_NON_SCUMM_BUILD -DDS_BUILD_B
+ LOGO = logob.bmp
+ DISABLE_HE = 1
+ DISABLE_SCUMM = 1
+ DISABLE_SCUMM_7_8 = 1
+ DISABLE_AGOS = 1
+ #DISABLE_SKY = 1
+ DISABLE_SWORD1 = 1
+ DISABLE_SWORD2 = 1
+ #DISABLE_QUEEN = 1
+ DISABLE_SAGA = 1
+ DISABLE_KYRA = 1
+ DISABLE_GOB = 1
+ DISABLE_LURE = 1
+ DISABLE_CINE = 1
+ DISABLE_AGI = 1
+ DISABLE_TOUCHE = 1
+ DISABLE_PARALLACTION = 1
+ BUILD=scummvm-B
+endif
+
+ifdef DS_BUILD_C
+ DEFINES = -DDS_NON_SCUMM_BUILD -DDS_BUILD_C
+ LOGO = logoc.bmp
+ DISABLE_HE = 1
+ DISABLE_SCUMM = 1
+ DISABLE_SCUMM_7_8 = 1
+ #DISABLE_AGOS = 1
+ DISABLE_SKY = 1
+ DISABLE_SWORD1 = 1
+ DISABLE_SWORD2 = 1
+ DISABLE_QUEEN = 1
+ DISABLE_SAGA = 1
+ #DISABLE_KYRA = 1
+ #DISABLE_GOB = 1
+ DISABLE_LURE = 1
+ DISABLE_CINE = 1
+ DISABLE_AGI = 1
+ DISABLE_TOUCHE = 1
+ DISABLE_PARALLACTION = 1
+ BUILD=scummvm-C
+endif
+
+ifdef DS_BUILD_D
+ DEFINES = -DDS_NON_SCUMM_BUILD -DDS_BUILD_D
+ LOGO = logoc.bmp
+ DISABLE_HE = 1
+ DISABLE_SCUMM = 1
+ DISABLE_SCUMM_7_8 = 1
+ DISABLE_AGOS = 1
+ DISABLE_SKY = 1
+ DISABLE_SWORD1 = 1
+ DISABLE_SWORD2 = 1
+ DISABLE_QUEEN = 1
+ DISABLE_SAGA = 1
+ DISABLE_KYRA = 1
+ DISABLE_GOB = 1
+ DISABLE_LURE = 1
+ #DISABLE_CINE = 1
+ #DISABLE_AGI = 1
+ DISABLE_TOUCHE = 1
+ DISABLE_PARALLACTION = 1
+ BUILD=scummvm-A
+endif
+
+
+ARM7BIN := -7 $(CURDIR)/../../arm7/arm7.bin
+ICON := -b ../../../logo.bmp "ScummVM;By Neil Millstone;"
+
+CC = arm-eabi-gcc
+CXX = arm-eabi-g++
+
+CFLAGS = -Wno-multichar -Wall -Os\
+ -Wno-multichar -mcpu=arm9tdmi -mtune=arm9tdmi \
+ -mcpu=arm9tdmi -mtune=arm9tdmi -fomit-frame-pointer\
+ -ffast-math -mthumb-interwork
+
+ifdef USE_DEBUGGER
+ DEFINES += -DUSE_DEBUGGER
+ CFLAGS += -g
+endif
+
+CXXFLAGS= $(CFLAGS) -Wno-non-virtual-dtor -Wno-non-virtual-dtor \
+ -fno-exceptions -fno-rtti
+
+ASFLAGS = -mcpu=arm9tdmi -mthumb-interwork
+DEFINES += -D__DS__ -DNDS -DARM9 -DNONSTANDARD_PORT -DDISABLE_FANCY_THEMES -DDISABLE_DEFAULT_SAVEFILEMANAGER
+ifdef USE_MAD
+ DEFINES += -DUSE_MAD
+endif
+
+
+LDFLAGS = -specs=ds_arm9.specs -mthumb-interwork -mno-fpu -Wl,-Map,map.txt
+
+INCLUDES= -I./ -I$(portdir)/$(BUILD) -I$(srcdir) -I$(srcdir)/common -I$(portdir)/source -I$(portdir)/source/compressor -I$(portdir)/source/fat \
+ -I$(srcdir)/backends/fs -I$(srcdir)/backends/fs/ds -I$(portdir)/data -I$(libndsdir)/include -I$(portdir)/../commoninclude\
+ -I$(srcdir)/scumm -I$(libndsdir)/include -I$(libndsdir)/include/nds -I$(srcdir)/engines -I$(portdir)/source/mad\
+ -I$(portdir)/source/libcartreset
+
+
+LIBS = -lm -L$(libndsdir)/lib -L$(portdir)/lib -lnds9
+ifdef USE_MAD
+ LIBS += -lmad
+endif
+ifdef USE_DEBUGGER
+ LIBS += -ldsdebugger -ldswifi9
+endif
+
+#-Lscumm -lscumm -Lbase -lbase -Lcommon -lcommon -Lgraphics -lgraphics -Lgui -lgui -Lsound -lsound
+EXECUTABLE = scummvm.elf
+PLUGIN_PREFIX =
+PLUGIN_SUFFIX = .plg
+PLUGIN_EXTRA_DEPS = plugin.x plugin.syms scummvm.elf
+PLUGIN_LDFLAGS = -nostartfiles -Wl,-q,-Tplugin.x,--just-symbols,scummvm.elf,--retain-symbols-file,plugin.syms -L$(ronindir)/lib
+MKDIR = mkdir -p
+RM = rm -f
+RM_REC = rm -rf
+AR = arm-eabi-ar cru
+RANLIB = arm-eabi-ranlib
+OBJCOPY = arm-eabi-objcopy
+AS = arm-eabi-as
+HAVE_GCC3 = true
+DISABLE_SCALERS = true
+
+ifdef BUILD_PLUGINS
+DEFINES += -DDYNAMIC_MODULES
+PRE_OBJS_FLAGS = -Wl,--whole-archive
+POST_OBJS_FLAGS = -Wl,--no-whole-archive
+endif
+
+PORT_OBJS := $(portdir)/source/blitters.o $(portdir)/source/cdaudio.o $(portdir)/source/dsmain.o \
+ $(portdir)/../../../fs/ds/ds-fs.o $(portdir)/source/gbampsave.o $(portdir)/source/scummhelp.o\
+ $(portdir)/source/osystem_ds.o $(portdir)/source/portdefs.o $(portdir)/source/ramsave.o\
+ $(portdir)/source/scummconsole.o $(portdir)/source/touchkeyboard.o $(portdir)/source/zipreader.o\
+ $(portdir)/source/dsoptions.o $(portdir)/source/keys.o
+
+DATA_OBJS := $(portdir)/data/icons.o $(portdir)/data/keyboard.o $(portdir)/data/keyboard_pal.o $(portdir)/data/default_font.o
+
+
+COMPRESSOR_OBJS := $(portdir)/source/compressor/lz.o
+
+FAT_OBJS := $(portdir)/source/fat/disc_io.o $(portdir)/source/fat/gba_nds_fat.o\
+ $(portdir)/source/fat/io_fcsr.o $(portdir)/source/fat/io_m3cf.o\
+ $(portdir)/source/fat/io_mpcf.o $(portdir)/source/fat/io_sccf.o\
+ $(portdir)/source/fat/io_m3sd.o\
+ $(portdir)/source/fat/io_nmmc.o $(portdir)/source/fat/io_scsd.o \
+ $(portdir)/source/fat/io_scsd_asm.o \
+ $(portdir)/source/fat/io_njsd.o \
+ $(portdir)/source/fat/io_mmcf.o \
+ $(portdir)/source/fat/io_sd_common.o \
+ $(portdir)/source/fat/io_m3_common.o \
+ $(portdir)/source/fat/io_dldi.o \
+ $(portdir)/source/fat/m3sd.o
+
+
+# $(portdir)/source/fat/io_cf_common.o $(portdir)/source/fat/io_m3_common.o\
+# $(portdir)/source/fat/io_sd_common.o $(portdir)/source/fat/io_scsd_s.o \
+# $(portdir)/source/fat/io_sc_common.o $(portdir)/source/fat/io_sd_common.o
+
+LIBCARTRESET_OBJS := $(portdir)/source/libcartreset/cartreset.o
+
+
+
+OBJS := $(DATA_OBJS) $(LIBCARTRESET_OBJS) $(PORT_OBJS) $(COMPRESSOR_OBJS) $(FAT_OBJS)
+
+
+
+MODULE_DIRS += .
+
+ndsall:
+ @[ -d $(BUILD) ] || mkdir -p $(BUILD)
+ make -C ./$(BUILD) -f ../makefile scummvm.nds
+
+include $(srcdir)/Makefile.common
+
+clean:
+ $(RM) $(OBJS) $(EXECUTABLE)
+ rm -fr $(BUILD)
+
+plugin_dist :
+ find . -name '*.plg' | while read p; do \
+ sh-elf-strip -g -o "`basename \"$$p\" | tr '[:lower:]' '[:upper:]'`" "$$p"; \
+ done
+
+dist : SCUMMVM.BIN plugins plugin_dist
+
+
+#---------------------------------------------------------------------------------
+# canned command sequence for binary data
+#---------------------------------------------------------------------------------
+#define bin2o
+# bin2s $< | $(AS) -mthumb -mthumb-interwork -o $(@)
+# echo "extern const u8" `(echo $(<F) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"_raw_end[];" > `(echo $(<F) | tr . _)`.h
+# echo "extern const u8" `(echo $(<F) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"_raw[];" >> `(echo $(<F) | tr . _)`.h
+# echo "extern const u32" `(echo $(<F) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`_raw_size";" >> `(echo $(<F) | tr . _)`.h
+#endef
+
+
+define bin2o
+ bin2s $< | $(AS) -mthumb -mthumb-interwork -o $(@)
+ echo "extern const u8" `(echo $(<F) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"_end[];" > `(echo $(<F) | tr . _)`.h
+ echo "extern const u8" `(echo $(<F) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"[];" >> `(echo $(<F) | tr . _)`.h
+ echo "extern const u32" `(echo $(<F) | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`_size";" >> `(echo $(<F) | tr . _)`.h
+endef
+
+
+#define bin2o
+# @echo $(*)
+# cp $(<) $(*).tmp
+# $(OBJCOPY) -I binary -O elf32-littlearm -B arm \
+# --rename-section .data=.rodata \
+# --redefine-sym _binary_$(subst .,_,$(subst /,_,$(*)))_tmp_start=$(notdir $*)\
+# --redefine-sym _binary_$(subst .,_,$(subst /,_,$(*)))_tmp_end=$(notdir $*)_end\
+# $(*).tmp $(@)
+# echo "extern const u8" $(notdir $*)"[] __attribute__ ((aligned (4)));" > $(*).h
+# echo "extern const u32" $(notdir $(*))_size[]";" >> $(*).h
+#
+# echo $(*).h
+# rm $(*).tmp
+#endef
+
+##############
+# Replacement rule for the one in makefile.common
+##############
+ifndef HAVE_GCC3
+# If you use GCC, disable the above and enable this for intelligent
+# dependency tracking.
+.cpp.o:
+ $(MKDIR) $(*D)/$(DEPDIR)
+ $(CXX) -Wp,-MMD,"$(*D)/$(DEPDIR)/$(*F).d2" $(CXXFLAGS) $(CPPFLAGS) -c $(<) -o $*.o
+# $(ECHO) "$(*D)/" > $(*D)/$(DEPDIR)/$(*F).d
+ $(CAT) "$(*D)/$(DEPDIR)/$(*F).d2" >> "$(*D)/$(DEPDIR)/$(*F).d"
+ $(RM) "$(*D)/$(DEPDIR)/$(*F).d2"
+else
+# If you even have GCC 3.x, you can use this build rule, which is safer; the above
+# rule can get you into a bad state if you Ctrl-C at the wrong moment.
+# Also, with this GCC inserts additional dummy rules for the involved headers,
+# which ensures a smooth compilation even if said headers become obsolete.
+.cpp.o:
+ $(MKDIR) $(*D)/$(DEPDIR)
+# $(CXX) -Wp,-MMD,"$(*D)/$(DEPDIR)/$(*F).d",-MQ,"$@",-MP $(CXXFLAGS) $(CPPFLAGS) -c $(<) -o $*.o
+ $(CXX) -MMD -MF "$(*D)/$(DEPDIR)/$(*F).d" $(CXXFLAGS) $(CPPFLAGS) -c $(<) -o $*.o
+endif
+
+
+#---------------------------------------------------------------------------------
+
+#---------------------------------------------------------------------------------
+%.o : %.pcx
+#---------------------------------------------------------------------------------
+ @echo $(notdir $<)
+ @$(bin2o)
+
+#---------------------------------------------------------------------------------
+%.o : %.bin
+#---------------------------------------------------------------------------------
+ @echo $(notdir $<)
+ @$(bin2o)
+
+#---------------------------------------------------------------------------------
+%.o : %.raw
+#---------------------------------------------------------------------------------
+ @echo $(notdir $<)
+ @$(bin2o)
+
+#---------------------------------------------------------------------------------
+%.o : %.pal
+#---------------------------------------------------------------------------------
+ @echo $(notdir $<)
+ @$(bin2o)
+
+#---------------------------------------------------------------------------------
+%.o : %.map
+#---------------------------------------------------------------------------------
+ @echo $(notdir $<)
+ @$(bin2o)
+
+#---------------------------------------------------------------------------------
+%.o : %.mdl
+#---------------------------------------------------------------------------------
+ @echo $(notdir $<)
+ @$(bin2o)
+
+#---------------------------------------------------------------------------------
+%.nds: %.bin
+ @echo ndstool -c $@ -9 scummvm.bin $(ARM7BIN) -b ../../$(LOGO) "$(shell basename $@);ScummVM @VERSION@;DS Port"
+ ndstool -c $@ -9 scummvm.bin $(ARM7BIN) -b ../../$(LOGO) "$(shell basename $@);ScummVM @VERSION@;DS Port"
+ dsbuild $@ -l ../ndsloader.bin
+
+ padbin 16 $(basename $@).ds.gba
+
+#---------------------------------------------------------------------------------
+%.bin: %.elf
+ $(OBJCOPY) -S scummvm.elf scummvm-stripped.elf
+ $(OBJCOPY) -O binary scummvm-stripped.elf scummvm.bin
+
+#%.o: %.s
+# $(MKDIR) $(*D)/$(DEPDIR)
+# $(CXX) -Wp,-MMD,"$(*D)/$(DEPDIR)/$(*F).d",-MQ,"$@",-MP $(CXXFLAGS) $(CPPFLAGS) -c $(<) -o $*.o
+
Property changes on: scummvm/branches/gsoc2007-fsnode/backends/platform/ds/arm9/makefile.in
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ native
Added: scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.cer
===================================================================
--- scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.cer (rev 0)
+++ scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.cer 2007-06-23 19:04:15 UTC (rev 27682)
@@ -0,0 +1,21 @@
+-----BEGIN CERTIFICATE-----
+MIIDXTCCAxqgAwIBAgIBADALBgcqhkjOOAQDBQAwgZIxEDAOBgNVBAoTB1NjdW1t
+Vk0xfjB8BgNVBAMTdVNjdW1tVk0gUzYwdjM3OThiOTk0MDg2OTFhZThlZWM2N2Zl
+NGUxYmZjOTQ1YTI0YjRmYjZmMTlmMGJiNzE2N2FjYWEwYzBlNjc0OTM3MmEyY2Qw
+YjNiMmY5MWRmMGQyNTQwZjdlYzc0YzllNzhhYWJlMzkwZTAeFw0wNzA2MTAxOTQ4
+NTJaFw0wODA2MDkxOTQ4NTJaMIGSMRAwDgYDVQQKEwdTY3VtbVZNMX4wfAYDVQQD
+E3VTY3VtbVZNIFM2MHYzNzk4Yjk5NDA4NjkxYWU4ZWVjNjdmZTRlMWJmYzk0NWEy
+NGI0ZmI2ZjE5ZjBiYjcxNjdhY2FhMGMwZTY3NDkzNzJhMmNkMGIzYjJmOTFkZjBk
+MjU0MGY3ZWM3NGM5ZTc4YWFiZTM5MGUwggG3MIIBKwYHKoZIzjgEATCCAR4CgYEA
+ydXBoDldKAiq3DmfGPwReY9qHEMEh4AyuK5N4M7PvCSYUWU6sWp9PQJ1DDXOm54o
+k8IicM9/dmNdQVAGah2Oi5wizbaYV3HkFufLQOQdaOFg7uclJKp+4cnPsG8lz4DS
+j6o9kRxANZ9vJgE7qxWG5HnEPNm/l0mDbyWbtbAT//sCFQDCZT2JjR+U+o2orfUL
+tcojrwdLSQKBgGdx5eoIaGOxIXgP7ttNdL+7qOYMJD2wI93o5eRiLOaTme276pr3
+oYv3VVRZJa6UXD298b705ia/XQqO6KA9QJgPMjJnwD/8ydcZyZqmX6sNpv6dc7AN
+y/6BJN6DO0xUc9BTkQr4cYBhfkc1mYTBzxOj7bi4aATBjcCXzDXXyT2bA4GFAAKB
+gQCXsapLABnAVfz60pOQt+Kcl3x+/Rz+vXoItLg3O8cVjooi/q0uaaXF/AnO2njb
+lLHbQX3zmv/+tvD2PSyFtgNgscyTf/EECqWMK94Lb0/Jw1rvdNO86eWzsW7UzArF
+5KjJbUn64+PTSU8m7GTqGN4NFh6yFBk//Z2ljy+Zt0WZBDALBgcqhkjOOAQDBQAD
+MAAwLQIUJUCWx57QyGsiPM5w5qvX3ZYF0/kCFQC47QWyrzi4dr2y2iDNWsln7La4
+Qw==
+-----END CERTIFICATE-----
Property changes on: scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.cer
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ native
Added: scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.key
===================================================================
--- scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.key (rev 0)
+++ scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.key 2007-06-23 19:04:15 UTC (rev 27682)
@@ -0,0 +1,15 @@
+-----BEGIN DSA PRIVATE KEY-----
+Proc-Type: 4,ENCRYPTED
+DEK-Info: DES-EDE3-CBC,AA4358B4EE40C19C
+
+OyPKZgptp6jQoGEckxKO4fHS9IL72F0rHduv4qguYHdKeyjREgWDN6+/QhI3SQWu
+9bch/oyo/mhO6ZcLjOukBVaygYNw8VTnuEUITmPPrLo7Hcrs12y5jr6MCJ1XBho8
+K0eBwJpqEYFlRZcGqLhJVcPbREEZAOY522MsnT4V3Sa2yerK0AWMSXSTjWRPVxlo
+RdqB7vdU/zp3FZvV1gXp+aAOb0WoUbZZYo5r4JnHS+6DGHJfWtXucz4VhcrYxLa8
+xNE3WvTvnIyudG1Yc4J5pl0fpS7wBHQHFtqv2ncRWhY49r9RNR6bfMLZULZj8mwo
+QRYkUeaAkdEkTiYlVl/KQ1i3Hh1qupaQwxF/WqCtfbvLA6KlzYLllTnGwsRHujid
+f97fGt1z8uWGtzDWQzKW3nY0I2psAA/bCYwL88G1aOPEyp4Ql1lkyxRm4Tw7Zu5M
+pF09dAgkFVvPH5Bn7o05ZS9ruNhF5K/5QNg3WTVDhZEqkqiXWRGXaEhc6ZfoK/+H
+ne1d3+QfKEX8rxAtjX1hVNkNG1ivmIExpa45wUmSE2pOIj31ny0gK1tCv4mdgEDL
+elR3M/oAw0BdxBn9LqmDaQ==
+-----END DSA PRIVATE KEY-----
Property changes on: scummvm/branches/gsoc2007-fsnode/backends/platform/symbian/res/scummvm.key
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ native
Added: scummvm/branches/gsoc2007-fsnode/backends/platform/wince/README-WinCE.txt
===================================================================
--- scummvm/branches/gsoc2007-fsnode/backends/platform/wince/README-WinCE.txt (rev 0)
+++ scummvm/branches/gsoc2007-fsnode/backends/platform/wince/README-WinCE.txt 2007-06-23 19:04:15 UTC (rev 27682)
@@ -0,0 +1,616 @@
+ScummVM Windows CE FAQ
+Last updated: $Date: 2007-06-11 02:38:33 -0600 (Mon, 11 Jun 2007) $
+Release version: 0.10.0
+------------------------------------------------------------------------
+
+New in this version
+-------------------
+
+0.10.0:
+Major improvements have taken place in this version, mostly for behind-
+the-scenes stuff. First, we have migrated to GCC for building the Windows
+CE port. This helped take care of some obscure compiler bugs which were
+in there for quite a long time. It has also lead to efficient code
+generation due to GCC's advanced capabilities and consequently increased
+runtime speed. The second important change was the overhaul of the SDL
+library port. The benefits from this are twofold: The real-time code paths
+have been optimized, including contributed ARM assembly code for critical
+functions. Further, the screen display and mouse/keyboard input code has
+been partially rewritten to allow for increased compatibility across all
+devices.
+Due to the update of keyboard handling code, the keycodes have changed
+slightly. Running this version of ScummVM will overwrite your key bindings
+with the new defaults. See the section on how to play on Smartphones and
+Pocket PCs below for the new default keybindings.
+
+------------------------------------------------------------------------
+
+This document is intended to give common answers to specific ScummVM
+issues on Windows CE, in 3 sections
+ * "General questions" : browse this section to get started and see
+ general issues
+ * "Game specific questions" : lists some common game specific issues
+ * "Support and links" : how to get support if you're still puzzled
+
+------------------------------------------------------------------------
+General questions
+------------------------------------------------------------------------
+
+Which devices are supported ?
+-----------------------------
+
+Official build
+--------------
+
+The official build is based on the ARM architecture and should work with any
+Pocket PC 2000, Pocket PC 2002, Pocket PC 2003, Pocket PC 2003 SE, Smartphone
+2002, Smartphone 2003 or Windows Mobile based device.
+
+Support for old ARM architectures (Handheld PCs, Palm Size PCs) and other CPUs
+(MIPS, SH3) is discontinued. Feel free to generate builds for these
+architectures and contact us to include them on ScummVM website.
+
+Games supported
+---------------
+
+The Windows CE port of ScummVM supports all available game engines.
+
+ScummVM distinguishes devices based on two characteristics: Type and resolution.
+Supported types of devices are Smartphones (usually no stylus) and Pocket PCs
+(stylus). The supported resolutions are 176x220 (Smartphone), 240x240 (QVGA
+square), 240x320 (QVGA), 320x240 (QVGA landscape), 480x640 (VGA). Devices with
+resolutions larger than VGA should also be supported with automatic screen
+centering.
+
+* Low resolution Smartphones (176x220)
+
+Support is only provided for all 320x200 or 320x240 games. The font can get
+hard to read (you should prefer talkie games, or wear glasses :-P)
+Games with 640x480 resolution such as COMI or BSWORD cannot be scaled down
+to this resolution and still be playable.
+
+* QVGA square devices (240x240)
+
+Only 320x200 or 320x240 games are supported due to lack of downsampling scaler.
+
+* QVGA Pocket PCs or Smartphones (240x320 or 320x240)
+
+All games are playable in these devices. Landscape devices may not be able to
+rotate the screen around.
+
+* VGA (640x480) or higher Pocket PCs
+
+All non VGA games should work properly on these devices. They can be resized
+with different scalers. Moreover, VGA games will be displayed in true VGA mode.
+
+Partial / Discontinued support
+------------------------------
+
+Support for the following devices is not complete, not working properly or
+discontinued because the device is now obsolete. Feel free to contribute and
+improve the port for your favorite device, or use the last release built with
+the previous port architecture (0.5.1) which was less resource hungry and
+supported more exotic devices.
+
+* "Paletted" devices (non "true color")
+
+These devices will be supported through the GDI layer which will slow down the
+games a lot. You can try to disable the music/sound effects to get a better
+game experience.
+
+* "Mono" devices
+
+I don't even think anything will be displayed on these devices :) you can try
+and report your success ...
+
+* MIPS/SH3 devices with QVGA resolution (240x320), "true color"
+
+Some devices may be a bit too slow, especially if direct screen access (GAPI)
+is not supported on these devices.
+
+* ARM/MIPS/SH3 devices with VGA resolution (640x480) (Palm Size PC / Handheld
+ PC platform)
+
+True VGA games will probably be too slow to run properly on these devices even
+if they can support them ...
+
+* ARM/MIPS/SH3 devices with desktop resolution (800x600) (Handheld PC platform)
+
+No, there will never be ANY scaler supporting 800x600 resolution, because
+320x200 games CANNOT be resized to a 800x600 by a simple operation.
+
+And the device will probably be too slow to perform any kind of graphic
+transform anyway :)
+
+How do I install ScummVM for Windows CE ?
+-----------------------------------------
+
+Simple! Unpack the release package on your desktop pc, then copy all its contents
+to a folder on your device. Typically, you should at least have scummvm.exe,
+modern.ini and modern.zip in the same directory. Finally, upload your beloved games
+and fire it up :-)
+
+Some devices (like Pocket PC 2000) require GAPI to be present.
+
+How do I install a game ?
+-------------------------
+
+You'll at least need to copy all the data files from your game, in a
+sub-directory of your game directory.
+
+You'll need to put the data files in a directory named after ScummVM game
+name (see "Supported Games" section in ScummVM readme) for the games having
+"generic" data files (.LFL files). Recent games can be put in any directory.
+
+You can compress the multimedia files (sound/video) as described in the
+ScummVM readme.
+
+You can compress the audio tracks of Loom or Monkey Island 1 as described in
+the ScummVM readme. If you are running these games on a slow device with Ogg
+Vorbis compression, it's recommended to sample the files to 11 kHz (this sample
+rate is not supported by other versions of ScummVM).
+
+If you need more details, you can check SirDave's mini-manual online available
+at: http://forums.scummvm.org/viewtopic.php?t=936
+and at: http://www.pocketmatrix.com/forums/viewtopic.php?t=8606
+
+How do I run a game ?
+---------------------
+
+If it's the first time you're running ScummVM for Windows CE, have installed or
+removed games, you need to rescan your game directory.
+ * Select Add Game, tap the root directory of your games, and tap "Yes" to begin
+ an automatic scan of the installed games.
+
+Usually all games are detected and you can start playing right away. If your
+game is not detected check its directory name and your data files.
+
+To play a game, tap on its name then tap the "Start" button or double tap its
+name.
+
+How do I play a game on a Pocket PC or Handheld PC device ?
+-----------------------------------------------------------
+
+The stylus is your mouse cursor, and a tap is a left mouse button click.
+
+As the Pocket PC lacks some keys, a toolbar is displayed at the bottom of the
+screen to make the most common functions just a tap away
+ * The disk icon opens ScummVM options menu to save your game, or change your
+ current game settings (depends on the game)
+ * The movie icon skips a non interactive sequence, the current dialog or
+ behaves like the ESC key on a regular keyboard (depends on the game)
+ * The sound icon turns all sound effects and music off and on
+ * The key icon allow you to map a key action to a device button
+ * The monkey icon switches between portrait, landscape and inverse landscape
+ mode (depends on the display drivers)
+
+You can map additional actions on your device hardware buttons using the
+"Options" / "Key" menu in the ScummVM options menu. To associate an action to
+a key, tap the action, then the "Map" button and press the hardware key.
+The following actions are available :
+
+ * Pause : pause the game
+ * Save : open ScummVM option menu
+ * Quit : quit ScummVM (without saving, be careful when using it)
+ * Skip : skip a non interactive sequence, the current dialog or
+ behaves like the ESC key on a regular keyboard
+ * Hide : hide or display the toolbar
+ * Keyboard : hide or display the virtual keyboard
+ * Sound : turns all sound effects and music off and on
+ * Right click : acts as a right mouse button click
+ * Cursor : hide or display the mouse cursor
+ * Free look : go in or out of free-look mode. In this mode, you can tap
+ the screen to look for interesting locations without walking.
+ * Zoom up : magnify the upper part of the screen for 640x480 games
+ rendered on a QVGA device.
+ * Zoom down : magnify the lower part of the screen for 640x480 games
+ rendered on a QVGA device.
+ * Multi Function : this key performs a different function depending on the game
+ : Full Throttle -> win an action sequence (cheat)
+ : Fate of Atlantis -> sucker punch (cheat)
+ : Bargon -> F1 (start the game)
+ : All AGI games -> bring up the predictive input dialog
+ * Bind keys : map a key action to a device button
+ * Up,Down,Left :
+ Right, : emulate mouse/stylus behavior
+ Left Click :
+
+The default key bindings for Pocket PCs are (note that not all keys are mapped):
+ * Up, Down, Left, Right : (dpad) arrow keys
+ * Left Click : softkey A
+
+If you start a game when a Right click mapping is necessary, ScummVM will ask
+you to map one of your hardware key to this action before playing. Just press
+the key you want to map if you see this message.
+
+Notes:
+- THE TOOLBAR CAN BE CYCLED BY DOUBLE TAPPING (SEE BELOW)
+- YOU MUST HIDE THE TOOLBAR TO SCROLL THROUGH THE INVENTORY IN ZAK
+- YOU MUST DISPLAY THE KEYBOARD TO FIGHT IN INDIANA JONES 3
+- YOU MUST MAP THE RIGHT CLICK ACTION TO PLAY SEVERAL GAMES
+
+How do I hide the toolbar ?
+---------------------------
+
+Note: THIS IS A VERY USEFUL AND SOMETIMES NECESSARY SHORTCUT
+
+Double tapping the stylus at the top of the screen will switch between a
+visible toolbar panel, a virtual keyboard, and hiding panel. If any part of
+the screen is obscured by the toolbar (like the load/save game dialogs) you can
+use the invisible panel mode to get to it. For 320x200 games on QVGA Pocket
+PCs, when the panel is hidden the game screen is resized to 320x240 (aspect
+ratio correction) for better gaming experience.
+
+How do I play a game on a Smartphone device ?
+---------------------------------------------
+
+On non-stylus devices, the mouse cursor is emulated via a set of keys.
+The cursor will move faster if you keep the key down. You can tweak this
+behaviour in the configuration file described below.
+
+Here is
+the list of available actions for Smartphones:
+
+ * Up,Down,Left :
+ Right, : emulate mouse/stylus behavior
+ Left Click :
+ Right Click :
+ * Save : open ScummVM option menu
+ * Skip : skip a non interactive sequence, the current dialog or
+ behaves like the ESC key on a regular keyboard
+ * Zone : switch between the 3 different mouse zones
+ * Multi Function : this key performs a different function depending on the game
+ : Full Throttle -> win an action sequence (cheat)
+ : Fate of Atlantis -> sucker punch (cheat)
+ : Bargon -> F1 (start the game)
+ : All AGI games -> bring up the predictive input dialog
+ * Bind keys : map a key action to a device button
+ * Keyboard : hide or display the virtual keyboard
+ * Rotate : rotate the screen (also rotates dpad keys)
+ * Quit : quit ScummVM (without saving, be careful when using it)
+
+The "Zone" key is a *very* valuable addition allowing you to jump quickly
+between three screen zones : the game zone, the verbs zone and the inventory
+zone. When you switch to a zone the cursor will be reset to its former location
+in this zone.
+
+The default key map for these actions is:
+
+ * Up, Down, Left, Right : (dpad) arrow keys
+ * Left Click : softkey A
+ * Right Click : softkey B
+ * Save : call/talk
+ * Skip : back
+ * Zone : 9
+ * Multi Function : 8
+ * Bind keys : end call
+ * Keyboard : (dpad) enter
+ * Rotate : 5
+ * Quit : 0
+
+You can change the key mapping at any time by bringing up the key mapping menu
+(Bind keys action).
+
+How do I tweak the configuration of ScummVM ?
+---------------------------------------------
+
+See the section regarding the configuration file (scummvm.ini) in ScummVM
+README file - the same keywords apply.
+
+Some parameters are specific to this port :
+
+Game specific sections (f.e. [monkey2]) - performance options
+
+ * high_sample_rate bool Desktop quality (22 kHz) sound output if set.
+ 11 kHz otherwise. The default is 11 kHz.
+ If you have a fast device, you can set this to
+ true to enjoy better sound effects and music.
+ * FM_high_quality bool Desktop quality FM synthesis if set. Lower
+ quality otherwise. The default is low quality.
+ You can change this if you have a fast device.
+ * sound_thread_priority int Set the priority of the sound thread (0, 1, 2).
+ Depending on the release, this is set to 1
+ internally (above normal). If you get sound
+ stuttering try setting this to a higher value.
+ Set to 0 if your device is fast enough or if
+ you prefer better audio/video synchronization.
+ * Smush_force_redraw int Force a Smush frame redraw every X missed
+ frames. Mainly used for Full Throttle action
+ sequences. Setting it lower gives more
+ priority to screen redraws. Setting it higher
+ gives more priority to stylus/keyboard input.
+ The default is 30.
+
+Game specific sections (f.e. [monkey2]) - game options
+
+ * landscape int 0: Portrait, 1: Landscape, 2: Inverse Landscape
+ You can also use this in the [scummvm] section
+ in QVGA Pocket PCs to display the launcher in
+ landscape, for example, at startup.
+
+[scummvm] section - keys definition
+
+You usually do not wish to modify these values directly, as they are set
+by the option dialog, and are only given here for reference.
+
+ * action_mapping_version int Mapping version linked to ScummVM version.
+ * action_mapping string Hex codes describing the key associated to
+ each different action.
+ * debuglevel int Debug Level 1 is used by the WinCE port
+ for reporting diagnostic output in the
+ scummvm_stdout.txt and scummvm.stderr.txt
+ files in the current working directory.
+
+[scummvm] section - mouse emulation tuning
+
+You can tweak these parameters to customize how the cursor is handled.
+
+ * repeatTrigger int Number of milliseconds a key must be held to
+ consider being repeated.
+ * repeatX int Number of key repeat events before changing
+ horizontal cursor behaviour.
+ * stepX1 int Horizontal cursor offset value when the key is
+ not repeated.
+ * stepX2 int Horizontal cursor offset value when the key is
+ repeated less than repeatX.
+ * stepX3 int Horizontal cursor offset value when the key is
+ repeated more than repeatX.
+ * repeatY int Number of key repeat events before changing
+ vertical cursor behaviour.
+ * stepY1 int Vertical cursor offset value when the key is
+ not repeated.
+ * stepY2 int Horizontal cursor offset value when the key is
+ repeated less than repeatY.
+ * stepY3 int Vertical cursor offset value when the key is
+ repeated more than repeatY.
+
+------------------------------------------------------------------------
+Game specific questions
+------------------------------------------------------------------------
+
+---------------
+-- All Games --
+---------------
+
+I need to press a special key
+-----------------------------
+
+Bring up the virtual keyboard. On Smartphones take a look at the Keyboard action above.
+On Pocket PCs it's easier to double-tap at the top of the screen.
+
+The panel is obscuring the playfield area
+-----------------------------------------
+
+Double tap at the top of the screen to hide it. As an aside, the aspect ratio
+correction scaler will kick in if the game/device combo is appropriate.
+
+How do I name my save games ?
+-----------------------------
+
+Use the virtual keyboard (Keyboard action).
+
+ScummVM is stuck for some reason
+--------------------------------
+
+Bind and use the quit action to quit.
+
+I cannot rotate the screen to landscape/inverse landscape
+---------------------------------------------------------
+
+Depending on the video driver, ScummVM may opt to not provide such functionality.
+In general, when ScummVM starts in normal "portrait" orientation, the device driver
+reports better display characteristics and you should consider launching from portrait.
+
+I'm having problems. Is there diagnostic output available ?
+-----------------------------------------------------------
+
+Insert a line in the [scummvm] section of scummvm.ini with the following:
+debuglevel=1
+Run ScummVM. When it closes scummvm_stdout.txt and scummvm_stderr.txt files will be
+available at the program directory (see section above).
+
+ScummVM crashes and returns to desktop
+--------------------------------------
+
+File a bug report including diagnostic output (see previous question).
+
+--------------------------
+-- Beneath a Steel Sky --
+--------------------------
+
+Introduction movie is too slow or never ends ...
+-------------------------------------------------
+
+Skip it :)
+
+How can I open the inventory in Beneath a Steel Sky ?
+---------------------------------------------------
+
+Tap the top of the screen. Check your stylus calibration if you still cannot
+open it.
+
+How can I use an item in Beneath a Steel Sky ?
+----------------------------------------------
+
+You need to map the right click button (see the General Questions section).
+
+----------------------------
+-- Curse of Monkey Island --
+----------------------------
+
+How can I open the inventory in Curse of Monkey Island ?
+------------------------------------------------------
+
+You need to map the right click button (see the General Questions section).
+
+I'm experiencing random crashes ...
+------------------------------------
+
+This game has high memory requirements, and may crash sometimes on low
+memory devices. Continue your game with the latest automatically saved
+game and everything should be fine.
+You can consider removing the music and voice files (VOXDISK.BUN, MUSDISK.BUN)
+to lower these requirements.
+
+Sound synchronization is lost in Curse of Monkey Island videos
+--------------------------------------------------------------
+
+Use a faster device :-(
+
+--------------------
+-- Full Throttle --
+--------------------
+
+I'm experiencing random crashes ...
+------------------------------------
+
+This game has high memory requirements, and may crash sometimes on low
+memory devices. Continue your game with the latest automatically saved
+game and everything should be fine.
+You can consider removing the voice file (MONSTER.SOU) and disable the
+music to lower these requirements.
+
+----------------------------------------
+-- Indiana Jones and the Last Crusade --
+----------------------------------------
+
+How can I fight in Indiana Jones and the Last Crusade ?
+-----------------------------------------------------
+
+You need to map the keyboard button (see the General Questions section).
+
+---------------
+-- Sam & Max --
+---------------
+
+How can I change the current action ?
+-------------------------------------
+
+You need to map the right click button (see the General Questions section).
+
+How can I exit a mini game ?
+----------------------------
+
+Use the skip toolbar icon (see the General Questions section).
+
+-------------------
+-- Simon 1 and 2 --
+-------------------
+
+How can I save or quit in Simon ?
+--------------------------------
+
+"Use" (use the use verb :p) the postcard. The ScummVM option dialog is disabled
+in Simon games.
+
+On Smartphone, you'll need to push the Action button (center of the pad) to
+quit the game.
+
+-------------
+-- The Dig --
+-------------
+
+I'm experiencing random crashes ...
+------------------------------------
+
+This game has high memory requirements, and may crash sometimes on low
+memory devices. Continue your game with the latest automatically saved
+game and everything should be fine.
+You can consider removing the music and voice files (VOXDISK.BUN, MUSDISK.BUN)
+to lower these requirements.
+
+--------------------
+-- Zak Mc Kracken --
+--------------------
+
+How can I scroll through my inventory items in Zak Mc Kracken ?
+---------------------------------------------------------------
+
+You need to map the hide toolbar button (see the General Questions section) or
+double tap at the top of the screen (from 0.8.0+)
+
+------------------------
+-- Broken Sword 1 & 2 --
+------------------------
+
+I've installed the movies pack but they are not playing/they are slow
+---------------------------------------------------------------------
+
+MPEG 2 playback takes too much memory in the current release, and may prevent
+movies from playing in VGA mode. Consider changing to the DXA cutscene pack
+which is many times faster.
+
+---------------
+-- Gobliiins --
+---------------
+
+How do I enter a code ?
+-----------------------
+
+Use the virtual keyboard.
+
+-------------------
+-- Bargon Attack --
+-------------------
+
+How do I start the game (F1 : Game, F2 : Demo)
+----------------------------------------------
+
+Use the Multi Function action.
+
+----------------------
+-- AGI engine games --
+----------------------
+
+Do you expect me to play these games on keyboard less devices ?
+---------------------------------------------------------------
+
+Sure we do :-)
+If you want to get some mileage on your stylus you can use the virtual keyboard.
+There is a very useful alternative though, the AGI engine's predictive input dialog.
+It requires a dictionary to be present. Just tap on the command line or use the
+Multi Function action to bring it up. On Smartphones, when the dialog is shown
+all key mapping is disabled temporarily (including mouse emulation). Input is
+performed either by pressing the phone's numeric keypad keys and dpad enter to
+close the dialog, or by navigating the buttons using the dpad arrows and pressing
+with dpad enter. Check the main Readme file for more information on this.
+
+------------------------------------------------------------------------
+Support
+------------------------------------------------------------------------
+
+Help, I've read everything and ...
+-----------------------------------
+
+Luckily, as there is a huge variety of Windows CE devices, a specific forum
+is dedicated to this ScummVM port. You can ask your question on the WinCE
+ScummVM forum available at http://forums.scummvm.org/viewforum.php?f=6
+
+Some older questions and very nice tutorials are still available on the historic
+PocketMatrix forum at http://www.pocketmatrix.com/forums/viewforum.php?f=20
+where the community is always glad to help and have dealt with all the bugs for
+many years now :)
+
+I think I found a bug, ScummVM crashes in ...
+---------------------------------------------
+
+See the "Reporting Bugs" section in ScummVM readme.
+
+If you have a Pocket PC or Handheld PC, be sure to include its resolution (obtained
+on the second dialog displayed on the "About" menu) in your bug report.
+
+If you cannot reproduce this bug on another ScummVM version, you can cross
+post your bug report on ScummVM forums.
+
+I want to compile my own ScummVM for Windows CE
+-----------------------------------------------
+
+Take a look at:
+http://wiki.scummvm.org/index.php/Compiling_ScummVM/Windows_CE
+
+
+------------------------------------------------------------------------
+Good Luck and Happy Adventuring!
+The ScummVM team.
+http://www.scummvm.org/
+------------------------------------------------------------------------
Property changes on: scummvm/branches/gsoc2007-fsnode/backends/platform/wince/README-WinCE.txt
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ native
Added: scummvm/branches/gsoc2007-fsnode/common/keyboard.h
===================================================================
--- scummvm/branches/gsoc2007-fsnode/common/keyboard.h (rev 0)
+++ scummvm/branches/gsoc2007-fsnode/common/keyboard.h 2007-06-23 19:04:15 UTC (rev 27682)
@@ -0,0 +1,266 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/branches/gsoc2007-fsnode/common/keyboard.h $
+ * $Id: keyboard.h 27654 2007-06-23 10:06:39Z fingolfin $
+ *
+ */
+
+#ifndef COMMON_KEYBOARD_H
+#define COMMON_KEYBOARD_H
+
+#include "common/scummsys.h"
+
+namespace Common {
+
+enum KeyCode {
+ KEYCODE_INVALID = 0,
+
+ KEYCODE_BACKSPACE = 8,
+ KEYCODE_TAB = 9,
+ KEYCODE_CLEAR = 12,
+ KEYCODE_RETURN = 13,
+ KEYCODE_PAUSE = 19,
+ KEYCODE_ESCAPE = 27,
+ KEYCODE_SPACE = 32,
+ KEYCODE_EXCLAIM = 33,
+ KEYCODE_QUOTEDBL = 34,
+ KEYCODE_HASH = 35,
+ KEYCODE_DOLLAR = 36,
+ KEYCODE_AMPERSAND = 38,
+ KEYCODE_QUOTE = 39,
+ KEYCODE_LEFTPAREN = 40,
+ KEYCODE_RIGHTPAREN = 41,
+ KEYCODE_ASTERISK = 42,
+ KEYCODE_PLUS = 43,
+ KEYCODE_COMMA = 44,
+ KEYCODE_MINUS = 45,
+ KEYCODE_PERIOD = 46,
+ KEYCODE_SLASH = 47,
+ KEYCODE_0 = 48,
+ KEYCODE_1 = 49,
+ KEYCODE_2 = 50,
+ KEYCODE_3 = 51,
+ KEYCODE_4 = 52,
+ KEYCODE_5 = 53,
+ KEYCODE_6 = 54,
+ KEYCODE_7 = 55,
+ KEYCODE_8 = 56,
+ KEYCODE_9 = 57,
+ KEYCODE_COLON = 58,
+ KEYCODE_SEMICOLON = 59,
+ KEYCODE_LESS = 60,
+ KEYCODE_EQUALS = 61,
+ KEYCODE_GREATER = 62,
+ KEYCODE_QUESTION = 63,
+ KEYCODE_AT = 64,
+
+ KEYCODE_LEFTBRACKET = 91,
+ KEYCODE_BACKSLASH = 92,
+ KEYCODE_RIGHTBRACKET= 93,
+ KEYCODE_CARET = 94,
+ KEYCODE_UNDERSCORE = 95,
+ KEYCODE_BACKQUOTE = 96,
+ KEYCODE_a = 97,
+ KEYCODE_b = 98,
+ KEYCODE_c = 99,
+ KEYCODE_d = 100,
+ KEYCODE_e = 101,
+ KEYCODE_f = 102,
+ KEYCODE_g = 103,
+ KEYCODE_h = 104,
+ KEYCODE_i = 105,
+ KEYCODE_j = 106,
+ KEYCODE_k = 107,
+ KEYCODE_l = 108,
+ KEYCODE_m = 109,
+ KEYCODE_n = 110,
+ KEYCODE_o = 111,
+ KEYCODE_p = 112,
+ KEYCODE_q = 113,
+ KEYCODE_r = 114,
+ KEYCODE_s = 115,
+ KEYCODE_t = 116,
+ KEYCODE_u = 117,
+ KEYCODE_v = 118,
+ KEYCODE_w = 119,
+ KEYCODE_x = 120,
+ KEYCODE_y = 121,
+ KEYCODE_z = 122,
+ KEYCODE_DELETE = 127,
+
+ // Numeric keypad
+ KEYCODE_KP0 = 256,
+ KEYCODE_KP1 = 257,
+ KEYCODE_KP2 = 258,
+ KEYCODE_KP3 = 259,
+ KEYCODE_KP4 = 260,
+ KEYCODE_KP5 = 261,
+ KEYCODE_KP6 = 262,
+ KEYCODE_KP7 = 263,
+ KEYCODE_KP8 = 264,
+ KEYCODE_KP9 = 265,
+ KEYCODE_KP_PERIOD = 266,
+ KEYCODE_KP_DIVIDE = 267,
+ KEYCODE_KP_MULTIPLY = 268,
+ KEYCODE_KP_MINUS = 269,
+ KEYCODE_KP_PLUS = 270,
+ KEYCODE_KP_ENTER = 271,
+ KEYCODE_KP_EQUALS = 272,
+
+ // Arrows + Home/End pad
+ KEYCODE_UP = 273,
+ KEYCODE_DOWN = 274,
+ KEYCODE_RIGHT = 275,
+ KEYCODE_LEFT = 276,
+ KEYCODE_INSERT = 277,
+ KEYCODE_HOME = 278,
+ KEYCODE_END = 279,
+ KEYCODE_PAGEUP = 280,
+ KEYCODE_PAGEDOWN = 281,
+
+ // Function keys
+ KEYCODE_F1 = 282,
+ KEYCODE_F2 = 283,
+ KEYCODE_F3 = 284,
+ KEYCODE_F4 = 285,
+ KEYCODE_F5 = 286,
+ KEYCODE_F6 = 287,
+ KEYCODE_F7 = 288,
+ KEYCODE_F8 = 289,
+ KEYCODE_F9 = 290,
+ KEYCODE_F10 = 291,
+ KEYCODE_F11 = 292,
+ KEYCODE_F12 = 293,
+ KEYCODE_F13 = 294,
+ KEYCODE_F14 = 295,
+ KEYCODE_F15 = 296,
+
+ // Key state modifier keys
+ KEYCODE_NUMLOCK = 300,
+ KEYCODE_CAPSLOCK = 301,
+ KEYCODE_SCROLLOCK = 302,
+ KEYCODE_RSHIFT = 303,
+ KEYCODE_LSHIFT = 304,
+ KEYCODE_RCTRL = 305,
+ KEYCODE_LCTRL = 306,
+ KEYCODE_RALT = 307,
+ KEYCODE_LALT = 308,
+ KEYCODE_RMETA = 309,
+ KEYCODE_LMETA = 310,
+ KEYCODE_LSUPER = 311, // Left "Windows" key
+ KEYCODE_RSUPER = 312, // Right "Windows" key
+ KEYCODE_MODE = 313, // "Alt Gr" key
+ KEYCODE_COMPOSE = 314, // Multi-key compose key
+
+ // Miscellaneous function keys
+ KEYCODE_HELP = 315,
+ KEYCODE_PRINT = 316,
+ KEYCODE_SYSREQ = 317,
+ KEYCODE_BREAK = 318,
+ KEYCODE_MENU = 319,
+ KEYCODE_POWER = 320, // Power Macintosh power key
+ KEYCODE_EURO = 321, // Some european keyboards
+ KEYCODE_UNDO = 322 // Atari keyboard has Undo
+};
+
+/**
+ * List of certan special and some fake 'ascii' values used in keyboard events.
+ * The values for the function keys listed here are based on what certain SCUMM
+ * games expect in their scripts.
+ * @todo Get rid of the function key values, and instead enforce that engines use
+ * the keycode value to handle these.
+ */
+enum {
+ ASCII_BACKSPACE = 8,
+ ASCII_TAB = 9,
+ ASCII_RETURN = 13,
+ ASCII_ESCAPE = 27,
+ ASCII_SPACE = 32,
+
+ ASCII_F1 = 315,
+ ASCII_F2 = 316,
+ ASCII_F3 = 317,
+ ASCII_F4 = 318,
+ ASCII_F5 = 319,
+ ASCII_F6 = 320,
+ ASCII_F7 = 321,
+ ASCII_F8 = 322,
+ ASCII_F9 = 323,
+ ASCII_F10 = 324,
+ ASCII_F11 = 325,
+ ASCII_F12 = 326
+};
+
+/**
+ * Keyboard modifier flags, used for Event::kbd::flags.
+ */
+enum {
+ KBD_CTRL = 1 << 0,
+ KBD_ALT = 1 << 1,
+ KBD_SHIFT = 1 << 2
+};
+
+/**
+ * Keyboard status, as used in the Event struct.
+ */
+struct KeyState {
+ /**
+ * Abstract key code (will be the same for any given key regardless
+ * of modifiers being held at the same time.
+ * For example, this is the same for both 'A' and Shift-'A'.
+ * @todo Document which values are to be used for non-ASCII keys
+ * like F1-F10. For now, let's just say that our primary backend
+ * is the SDL one, and it uses the values SDL uses... so until
+ * we fix this, your best bet is to get a copy of SDL_keysym.h
+ * and look at that, if you want to find out a key code.
+ */
+ KeyCode keycode;
+
+ /**
+ * ASCII-value of the pressed key (if any).
+ * This depends on modifiers, i.e. pressing the 'A' key results in
+ * different values here depending on the status of shift, alt and
+ * caps lock.
+ */
+ uint16 ascii;
+
+ /**
+ * Status of the modifier keys. Bits are set in this for each
+ * pressed modifier
+ * @see KBD_CTRL, KBD_ALT, KBD_SHIFT
+ */
+ byte flags;
+
+ KeyState(KeyCode kc = KEYCODE_INVALID, uint16 asc = 0, byte f = 0) {
+ keycode = kc;
+ ascii = asc ? asc : (uint16)kc;
+ flags = f;
+ }
+
+ void reset() {
+ keycode = KEYCODE_INVALID;
+ ascii = flags = 0;
+ }
+};
+
+} // End of namespace Common
+
+#endif
Property changes on: scummvm/branches/gsoc2007-fsnode/common/keyboard.h
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ native
Added: scummvm/branches/gsoc2007-fsnode/dists/pred.dic
===================================================================
--- scummvm/branches/gsoc2007-fsnode/dists/pred.dic (rev 0)
+++ scummvm/branches/gsoc2007-fsnode/dists/pred.dic 2007-06-23 19:04:15 UTC (rev 27682)
@@ -0,0 +1,7986 @@
+222 cab
+2222243 cabbage
+222243 cabbie
+222253 babble
+22229 cabby
+2223 babe
+2223537283 accelerate
+22237 babes
+222377 access
+222378 accept
+22243368 accident
+2224336825 accidental
+22246 cabin
+2224638 cabinet
+22246387 cabinets
+222467 cabins
+2225 back
+2225224 backbag
+22253 cable
+22253667 backdoor
+222537 cables
+22257433 backside
+22257666 backroom
+222578243 backstage
+222587 backup
+2225877 backups
+2226366 abandon
+222636633 abandoned
+222652337 accolades
+22266 bacon
+222665 acamol
+222673466 accordion
+222674669 cacophony
+222678 accost
+2226868 account
+2226868268 accountant
+22283742 bacteria
+22284 cacti
+222844 cactii
+2228685283 accumulate
+222887 cactus
+2229 baby
+22293655 babydoll
+22297 babys
+223 abe bad cad
+2232837 cadaver
+22328377 cadavers
+2233 cafe
+22333463 caffeine
+223343 caddie
+223383742 cafeteria
+22343 badge
+2234522 cadilac
+22345522 cadillac
+223666 badoom
+2238 abet
+223828466 abduction
+22382867 abductor
+223828677 abductors
+224 bag cag
+2243 acid cage
+22433 caged
+2243676547 acidopolis
+22437 cages
+2243837 acheter
+2244243 baggage
+224433 bagged
+224443 baggie
+2245 bail
+2245489 ability
+2245568 caillou
+22455689 cailloux
+22467 bains
+2247 bags
+2247473 bagpipe
+224773 caisse
+2247737 caisses
+2248 bait
+22483 bague
+224833 baited
+2248546 caitlin
+2248596 caitlyn
+2252623 balance
+2252669 balcony
+2252852867 calculator
+2253 bake cake calf able
+22536327 calendar
+22536337 calender
+22537 baker cakes
+225379 bakery
+2254226 caliban
+22543 calif
+2254367642 california
+2255 ball call
+2255268463 ballantine
+2255464 calling
+22557 balls calls
+225576468 ballpoint
+2256 calm
+225837 calves
+2258787233 balustrade
+226 can
+22624 bambi
+22625 canal
+226262 banana
+2262627 bananas
+226279 canary
+2263 band cane
+2263262 bandana
+22632662 bandanna
+22633 abode
+2263352272 candelabra
+2263423 candice
+226348 bandit
+2263487 bandits
+22635 camel
+226353 candle
+2263532272 candleabra
+226353465337 candleholder
+2263534653377 candleholders
+2263537 candles
+22635378425 candlestick
+226372 camera
+2263727 cameras
+22639 candy
+2264 bang
+226463 canine
+22647837 banister canister
+226478377 banisters canisters
+2265 bank
+226537 banker
+22656683 banknote
+226637 banner
+2266377 banners
+2266462253 abominable
+226666 cannon
+2266667 cannons
+226679 canopy
+2267 camp cans
+22673473 campfire
+22676 acorn
+226767 acorns
+22678 abort
+226787 campus
+226827 canvas
+22683 above
+2268336 canteen
+226837 banter
+22687842 acoustic
+22688 about
+226966 canyon
+2269667 canyons
+227 bar bas cap car
+22722227 barabbas
+22722232272 abracadabra
+2272233 cascade
+22722337 cascades
+2272277 carcass
+227227737 carcasses
+227233 barbed
+22723738867 carberettor
+22724247 barchair
+227242477 barchairs
+2272426 abraham
+22724267 abrahams
+22727466 abrasion
+2272826 caravan
+2272873867 carburetor
+22728738867 carburettor
+2273 barf base cape card care case
+22732255 baseball
+22734625 cardinal
+22736368 basement
+22736574 bardolph
+22737 cards cases
+22737568 cardslot
+227377 caress
+227382537 caretaker
+2274 bash cash
+2274224 cashbag
+2274246 bargain
+22743 barge
+2274347 casheir
+2274437 cashier
+22746 basin cargo
+227464 casing
+2274652 cashola
+227466 casino
+2274662842 cashomatic
+2275 bark cask
+2275337 barkeep
+227533737 barkeeper
+227538 basket casket
+2275382255 basketball
+2275387 baskets
+227539 barley
+227546 carlin
+227567 carlos
+22756884 carlotti
+22757 casks
+2275866 carlton
+22758667 carltons
+2276 barn
+2276243 barmaid carnage
+227625 carnal
+227626 barman
+227636 barmen
+227648673 carnivore
+2276486737 carnivores
+22765 carol
+227657 carols
+22766 baron
+227677 across
+22769637 barowner
+2277 bars bass cars
+227735 barrel
+2277355 barrell
+2277357 barrels
+227738 carpet
+2277387 carpets
+227742233 barricade
+22774243 carriage
+2277437 barrier carrier
+22774373 barriere
+22774377 barriers
+2277678 carport
+227768 carrot
+2277687 carrots
+2277853 capsule
+22778537 capsules
+22778665 barstool
+227786657 barstools
+22779 carry
+2278 bart cart cast
+2278246 captain
+22782467 captains
+2278273 bastard
+22783 carte carve
+227836337 bartender
+227837 carter
+2278464 carving
+22784647 carvings
+2278473 acquire
+227847625 baptismal
+2278478 baptist
+227853 castle
+2278537 castles
+2278626 bartman
+227866 carton
+227867 captor
+22787 carts
+227874343 cartridge
+2278743437 cartridges
+2278873 capture
+22797325 carwreck
+228 act bat cat
+228226627 catacombs
+22824 catch
+2282437 catcher
+22824464 catching
+2283 cave
+228346 cavein
+2283626 caveman
+2283636 cavemen
+22837 bates caves
+228376 cavern
+2284 bath
+22843 bathe
+228433725 cathedral
+228466 action
+22847 baths
+22847666 bathroom
+22848283 activate
+228482867 activator
+22848437 cavities
+2284882 bathtub
+228489 cavity
+22853766 cauldron
+228548837 catlitter
+228626 batman
+228627 catnap
+228646466 batminion
+22866 baton
+228662453 batmobile
+228667 batons
+2287 bats cats
+22873 abuse cause
+228737 causer
+228768733 abtsotree
+2287842 acustic
+22882457 cattails
+2288283 actuate
+22882867 actuator
+228837437 batteries
+2288379 battery
+228853 battle cattle
+2289255 catwalk
+229 bay
+2293667 baydoor
+22936677 baydoors
+2296638 bayonet
+2297 bays
+22977 abyss
+23 cd be
+23224 beach
+232266 beacon
+2322873 because
+23237 beads
+23242 adaga
+23245 cecil
+2325 beck
+232537 beaker
+2325377 beakers
+23259 becky
+2326 adam beam bean
+232637 beamer
+232663 become
+23267 adams beams beans
+232678255 beanstalk
+2327 bear
+23273 beard cease
+232737 beards
+2327464 bearing
+23277 bears
+23277546 bearskin
+23278 beast
+23278626 beastman
+232787 beasts
+2328 beat
+232837 beaver
+2328377 beavers
+232884385 beautiful
+232887 beatup
+233 add bed bee
+2332426237 bedchamber
+233273 befare
+2333 beef
+23337263 bedframe
+2334243 affiche
+23347628483 affirmative
+23348466 addition
+23349 affix
+2336 been
+23366 addon
+233667 addons
+233673 before
+2337 beds beep beer bees
+23372273 beercase
+233722737 beercases
+2337377 address
+233742 cedric
+2337433 bedside
+2337464 beeping
+23376224463 beermachine
+2337666 bedroom
+23377 beeps
+233777323 bedspread
+233846836 beethoven
+233853 beetle
+234 beg
+234284687 behaviour
+234323 behead
+23436684 behemoth
+234366847 behemoths
+23437483 adhesive
+234427 beggar
+2344277 beggars
+234437 begger
+2344377 beggers
+23446 begin
+234463 behind
+2345464 ceiling
+23454647 ceilings
+23464 being
+234647 beings
+234653 behold
+234663 begone
+2349 afix
+235 ael cel
+23522368 adjacent
+235327283 celebrate
+235378425 celestial
+235433 belief
+235436 aelien
+2355 bell cell
+235527 cellar
+23557 cells
+235574663 cellphone
+23558527 cellular
+23559 belly
+2356644647 belongings
+23568 belov
+23569 below
+2358 belt
+23587 belts
+235878 adjust
+2358786368 adjustment
+236 bem ben
+23624 bench
+2362437 benches
+236247 benchs
+2363 bend
+2363284 beneath
+236368 cement
+23638279 cemetary
+23638379 cemetery
+2364647837 administer
+23646478728483 administrative
+23648 admit
+23652646 benjamin
+23653 adolf
+2365372368 adolescent
+23664 benni
+23668274 cenotaph
+23669 benny
+236697 bennys
+2367 bems
+23673 adore
+236746 bensin
+23676 adorn
+236766 benson
+2368 bent cent
+236837 center
+2368373653 centerfold
+2368725 central
+236873 centre
+2368786 centrum
+2368873 centure
+237 cds
+237225 cdrack
+23723787 cerberus
+2372642 ceramic
+237325 cereal
+2373257 cereals
+237433 beside
+23745263 bergland
+2376 afro
+23762736 bernardo
+23764726 aerogram
+237675263 aeroplane
+237743 berrie
+2377437 berries
+23779 berry
+2378246 certain
+2378328 cerveau
+23783553 cervelle
+23784 berth
+2378423 cervice
+23784279 bestiary
+23784342283 certificate
+237843422837 certificates
+237869 bestow
+238 bet
+238242 betcha
+2382437 betcher
+2382629 betamax
+238368873 adventure
+23837 after
+23837243 beverage
+2383759 beverly
+238376666 afternoon
+2383774283 aftershave
+238378473 advertise
+2383784736368 advertisement
+23837847363687 advertisements
+23837847464 advertising
+238378476368 advertisment
+2383784936368 advertizement
+238423 advice
+2389336 between
+2423 chad
+2424 bich
+24246 again chain
+242467 chains
+24246729 chainsaw
+2424678 against
+24247 chair
+242473 chaise
+2424737 chaises
+242477 chairs
+24253 bible
+242538 chalet
+2425423 chalice
+24255 chalk
+2425525683 chalkcloud
+2425526273 chalkboard
+242623 chance
+2426237 chamber
+2426273 chambre
+2426335437 chandelier
+242643 change
+2426433 changed
+24264464 changing
+2426625 channal
+2426635 channel
+24266357 channels
+242672463 champagne
+24268 chant
+2427 chap char
+242722837 character
+24272625 charcoal
+242727645 charbroil
+24273 chase
+242735 chapel
+242743 charge
+2427433 charged
+2427437 charger
+24274464 charging
+2427468 chariot
+24275363 charlene
+2427537 charles
+24275377 charless
+2427539 charley
+24276 charm chasm
+242766 charon
+242767 chasms
+24277 chaps
+24278 chart
+2427837 charter
+242787 charts
+2428 chat
+24287738837 chaussettes
+242883 chauve
+2428837 chatter
+2429253 bicycle
+24292537 bicycles
+243 aid
+24323 ahead
+24325 check
+2432576468 checkpoint
+24327 cheap
+24328 cheat
+243287 cheats
+2433 biff chef
+243357 cheeks
+24337 cheer chefs
+243373 cheese
+243373253874437 cheesebleurgher
+243373287437 cheeseburger
+24337532337 cheerleader
+243375323377 cheerleaders
+2435464 cieling
+243546464 cielining
+24364225 chemical
+243642257 chemicals
+24366 bidon
+24368 agent
+24373 biere
+24377 chess
+24377437 cherries
+2437774323 chesspiece
+243779 cherry
+2437792662 cherrybomb
+24377926627 cherrybombs
+24378 chest
+243787 chests
+243795 cheryl
+2439 chew
+243933 chewed
+2439464 chewing
+244 agi big cig
+244236 chicen
+24425 chick
+2442536 chicken
+2442536534 chickenleg
+24425367 chickens
+244257 chicks
+244268866 bigbottom
+24427 cigar
+24427324 bigbrech
+244273883 cigarette
+2442738837 cigarettes
+244277 cigars
+24433 chief
+24436 chien
+2444263 agigame
+244437 bigger
+244443 ciggie
+2444437 ciggies
+24449 ciggy
+244497 ciggys
+24453 child
+244536 chiken
+244537367 childrens
+24455 chill
+244554 chilli
+2445546 chillin
+2446 chin
+24462 china
+24463 chime
+2446369 chimeny
+2446373 chinese
+24465 chink
+2446639 chimney
+24468 chiot
+2447 chip cigs
+244735 chisel
+24476865 chipmunk
+24477 chips
+2448 chit
+24482428 chitchat
+2453 bike
+24537 biker bikes
+24537225 bikerack
+245464 biking bikini
+2455 bill
+245526273 billboard
+2455273 billard
+24552737 billards
+24553653 billfold
+245542737 billiards
+2455427382253 billiardtable
+24557 bills
+24559 billy
+24568 bijou
+246 aim bin
+24626 bimbo
+246265283 chocolate
+246265283777323 chocolatespread
+2463 bind
+246337 cinder
+2463464 binding
+24634647 bindings
+246362 cinema
+24637 binds
+24639 cindy
+246423 choice
+24658646372368 bioluminescent
+246628527 binocular
+2466285277 binoculars
+24667 chomp
+246673 choose
+24667377 chompers
+2467 bins chop
+24673 chore
+24677 chops
+2467737 chopper
+24677377 choppers
+2469 chow
+247 air
+24724 birch
+247253 circle
+2472667737767 aircompressor
+24727238 aircraft
+2472848 circuit
+247288426273 circutiboard
+2473 bird
+24732243 birdcage
+24733333 birdfeed
+247336368 agreement
+247345837 airfilter
+24736378 birdnest
+24737 birds
+24737333 birdseed
+247373337 birdseeds
+247376378 birdsnest
+24739 birdy
+2474 biri
+24747 chris
+247477 chriss
+2474779 chrissy
+247478 christ
+24747867437 christopher
+247478674377 christophers
+24753 aisle
+2475625 airlock
+2476 biro
+2476275 airmask
+24775263 airplane
+2477678 airport
+2477867 airpump
+2478265 airtank
+2478376 cistern
+24784 birth
+24784329 birthday
+248 bit
+248229 chubby
+24825 chuck
+2482553 chuckle
+248259 chucky
+24828466 citation
+2483 ague bite
+24837 bites
+2484 chug
+2484946 citizin
+24865 chunk
+2487 bits
+248724 church
+24876 churn
+248787 citrus
+24883 chute
+248837 bitter
+2489 city
+2492773 bizarre
+2493 agwe
+252 bla
+2522 blab
+25225 black
+2522526273 blackboard
+25225464 blacking
+252255225 blackjack
+2522576484 blacksmith
+2522867 albator
+25228767 albatros
+25233 blade
+2523337 bladder
+25242 alaga
+252466 albino
+25252926 alakazam
+2526 clam
+2526237 clamber
+2526437 clanger
+2526465 alcohol
+252646542 alcoholic
+25265 blank
+2526538 blanket
+25265387 blankets
+25267 clams
+252674355 clamshell
+252683 alcove
+2527 clap
+2527463 clarine
+25274772 clarissa
+252747727 clarissas
+25275 clark
+25276 alarm
+25277 class
+252776283 classmate
+2527762837 classmates
+252777666 classroom
+25278 blast
+2527837 blaster
+25278377 blasters
+2528342 claudia
+25283427 claudias
+2528437 clavier
+25286 album
+25287 claus
+2528837 clatter
+25289 blatz
+2529 ajax claw clay
+25293 blaze
+25297 claws
+2529768 claypot
+253 ale cle
+253224 bleach
+25325 ckeck
+25326 clean
+2532633 cleaned
+25326464 cleaning
+2532673 cleanse
+25327 clear
+253272623 clearance
+25327464 clearing
+2532792837 clearwater
+253283 cleave
+2532837 cleaver
+2533 clef
+25338 cleft
+25363 blend
+2536337 blender
+2537424 aldrich
+253749626 clergyman
+25375 clerk
+25377 bless
+253874437 bleurgher
+2538744377 bleurghers
+253926337 alexander
+2539263377 alexanders
+2539263768 alexandrov
+254 ali
+2542 alga
+25423 algae
+2542537 clicker
+25427464 aliasing
+25432 algea
+25433 cliff
+254337 cliffs
+25436 alien
+254367 aliens
+25442867 aligator
+254448 alight
+25462 climb
+25462464 climbing
+25463 blind
+254637 blinds
+25465464 blinking
+2547 clip
+254726273 clipboard
+25477 bliss clips
+2547737 clipper
+25477377 clippers
+25477464 clipping
+254774647 clippings
+2548 clit
+25486747 clitoris
+25487378 algusest
+255 all
+25524 allah
+25536 allen
+25539 alley
+255442867 alligator
+2554428677 alligators
+2556728787 allosaurus
+2557 alls
+25574448 allright
+2559 ally
+2562237 clobber
+25622437 blobbies
+256229 blobby
+25625 block cloak clock
+256257 blocks
+2563 clod
+256376 bjoern
+2563767 bjoerns
+25653 bloke
+256537 blokes
+25663 blond blood clone
+256633 blonde
+256637 cloner clones
+25663782467 bloodstains
+256639 bloody
+25664 along
+2566464 cloning
+2566646 bloomin
+25666464 blooming
+256678 almost
+2566927 bloozar
+25673 close
+2567359 closely
+256738 closet
+2567387 closets
+2567766 blossom
+25677667 blossoms
+2568 blot
+25683 cloud
+256835263 cloudland
+256837 clouds clover
+25684 cloth
+256843 clothe
+2568437 clothes
+256843737937 clothesdryer
+25684375463 clothesline
+25684437 clothier
+25684464 clothing
+25687 blots
+256873 blouse
+2568837 blotter
+2569 blow
+25693474 blowfish
+2569562 blowjob
+25696 clown
+256962568437 clownclothes
+25696688348 clownoutfit
+256967848 clownsuit
+25697 blows
+256987 bloxur
+2573239 already
+25742238 alphabet
+25742723 alphapad
+2574448 alright
+2582 club
+25825 cluck
+25827 altar
+2583 blue
+258323779 blueberry
+25833 bluff
+2583332 alteeda
+25833327 alteedas
+258337 bluffs
+25834366 bludgeon
+2583529 bluejay
+25837 alter blues
+258463837 altimeter
+25868 blunt
+25874 blush
+25949 clxix
+26 am an cm
+262 boa bob cob
+2622 coca
+26224 coach
+262246 cocain
+2622463 cocaine
+26225378663 cobblestone
+262253786637 cobblestones
+26229 bobby
+26235436 coaelhen
+26237 amber
+262377 ambers
+2624368 ancient
+262467 anchor
+2625 anal coal
+26252866 cockatoo
+262528667 cockatoos
+26254653 coalhold
+2625748 cockpit
+262576224 cockroach
+26258245 cocktail
+2625973 analyse
+2625993 analyze
+2626 coco
+2626688 coconut
+26266887 coconuts
+2626887 cocnuts
+2627 boar bobs
+26272 cobra
+26273 board
+262737 boards
+262739255 boardwalk
+26277 amass
+26278 coast
+2628 boat coat
+2628426437 coathanger
+2628465337 coatholder
+262852623 ambulance
+26285283 ambulate
+2628626 boatman
+26287 boats coats
+2628762538 coatpocket
+26287625387 coatpockets
+262932 cobweb
+2629327 cobwebs
+2629464 amazing
+263 and
+2633 code
+26332273 codecard
+263333 coffee
+263346 coffin
+263353 coddle
+263373 coffre
+263437 bodies
+2637233 andrade
+263739 andrew
+2637397 andrews
+26374226 american
+2637643 android
+26384978 amethyst
+2639 andy body
+26392845337 bodybuilder
+26397 bodys
+264 ani bog
+26435 angel
+2643537 angeles
+26443 angie
+2645 boil coil
+26453 angle
+264537 boiler
+2645464 boiling
+26457 coils
+2646 coin
+264622 cognac
+264625 animal
+2646257 animals
+264628466 animation
+264637 cogner
+26467 coins
+26467388767568 coinreturnslot
+26467568 coinslot
+26479 angry
+26483 boite
+264837 boites
+2649 coiw
+265 bol
+2652 boka cola
+265232 colada
+26527 colas
+26527465 colargol
+26529 colby
+2653 coke cold
+26537 cokes
+2653767426 coldsorian
+265527 collar
+26553 ankle colle
+2655328 collect
+265532822537 collectables
+2655328466 collection
+2655328677 collectors
+2655343 college
+265537 ankles
+2655467 collins
+2656463 cologne
+265662 coloma
+26567 color
+2656733 colored
+26567385 colorful
+265677 colors
+265687 colour
+2658 bolt
+265866 column
+2658667 columns
+26587 bolts
+266 ann boo com coo
+2662 anna bomb boob comb
+266228 combat
+2662325 conceal
+266232533 concealed
+26624 conch
+2662437 boobies
+26624628466 combination
+2662463 combine
+26625 cnock
+26626 combo
+26627 bombs bonar boobs
+26627383 concrete
+2663 anne bond bone come cone
+26632285283 confabulate
+26633426 comedian
+266337 confer
+2663377 confess
+2663448728466 configuration
+266344873 configure
+2663463 confine
+2663473 bonfire
+266348466 condition
+266366 condom
+2663667 condoms
+266367 condor
+2663678 comfort
+266367837 comforter
+26637 bonds bones
+266382867 conductor
+2663848 conduit
+26638487 conduits
+26639 comfy
+2664 bong
+26642 booga comic
+266427 comics
+266439 boogey
+2664425283 annihalate
+266443 boogie
+2664437 boogier
+2664445283 annihilate
+266473428466 congregation
+2665 bonk book cook cool
+26652273 bookcase
+266522737 bookcases
+26652665 cookbook
+266526657 cookbooks
+266533 cooked
+266537 cooker cooler
+2665374663 cookerhood
+2665379 cookery
+266537988367457 cookeryutensils
+266543 cookie
+2665437 cookies
+2665464 booking cooking cooling
+2665464475263 cookingisland
+266546462837425 cookingmaterial
+266546472643 cookingrange
+266546478683 cookingstove
+266546488367457 cookingutensils
+2665465 comlink
+26657 books
+26657243 bookpage
+26657353 bookself
+266574353 bookshelf
+26657435837 bookshelves
+26657666 bookroom
+2666 ammo boom
+26662559 anomally
+2666259 anomaly
+2666263 command
+26662636368 commandment
+266626363687 commandments
+2666269 boombox
+2666328 connect
+2666328466 connection
+2666372425 commercial
+266638 bonnet
+26664 among
+266648 commit
+266648833 committee
+2666633 commode
+266666 common
+266686236368 announcement
+2666862363687 announcements
+26668642283 communicate
+266686422867 communicator
+266686489 community
+26669464 annoying
+2667 comp coop
+2667228 compact
+266722867 compactor
+266724 bonsai
+266724687 conscious
+2667248733 bonsaitree
+2667269 company
+2667274766 comparison
+2667277 compass
+26672786368 compartment
+266727863687 compartments
+26673 coord
+2667345 conseil
+26673457 conseils
+26673462837 coordinates
+266737 coords
+26673848466 competition
+26674 boorh
+26674337 consider
+266752468 complaint
+26675383 complete
+2667539 complex
+266765 consol
+2667653 console
+26676537 consoles
+2667657 consols
+2667678 compost
+26676863 compound
+26677 coors
+2667737767 compressor
+26678 boost
+2667837 booster
+2667858 consult
+266785828466 consultation
+2667863 compund consume
+26678637 consumer
+26678742867 constrictor
+266787828 construct
+266787828466 construction
+2667878284667 constructions
+26678837 computer
+266788374263 computergame
+266788377 computers
+266788637 constumes
+2668 boot
+2668228 contact
+266824637 container
+2668246377 containers
+2668363373 contendere
+26683643623 convenience
+26683662 anntenna
+26683675283 contemplate
+2668367528464 contemplating
+26683687 contents
+2668377283 conversate
+266837728466 conversation
+26683773 converse
+2668378 contest
+2668378377 converters
+266837867 convertor
+26683787 contests
+26683937 conveyer
+266839372358 conveyerbelt
+26683967 conveyor
+26684 booth
+2668428 convict
+2668437 another
+26684683 continue
+266847 booths
+2668648466 ammunition
+266868 amount
+26687 boots
+2668722378483 contraceptive
+26687278466 contraption
+2668742883 contribute
+26687482623 contrivance
+2668765 control
+26687653 controle
+266876537 controles
+2668765474 bootpolish
+2668765537 controller
+26687655377 controllers
+26687657 controls
+26687657666 controlroom
+26689 booty
+26693 booze
+267 amp cms cop
+2672 corb
+26725 coral
+267263453 corcodile
+26729 corby
+2673 bore cord core
+267335 bordel
+2673355 bordell
+26733556 bordello
+267337 border
+26737 cords
+2674 borg
+267437 copier copies
+2675 cork
+267526273 corkboard
+267543437 amplifier
+2676 corn
+2676262 corncob
+267634353 cornfield
+2676352537 cornflakes
+267637 corner
+26766 bosom
+267662 corona
+2676637 coroner
+267666288 cosmonaut
+267667 bosoms cosmos
+2677 boss cops corr
+267725 corral
+267737 copper
+26774367 corridor
+267743677 corridors
+267766 bossom
+2677667 bossoms
+267767487 corrosius
+267769 borrow
+267773 corpse
+2677737 corpses
+267837 copter
+26783883 corvette
+26785283 copulate
+2678863 costume
+26788637 costumes
+2679 copy
+267937 answer copyer
+267937464 answering
+2679628 copymat
+268 ant bot cnu cot
+26824 couch
+2682437 couches
+26827326 antarean
+2683 ante cove
+26832426237 antechamber
+2683276 antfarm
+26836268 covenant
+2683632 antenea
+2683662 antenna
+26837 cover
+2683733 covered
+26837464 covering
+268377 covers
+2684 both
+268436 anthem
+268437 bouger
+26844 cough
+268447 boughs
+26845 anvil
+2684669 anthony
+2684783 antique
+26847837 antiques
+26853 could
+2685337 boulder
+26853377 boulders
+268537 antler
+2685377 antlers
+268538 amulet
+268623 bounce
+2686237 bouncer
+26863 bound
+26863279 boundary
+26868 count
+26868362623 countenance
+268683696 countdown
+2686837 counter
+268683722852 countdracula
+26868373348 counterfeit
+26868377278 counterpart
+268683772787 counterparts
+2686837867 countertop
+2686879 country
+268689 bounty
+2687 ants anus cots
+2687266 bourbon
+26872687 couscous
+268736368 amusement
+268753 couple
+2687538 couplet
+268754647 couplings
+268766 coupon
+2687667 coupons
+268773 course
+268774766 antprison
+26878 court
+2687838 bouquet
+2687846873 courthouse
+268787666 courtroom
+268789273 courtyard
+2688243 cottage
+268853 bottle
+2688537 bottles
+268853762538 bottlerocket
+2688537625387 bottlerockets
+268866 bottom bouton cotton
+2688667 boutons
+2688667433 bottomside
+268887437 couturier
+2689 antz
+269 any bow box boy cow
+269273 coward
+26935 bowel
+26937 boxer boxes
+269374363 boyfriend
+2693743637 boyfriends
+2693774678 boxershort
+2695 bowl
+26957 bowls
+269626 bowman
+2696632666 bozoofamoo
+26969 a6969
+2697 boxs boys cows
+269929 anyway
+2699297 anyways
+26996 bozzo
+2699673 anyword
+27 as
+272 ara bra
+2722 crab
+27223 brace
+272232 arcada
+272233 arcade
+27223538 bracelet
+27224643 arachnid
+27225 crack
+2722533 cracked
+2722538 bracket
+272257 cracks
+272353 cradle
+272363 ascend
+272368 ascent
+27238 craft
+2724 arch brag crag
+272437 arches
+2724432687 archidamus
+2724483 archive
+27244837 archives
+27246 brain
+272467 brains
+27247 archs
+2724929 archway
+27253 brake
+272537 brakes
+272624 branch
+2726243 branche
+27262437 branches
+2726247 branchs
+27262537 brambles
+272626 braman
+27263 brand crane
+27263464 branding
+272639 brandy
+2726486 cranium
+27265 crank
+272657 cranks
+2727 arcs bras crap
+27273 arbre
+272737 arbres
+27274 crash
+2727433 crashed
+2727437 brasier
+27277 brass
+272774373 brassiere
+272779 crappy
+27278 apart
+272786368 apartment
+2727863687 apartments
+27283 crate
+272837 crater crates
+27289778 bratwrst
+272898778 bratwurst
+27293673 crawford
+2729437 brazier
+27295 crawl
+27295464 crawling
+272966 crayon
+27299 crazy
+273 ape are
+2732 area
+273224 breach
+27323 bread
+27324 brech
+27325 break
+2732532623 breakdance
+273253278 breakfast
+273257 breaks
+27326 cream
+27327 areas
+273278 breast
+2732787 breasts
+27327875283 breastplate
+273283 create
+273284 breath
+2732843 breathe
+27328437 breather
+273284464 breathing
+27328477729 breathspray
+2732867 creator
+27328873 creature
+273288737 creatures
+27333 breed
+273337 breeds
+273348 credit
+2733487 credits
+27335 creek
+27337 creep
+2733737 creeper
+27337377 creepers
+273379 creepy
+273393 breeze
+27362 arena
+273624 brench
+27362437 brenches
+27363 creme
+27368 brent
+2737 apes
+27377537 bressler
+27378873 aperture
+27382773 crevasse
+2738423 crevice
+27384237 crevices
+2738473 crevise
+2739 brew crew
+2739626 crewman
+2739636 crewmen
+2739737766 crewperson
+2739759 brewsky
+274 ash
+2742 crib
+274226 ashcan
+2742267 ashcans
+27423 bribe
+27425 brick
+27425626 brickman
+274257 bricks
+274259675 brickwork
+274277 briars
+274325 bridal
+27433 bride
+274332273 briefcase
+27433464 briefing
+274343 bridge
+2743437 bridges
+27435 ariel
+274353 bridle
+27437 ashes cries
+2744 brig
+274448 bright
+27444859 brightly
+27463 crime
+27464 bring
+27464625 criminal
+274646257 criminals
+274678663 brimstone
+2747453 ashpile
+27476347422 aphrodisiac
+2747753 cripple
+2747825 cristal
+27478257 cristals
+274786853 aristotle
+27483 argue
+27486368 argument
+2748729 ashtray
+2748837 critter
+27488377 critters
+275 ark ask
+27522688 askabout
+27523 asjad
+276 arm bro
+2762 croc
+2762263 armband
+27623 broad
+27623929 broadway
+27624247 armchair
+27624873 brochure
+276248737 brochures
+276263453 crocodile
+2762634537 crocodiles
+27626368 armament
+27627 crocs
+27645 broil
+276536 broken
+276556 apollo
+276564437 apologies
+276564473 apologise
+276564493 apologize
+2766 ason
+276624 brooch
+27663 crone
+276637 cromer crones
+2766377 cromers
+276647 armoir
+2766473 armoire
+27665 brook crook
+27665596 brooklyn
+276657 crooks
+27666 broom
+2766678425 broomstick
+27667 armor
+276687 armour
+2766879 armoury
+2767 arms crop
+27677 crops cross
+2767737 crosses
+276779255 crosswalk
+276824 crouch
+27684 broth
+2768435 brothel
+2768437 brother
+27684377 brothers
+276863 around
+2769 army crow
+27691227 crow_bar
+2769227 crowbar
+27692277 crowbars
+27693 crowd
+27696 brown crown
+276963 browne
+27696464 browning
+27697 crows
+276973 browse
+276976378 crowsnest
+277245 assail
+2772643 arrange
+277272887 apparatus
+2772735 apparel
+2772748466 apparition
+27727746283 assassinate
+2772858 assault
+2773625 arsenal
+27736253 assemble
+27736259 assembly
+277363243 appendage
+2773632437 appendages
+27737668 arseroot
+277378 arrest
+2773849464 appetizing
+2774258 asphalt
+27742858 asphault
+2774466368 assignment
+277478 assist
+2774782623 assistance
+277478268 assistant
+2775283 applaud
+27753 apple
+277537 apples
+27754228466 application
+277542623 appliance
+2775426237 appliances
+27759 apply
+2776468 appoint
+27764686368 appointment
+27766 apron
+277667 aprons
+27769 arrow
+277697 arrows
+277734363 apprehend
+27776224 approach
+27776825 approval
+2778937 appuyer
+278 art cpu cru
+27823 bruce
+27824349 crucifix
+27824349466 crucifixion
+2782627463 aquamarine
+27827486 aquarium
+2783 aque
+278336336747 artedmedoris
+27833828 aqueduct
+27835 cruel
+27836336747 artemedoris
+27836436747 artemidoris
+27837643 asteroid
+278376437 asteroids
+27842537 articles
+2784285283 articulate
+27843228 artifact
+2784342425 artificial
+27846 bruin
+278462842 asthmatic
+27846436747 artimidoris
+2784645426 aquinilian
+27846454267 aquinilians
+278473 aquire cruise
+2784737 cruiser
+278487 arthur
+27853 crule
+27862 crumb
+278624 crunch
+278624437 crunchies
+2786249 crunchy
+2786253 crumble
+278627 crumbs
+2787 arts
+278725 astral
+27874 brush crush
+2787437 crusher
+278749663 brushwood
+27876 astro
+278766288 astronaut
+278768873 astroturf
+278825493 brutalize
+2789675 artwork
+27896757 artworks
+279 cry
+279464 crying
+27978 crypt
+2797825 crystal
+27978257 crystals
+279787 crypts
+28 at
+28222 bubba
+282253 bubble
+2822537 bubbles
+28229 cubby
+282294653 cubbyhole
+2822946537 cubbyholes
+2823 cube
+2824253 cubicle
+28249 cubix
+2825 buck
+282529643 buckazoid
+2825296437 buckazoids
+282538 bucket
+282553 buckle
+2825667 cuckoos
+282566725625 cuckoosclock
+28257 bucks
+282827 avatar
+283 bud cue
+2833 buff cuff
+2833256 buffalo
+283333 cuffed
+28334478 buddhist
+283353 cuddle
+28337 cuffs
+28339 buddy
+28343 budge
+283435 cudgel
+28343623 audience
+2834867486 auditorium
+283683 avenue
+2837 cues
+283934737 budweiser
+284 bug
+28453 build
+2845337 builder
+28453464 building
+284534647 buildings
+28453842 athletic
+2847 bugs
+2847463 cuisine
+284746377 buisiness
+2852 bulb
+28527 bulbs
+2853 cuke
+2855 bull
+2855364 bulldog
+285538 bullet
+28553846 bulletin
+2855384626273 bulletinboard
+285538467 bulletins
+2855387 bullets
+2855538 bulllet
+28557 bulls
+2858 cult
+286 bum bun cum
+28624 bunch
+286353 bundle
+28642569 bungalow
+28643 avoid
+28644653 bunghole
+2865 bunk
+2865233 bunkbed
+28652337 bunkbeds
+28657 bunks
+28664546487 cunnilingus
+2866493 atomize
+2866774373 atmosphere
+28669 bunny
+2867 atop bump buns
+286737 bumper
+2867377 bumpers
+286766 bunson
+287 bus cup
+2872 curb
+28726273 cupboard
+287262737 cupboards
+2873 cure
+287328 bureau
+2873287 bureaus
+2874 bush
+287425 burial
+28743 cupid
+287433 buried
+287437 burger bushes cupids
+28743756468 burgerjoint
+2874377 burgers
+2874466 cushion
+28744667 cushions
+28745263 bushland
+287453 burgle
+28746377 business
+2876 burn
+287633 burned
+287637 burner
+2876464 burning
+2877 burp cups cuss
+28773629 currency
+2877368 current
+28773687 currents
+2877464 burping
+287769 burrow
+28778 burst
+2878 bust
+2878246 curtain
+28782467 curtains
+2878246763 curtainrod
+2878273 bustard custard
+28783 curve
+287847 curtis
+2878477 curtiss
+287863426 custodian
+28786637 customer
+287866377 customers
+2879 bury
+288 but ctu cut
+288224 attach
+288225 attack
+2882437 butcher
+288246 attain
+288278 ctucru
+2883 cute
+288363268 attendant
+2883678 attempt
+288368466 attention
+28842 attic
+288467 author
+288467489 authority
+288473 attire
+28848833 attitude
+2885379 cutlery
+2886 auto
+2886628 autonav
+288662842 automatic
+28866284428466 autonavigation
+288662866 automaton
+2886662453 automobile
+28866624537 automobiles
+28867 autos
+288674568 autopilot
+2887 cuts
+2887228466 attraction
+2888 butt
+288837 butter cutter
+28883724876 butterchurn
+28883734353 butterfield
+28883735437 butterflies
+288837359 butterfly
+288837688 butternut
+2888377 cutters
+28884653 butthole
+288866 button
+2888667 buttons
+288869 buttox
+28887377 buttress
+2888737737 buttresses
+289 buy
+28937 buyer
+2899273 buzzard
+28992737 buzzards
+289937 buzzer
+29 ax by
+29253 cycle awake
+292536 awaken
+2925464 cycling
+29256737 cyclopes
+2925677 cyclops
+292567737 cyclopses
+2926 cyan
+29273 award
+292737 awards
+2927426 azarian
+2929 away
+293 axe bye
+293293 byebye
+2937 axes
+2947 axis
+29546337 cylinder
+295463377 cylinders
+296464 awning
+297663 awsome
+2978263377 bystanders
+322233 facade
+3223 face
+32237 faces
+3224 each
+322425 facial
+3224548437 facilities
+32245489 facility
+322742 fabric
+322742283 fabricate
+3227427 fabrics
+3228 fact
+3228679 factory
+323 dad
+32337 fader
+323377 faders
+32339 daddy
+323396 daddyo
+323397 daddys
+3237 dads
+324 fbi dbg fag
+3243553 echelle
+324437 dagger
+324468 faggot
+32447 dbggr
+32453 eagle
+3246 echo
+3247 fags
+3247437 daisies fairies
+32479 dairy daisy fairy
+324797 fairys
+32484 faith
+324847 faiths
+325 dak
+3253 dale fake
+3255 fall
+32557 falls
+32573 false
+326 dam dan fan
+32623 dance
+3262335667 dancefloor
+326237 dancer
+3262377 dancers
+326243 damage
+3262464 dancing
+3263 dame fame
+3264 dang
+326435 daniel
+3264357 daniels
+326437 danger
+326437687 dangerous
+326453 dangle
+32645437 families
+326459 family
+3264597 familys
+3266 damn
+326633 damned
+326648 dammit
+3266669 economy
+32669 danny
+3267 fans
+326735 damsel
+326736 dampen
+32682 fanta
+327 ear far
+32726 ecran
+327267 ecrans
+3273 fare fase
+32737 farer
+32739355 farewell
+3274 dash
+327426273 dashboard
+327473 ecrire
+3275 dark
+32756377 darkness
+32757666 darkroom
+32759 early
+3276 darn farm
+327637 farmer
+327646873 farmhouse
+32765263 farmland
+3277 ears
+3277464 earring
+32774647 earrings
+3278 dart east fart fast
+327826273 dartboard
+327836 fasten
+327836377 fasteners
+327837 faster
+3278378 fastest
+32784 darth earth
+3278459 earthly
+3278482337 darthvader
+327849676 earthworm
+3278626 dartman
+32787 darts
+32788476937 dartthrower
+3278867737 darttosser
+328 eat fat
+3282 data
+32822265 databank
+328238 faucet
+3282387 faucets
+328269 fatboy
+328274663 dataphone
+3283 date dave
+32836 eaten
+32836879 daventry
+32837 eater
+328373767 eavesdrop
+3283737677464 eavesdropping
+328377 eaters
+32839 davey
+32843 david davie
+3284323 fathead
+328437 father
+32843766 davidson
+3284377 fathers
+32844837 daughter
+328448377 daughters
+328464 eating
+32847 davis
+32858 fault
+328587 faults
+32862 fauna
+32867 favor
+3287 eats
+328837 fauves
+32889 fatty
+3289 davy
+329 day
+329233 daybed
+3296 fawn
+32967 fawns
+3297 days
+33 de ed ff
+33225 fecal
+3322728283 decapatate
+3322748283 decapitate
+332283 debate
+3322848283 deactivate
+3323 dead
+33232733 deceased
+3323537283 decelerate
+33237 feces
+33247437 decipher
+33247466 decision
+3325 deal deck
+3325273 declare
+332537 dealer
+3325377 dealers
+3325463 decline
+3325464 dealing decking
+3326 dean
+3326337 decoder
+332668264628466 decontamination
+33267283 decorate
+3326728466 decoration
+3327 dear fear
+33273273 decrease
+332747 debris
+33278 feast
+3328 debt
+33284 death debug
+3328437 feather
+33284377 feathers
+33284729843 deathscythe
+33284847328 deaththreat
+3328873 feature
+333223 deface efface
+333253 feeble
+3333 feed
+33332283 defecate
+333328 effect
+3333464 feeding
+3333673 defense
+333463 fefine
+3335 feel
+3335283 deflate
+3335464 feeling
+3337 deep deer
+3337379464 deepfrying
+33377546 deerskin
+3338 feet
+3339 eddy
+3343 edge
+3343423 edifice
+334733 degree
+3347337 degrees
+3348466 edition
+33484667 editions
+3349372833 dehydrated
+33542283 delicate
+335424687 delicious
+335463 feline
+3354837 deliver
+33548379 delivery
+33548737 delivrer
+3355 dell
+33552 fella
+335527 fellas
+33552846 fellatio
+335569 fellow
+3355697 fellows
+335669 felony
+335746742 delphoria
+3358287 deltaur
+336 den fem fen
+3362 fenc
+33623 fence
+336237 fences
+336253 female
+3362537 females
+3363873 fenetre
+33638737 fenetres
+33646463 feminine
+336473 denise
+336476 deniro
+3366 demo femo
+33663 femme
+33665328527493 demolecularize
+33665474 demolish
+33666 demon
+336667 demons
+3369 deny
+337 eds
+3372363 descend
+337236373 descendre
+337237 fesces
+33727478466 description
+337278 depart
+33727833 departed
+3372786368 department
+337363368 dependent
+337378 desert
+337446 design
+33744628466 designation
+337473 desire
+337478 desist
+3375 desk
+33757 desks
+3375867 desktop
+3376 fern
+337633 derned
+337637 fermer
+3376748 deposit
+3377377 depress
+3377377466 depression
+3377425 derrick
+33774257 derricks
+33774373 derriere
+337746437 derringer
+337786 ferrum
+33779 ferry
+33779626 ferryman
+3378 dept
+33784 depth
+3378453 fertile
+337845493 fertilize
+3378454937 fertilizer
+337847 depths
+33786238 dervocet
+3378769 destroy
+33787828 destruct
+33787828466 destruction
+337887 festus
+337889 deputy
+338224 detach
+33822437 detacher
+338228466 education
+338245 detail
+338278283 devastate
+33832867 detector
+338328677 detectors
+33835673 develope
+33835676368 development
+33837 deter
+338374368 detergent
+338423 device
+33845 devil
+3384565 dethlok
+33846283 detinate
+338687 devour
+33874887 detritus
+339 dew
+339273 edward
+3392737 edwards
+34 dg eh ei fi
+3424667842 diagnostic
+34246678427 diagnostics
+3424726 diagram
+34247267 diagrams
+3425 dial dick
+3425328 dialect
+34254323 dickhead
+34255377 dickless
+34256483 dialogue
+34257 dials dicks
+342623 fiance
+3426233 fiancee
+34262337 fiancees
+3426237 fiances
+3426663 diamond
+342666328 diconnect
+34266637 diamonds
+34273 fibre
+342737 diaper
+34274726 diaphram
+34277432 diarrhea
+34279 diary
+3428466 fiction
+343 did die
+343337368 different
+3433428589 difficulty
+343353 fiddle
+34353 field
+343537 fields
+34363 fiend
+34379 fiery
+34384 fifth
+344 dig egg
+34436 eigen
+344378 digest
+344378466 digestion
+344437 digger
+34448 eight fight
+3444825 digital
+3444837 fighter
+344484 eighth
+3447 eggs
+344873 figure
+3448737 figures
+34487463 figurine
+34524 filch
+34526368 filament
+3453 file
+34532273 filecase
+3453269 filebox
+34536 dildo
+34537 files
+345484486 dilithium
+3455 fill
+34553 fille
+345533 filled
+34553883 fillette
+3455464 filling
+3456 film
+345837 filter
+34584 filth
+346 dim din ego
+346262425 financial
+346262437 financier
+34626483 dinamite
+3463 dime dine find fine
+34637 dimes diner
+3464 ding
+346437 finger
+3464377 fingers
+346464 dining
+34646482253 diningtable
+346464822537 diningtables
+346474 finish
+346478 finist
+346543 dinkie
+3466 egon
+34662 dhooa
+346637 dinner
+34667287 dinosaur
+34669787 dionysus
+347 dip dir dis fir
+3472 disc
+3472253 disable
+3472273 discard
+3472376 discern
+347242743 discharge
+34726 disco
+347262255 discoball
+3472637 discoer
+3472666328 disconnect
+347268379 discovery
+347268773 discourse
+347276 disarm
+347277327 disappear
+3472776468464 disappointing
+3472777683 disapprove
+3472877 discuss
+3472877466 discussion
+3473 fire
+34732625 firecock
+3473273 disease
+34732737 diseases
+3473276 firearm
+34732767 firearms
+347328466 direction
+34732867 director
+347328679 directory
+3473398464847437 fireextinguisher
+34734673 firehose
+34734766 fireiron
+347362275 disembark
+3473626935 disembowel
+347364243 disengage
+34737 fires
+3473748 firepit
+347375223 fireplace
+34737584 fireplug
+347376537 firepoker
+34737828466 firestation
+34739663 firewood
+34739675 firework
+347396757 fireworks
+3474 dish fish
+34742663 fishbone
+347437 dishes fishes
+347437626 fisherman
+3474464 fishing
+34744645463 fishingline
+3474464763 fishingrod
+34744647653 fishingpole
+3474464822553 fishingtackle
+3474666437 fishmonger
+347468347283 disintegrate
+34747663 fishpond
+34748473 disguise
+3474878 disgust
+34749 fishy
+347492 fishx2
+3474927437 dishwasher
+3475 disk
+34753883 diskette
+347562283 dislocate
+34756343 dislodge
+3475662 diploma
+34756627 diplomas
+34762 firma
+347626368 firmament
+347626853 dismantle
+347636237 dismember
+34766868 dismount
+34772824 dispatch
+3477282437 dispatcher
+347736253 dissemble
+347736737 dispenser
+347743 dipsie
+347743368 dissident
+34775223 displace
+3477529 display
+34775297 displays
+3477623 disrobe
+347767 fissop
+34776725 disposal
+34778 first
+3477873 fissure
+34778737 fissures
+3477878 disrupt
+347787837 disrupter
+347787867 disruptor
+34779 dipsy
+3478 dirt
+34782255 dirtball
+34782623 distance
+34784648474 distinguish
+3478678466 distortion
+347874288466 distribution
+3478872 disturb
+34789 dirty
+34824 ditch
+34826 divan
+3483 dive five
+348433 divide
+34843464 dividing
+34847466 division
+34886 ditto
+349 fix
+34926 diwan
+34933 fixed
+3498873 fixture
+34988737 fixtures
+35 dj el
+352285283 ejaculate
+3524 flag
+3524355283 flagellate
+35245 flail
+352463 elaine
+35247 flags
+35247653 flagpole
+352478233 flagstaff
+35253 flake
+35263 flame
+352637 flames
+3526444 flamgig
+3526464 flaming
+3527 flap
+35273 flare
+35274 flash
+3527437 flasher
+35274464 flashing
+3527454448 flashlight
+35275 flask
+352757 flasks
+3527842 elastic
+3528 flat
+35287 flats
+3528836 flatten
+353 ele elf
+35328 eject
+3532872 electrc
+35328742 electric
+3532874225 electrical
+35328742489 electricity
+3532874289 electricty
+3532876624 electromag
+3532876642 electronic
+35328766427 electronics
+3532876763 electrorod
+35328767763 electroprod
+3533 flee
+35337 elder
+3533759 elderly
+35362 elena
+3536368279 elementary
+35363687 elements
+35374 flesh
+35374268 elephant
+35382867 elevator
+353828677 elevators
+353836 eleven
+35387 fleur
+353877 fleurs
+35425 flick
+3542537 flicker
+3542537464 flickering
+35437 flies
+354448 flight
+35464 fling
+354646283 eliminate
+35468 flint
+3547 flip
+35473567 flipflop
+35478 flirt
+35492 eliza
+354922384 elizabeth
+3549223847 elizabeths
+354927 elizas
+354947 elixir
+355378 ekkert
+35625 flock
+35628 float
+35628464 floating
+356287 floats
+3564 flog
+35667 floor
+3566726273 floorboard
+35667262737 floorboards
+3566726837464 floorcovering
+35667464 flooring
+35667628 floormat
+356677 floors
+3567 flop
+35672 flora
+356738 floret
+3567387 florets
+35674935 florizel
+356779 floppy
+35687 flour
+3569 flow
+356937 flower
+3569377 flowers
+356937768 flowerpot
+358243283 elucidate
+3583 flue
+35833 elude fluff
+35837 elves
+35843 fluid
+35874 flush
+3587437 flusher
+35883 flute
+359 fly
+35937 flyer
+359464 flying
+36 do fm
+362 dna doc
+36237 ember
+362377 embers
+362426837 enchanter
+36245 email
+3625 dock
+3625464 docking
+362567873 enclosure
+36257 docks
+3626 foam
+3627 docs
+3627223 embrace
+36286368 document
+362863687 documents
+362867 doctor
+3628677 doctors
+362925673342 encyclopedia
+363 dod doe end
+3633 doff
+363337 fodder
+363337633 dodderned
+36343 dodge
+3636 dodo
+363637 doener
+3636437 enemies
+3636469 enenimy
+36369 enemy
+3637253 emerald
+36374362437 emergencies
+363743629 emergency
+36374473 energise
+36374493 energize
+363749 energy
+364 dog fog
+364243 engage
+364443 doggie
+364463 engine
+36446337464 engineering
+3644637 engines
+36449 doggy
+3645243 foilage
+364636 eminem
+36464 doing
+3647 dogs
+364723353 dogpaddle
+364728464 engraving
+364853 engulf
+3652 fola
+3652743 enlarge
+3653 fold
+365333 folded
+365337 folder
+3653377 folders
+36537 folds
+3653837 enlever
+36539 dokey
+3654243 foliage
+3655 doll
+365527 dollar
+3655272455 dollarbill
+3655277 dollars
+365569 follow
+36556937 follower
+365569464 following
+36557 dolls folks
+36559 dolly
+36569 enjoy
+3657446 dolphin
+36574467 dolphins
+366 don doo
+36618 don't
+3662 emma
+366243 doobie
+366253 donald
+366283 donate
+3663 dome done fone food foof
+366323 doodad
+366353 fondle
+366366 doodoo
+36637 domes doner foods
+366378833 foodstuff
+3663788337 foodstuffs
+3664 dong
+36642453 domicile
+366437 donger
+366442539 doohickey
+3665 fool
+366539 donkey dooley
+3665397 donkeys
+3665474 foolish
+366637 donner
+36669 donny
+3667 door
+36672 door2
+36672355 doorbell
+366723557 doorbells
+3667539 doorkey
+36675625 doorlock
+3667626 doorman
+3667628 doormat
+36676287 doormats
+36677 doors
+36677837 doorstep
+3667929 doorway
+36679297 doorways
+3668 dont font foot
+36682255 football
+366844 enough
+36684455 foothill
+366844557 foothills
+36684667 emotions
+3668562537 footlocker
+36687284 footpath
+36687837 footstep
+366878377 footsteps
+367 for
+36723 force
+3672334353 forcefield
+367237 forces
+3673 dope ford
+36736253 ensemble
+36737 doper
+36737546 foreskin
+367377 dopers
+367378 forest
+3674 dosh
+36743 forge
+367446 ensign
+36746 ensin
+3675 dork fork
+367569 employ
+36756933 employee
+3675696368 employment
+36757 forks
+3676 dorm form
+367628 format
+367628466 formation
+3676284667 formations
+367648679 dormitory
+36767 dorms forms
+36767486 emporium
+367735 dossel
+3677626 forsman
+3678 fort
+36784 forth
+3678473 enquire
+36787 forts
+36787377 fortress
+3678737737 fortresses
+3678863835537 fortuneteller
+36789 empty
+367893687 fortyfour
+36789749 fortysix
+36789896 fortytwo
+3679273 forward
+36792737 forwards
+368 dot
+368253 double
+36828 doubt
+36835673 envelope
+36837 enter
+3683782466368 entertainment
+368423 entice
+36844 dough
+3684736668 enviremont
+36847666368 environment
+3685 foul
+36868246 fountain
+3687 four
+368715323 four-leaf
+36872457 entrails
+36872623 entrance
+368726237 entrances
+36873 douse
+368737 entrer
+36875323 fourleaf
+36878336 fourteen
+368784 fourth
+368789 fourty
+3687893687 fourtyfour
+368789749 fourtysix
+368789896 fourtytwo
+36879 entry
+36879929 entryway
+369 fox
+3693 doze
+36935 dowel
+36936 dozen
+36937 foyer
+3695 fowl
+3696 down
+36964455 downhill
+36965623 download
+36967473 downpipe
+369677688 downspout
+3696782477 downstairs
+36969273 downward
+37 dr fs
+372 f72
+372252867 escalator
+372273 escape
+37228466 fraction
+3722852 dracula
+37228873 fracture
+372342283 eradicate
+3724 drag
+3724446 fraggin
+37244464 fragging
+37246 drain
+37246243 drainage
+37246368 fragment
+372463687 fragments
+3724637 drainer
+372464653 drainhole
+372466 dragon
+372467 drains
+372467473 drainpipe
+37253 drake
+372537 drakes
+3726227 escobar
+372624726 francisco
+37263 frame
+372633 framed
+372637 frames
+37265 frank
+372653678346 frankenstein
+372659 franky
+37273 drape erase
+372737 drapes eraser
+3727379 drapery
+3727486473 escritoire
+3728 frat frau
+3729 draw
+372937 drawer
+3729377 drawers
+3729452867 frazilator
+3729464 drawing
+37294647 drawings
+37325 freak
+3732546 freakin
+37325464 freaking
+373257 freaks
+37326 dream
+37328466 erection
+3733 epee fred free
+373337425 frederick
+37333745 frederik
+373337457 frederiks
+37337 freds
+373378953 freestyle
+3733929 freeway
+373393 freeze
+3733937 freezer
+37339464 freezing
+373444837 freighter
+373624 french
+3736925 frenzal
+37377 dress
+3737733 dressed
+3737737 dresser
+37377377 dressers
+37378368 frequent
+3742 eric
+37422 frica
+37433 dried
+374343 fridge
+374363 friend
+3743637 friends
+37437 fries
+37438 drift
+3744 frig
+3744372867 frigerator
+3744446 friggin
+37444464 frigging
+3745 erik
+37455 drill
+3745546486937 drillingtower
+37455464869377 drillingtowers
+37465 drink
+3746537 drinker
+37465377 drinkers
+37465464 drinking
+374656224463 drinkmachine
+374657 drinks
+3747 drip
+37475 frisk
+37477 drips
+3748274 epitaph
+37482747 epitaphs
+37483 drive
+3748346 drivein
+374837 driver
+3748377 drivers
+37483929 driveway
+374839297 driveways
+3748464 driving
+3748836 fritten
+375466 eskimo
+37546644678 eskimoghost
+375466774748 eskimospirit
+3764 frog
+37643 droid
+376437 droids
+376542 frolic
+3766 from fron
+37663 frond
+376637 fronds
+37667 frons
+37668 front
+3767 drop
+37672 erosa
+376727 erosas
+3767466 erosion
+37675425 dropkick
+3767633 dropoff
+37677 drops
+376774647 droppings
+37678 frost
+376789 frosty
+3767967 dropzor
+37683 drove
+376936 frozen
+37696464 drowning
+3773623 essence
+37767 error
+3779 espy
+378 fst
+378225474 establish
+37825 equal
+3784 drug
+37847 drugs equip
+378476368 equipment
+37848 fruit
+37848464 fruiting
+378487 fruits
+3786 drum
+37865 drunk
+37865273 drunkard
+37865379466 drunkerwion
+378657 drunks
+3786637 drummer
+37867 drums
+378678425 drumstick
+3788279 estuary
+379 dry fry
+37937 dryer
+379377 dryers
+379464 drying frying
+3798543 erzulie
+38 et ft
+382 eva
+3822597887 eucalyptus
+3823 dube
+38233 evade
+3824373 etagere
+38243737 etageres
+3825 duck fuck
+382537 fucker
+3825464 fucking
+38257 ducks
+3828 duct
+38287 ducts
+383 eve
+3833 dude
+38337 dudes
+3833883 dudette
+3835 fuel
+383539 fudley
+3836 even
+3836464 evening
+38368 event
+3837 duds ever eves
+3837625 eternal
+38376489 eternity
+38379 every
+3837984464 everything
+384 dui
+38433623 evidence
+3843742 etheria
+3845 evil
+3847237283 eviscerate
+3855 full
+385866 fulton
+386 fun
+3862 dumb
+386224 funbag
+3862247 funbags
+38627837 dumbster
+3862924837 dumbwaiter
+3863 dune fund
+3863464 funding
+38637 dunes fumes funds
+3864 dung
+3864366 dungeon
+38644 fungi
+386444 fungii
+386453 etoile
+3864537 etoiles
+386487 fungus
+38659 funky
+3866437 dummies
+38669 dummy dunny funny
+3867 dump
+3867464 dumping
+38677837 dumpster
+387 ets fur
+3872255 furball
+3873 fuse
+3873269 fusebox
+38737 fuses
+387542283 duplicate
+3875422837 duplicates
+3876223 furnace
+3876474 furnish
+3876474464 furnishing
+38764744647 furnishings
+387648873 furniture
+387672 europa
+38779 furry
+3878 dust
+3878246 dustbin
+387825683 dustcloud
+387837 duster
+3878683 dustove
+38866 futon
+388872 futura
+388873 future
+3889 duty
+3899 fuzz
+39 dx ex
+39228283 excavate
+392372473 excercise
+39242643 exchange
+3925 eyal
+3926463 examine
+39264637 examiner
+3926753 example
+39273 dwarf
+392737 dwarfs
+3927383 excrete
+3927837 dwarves
+392873 excuse
+393 dye eye
+3932255 eyeball
+39322557 eyeballs
+393225584464 eyeballthing
+3932255844647 eyeballthings
+3932769 eyebrow
+3932883 execute
+3934653 eyehole
+3935537 dweller
+39355464 dwelling
+3937 ewer eyes
+39372473 exercise
+39374323 eyepiece
+393743237 eyepieces
+39384464 eyething
+393844647 eyethings
+394 dwi
+3942878 exhaust
+39464 dying
+39465437 dwinkies
+39478 exist
+394783623 existence
+3948 exit
+394863 exhume
+39529 exlax
+3953 dyke
+39626483 dynamite
+397267466 expansion
+39732867283 expectorate
+39735 expel
+3973743623 experience
+3973746368 experiment
+397374636825 experimental
+397374636828466 experimentation
+397378 expert
+397473 expire
+3974733 expired
+3975246 explain
+3975648 exploit
+3975673 explore
+397567483 explosive
+3975674837 explosives
+3976863 expound
+3977377 express
+39836337 extender
+398363377 extenders
+3983636 extendo
+39837467 exterior
+39837625 external
+39837646283 exterminate
+3984648474 extinguish
+398464847437 extinguisher
+39872 extra
+3987228 extract
+3987283773787425 extraterrestrial
+39872837737874257 extraterrestrials
+4131 i.d.
+4155 i'll
+416 i'm
+42 gb
+422 gab hac
+4224828 habitat
+4225 hack
+42272 haara
+423 ice
+4232374 iceberg
+42323747 icebergs
+42324378 icechest
+423269 icebox
+42337 hades
+423438 gadget
+4234387 gadgets
+424 gag hag
+4242842 hagatha
+424453 haggle
+4245 hail
+4247 hags hair
+42477 hairs
+4247746 hairpin
+42479 hairy
+425 gal
+42522867 galactor
+42529437 galaxies
+425299 galaxy
+4253 gale half
+42533278 halffast
+4255 hall
+425539 galley
+42557 halls
+4255929 hallway
+4258 halt
+42583 halve
+426 h2o ham
+426253 gamble
+42625377 gamblers
+426253874437 hambleurgher
+42625464 gambling
+426287437 hamburger
+4263 game hand
+4263269 gameboy
+42632833 handcuff
+4263283333 handcuffed
+426328337 handcuffs
+4263385 handful
+426344 gandhi handig
+4263486 handgun
+42634867 handguns
+426353 handle
+426353724433 handkerchief
+4263688 handout
+42636887 handouts
+42637 games hands
+42637245 handrail
+426372457 handrails
+4263738 handset
+4263742 ganesha
+42637663 handsome
+4264 gang hang
+426437 hanger
+4264464 hanging
+42645866 hamilton
+4264636237 gangmember
+42646362377 gangmembers
+426474 hamish
+4265 hank
+42652 ganja
+426538 hamlet
+42659 hanky
+4265972659 hankypanky
+4266225 hammack
+426637 hammer
+42663733 hammered
+426637334323 hammeredhead
+4266625 hammock
+427 gap gas has
+4272 garb hara
+42722343 garbadge
+4272243 garbage
+4272243226 garbagecan
+427242 garcia
+427243 garage
+4272433667 garagedoor
+4272434283 garagegate
+42725474 harakiri
+427266 garcon
+427266638 garconnet
+427267 harbor
+4272687 harbour
+427277 harass
+4273 gape hard hare
+427336 garden
+4273367 gardens
+427346 gardin
+42737 gases
+42739273 hardware
+4274 gash hash
+4274474 hashish
+427453 gargle
+427539 harley
+427568 harlot
+4276 harm
+4276368 garment
+42763687 garments
+427638 garmet
+4276387 garmets
+427653 harold
+42765377 harmless
+42765463 gasoline
+4276669 harmony
+4277 gaps gars gasp
+427736 happen
+42773633 happened
+42774 harri
+4277437 harpies
+4277464 gasping
+42777424673 harpsichord
+42779 happy harpy harry
+4278 harv
+42783 haste
+427837837 harvester
+427839 harvey
+42784 garth
+4278537 hastler
+428 hat
+42824 hatch
+4282438 hatchet
+42824929 hatchway
+4283 gate hate have
+4283533737 gatekeeper
+42837 gates
+4283929 gateway
+42843 gauge
+428437 gather
+428437464 gathering
+4285 haul
+42867 gator
+4286833 haunted
+4287 hats
+4287225 hatrack
+42877626 haussman
+4288 haut
+429 hay icy
+429273 hazard
+4293 gaze haze
+429326 gazebo
+42934353 hayfield
+4295 gawk hawk
+42978225 haystack
+43 gd he id if
+4323 head
+432326273 headboard
+43234327 headgear
+432354448 headlight
+4323562 headjob
+4323627837 headmaster
+43237 heads
+432378278377 headquarters
+432378663 headstone
+4323786637 headstones
+4325 heal
+432537 healer
+432553 heckle
+432584 health
+4325849 healthy
+4327 gear heap hear
+4327464 hearing
+432774438 gearshift
+43278 heart
+432784 hearth
+4328 heat
+43283 heave
+432836 heaven
+4328367 heavens
+432837 heater
+43289 heavy
+4332 idea
+43343 hedge
+433437 hedges
+43343769 hedgerow
+4335 geek
+43368434228466 identification
+43368439 identify
+4338 heft
+433937 geezer
+4346 hein
+43468 idiot
+4347 heir
+435 gel
+43536 helen
+4354 heli
+4354267837 helicopter
+4355 hell
+435546863 hellhound
+43556 hello
+435638 helmet
+4357 help
+43571 help!
+436 gem geo hen
+4362336784 henceforth
+43624626 henchman
+43624636 henchmen
+43633 geode
+436337 geodes
+4363725 general
+43637283 generate
+4363728387 generateur
+436372867 generator
+4363728677 generators
+43637287423 generatrice
+436374257 hendricks
+4363782 genesta
+436382542 genetalia
+43643 genie
+43648257 genitals
+4365625 hemlock
+4366234 gennadi
+43662349 gennadiy
+4366239 gennady
+4367 gems gens henp
+436734 geordi
+436743 george
+43678663 gemstone
+4368 gent
+436824 hentai
+436853626 gentleman
+436853636 gentlemen
+437 her ids
+4372 herb
+4372378 herbert
+43727 herbs
+4373 here
+4374237887 hephaestus
+4376 hero
+437626 german
+437643 geroge
+437646 heroin
+43764663 hermione
+437648 hermit
+437648243 hermitage
+4377 herr hers
+43773 herpe
+4377353 herself
+4377464 herring
+4378873 gesture
+438 get het
+438376 hetero
+43876 hetro
+4388464 getting
+439 gey hey
+4392 heya
+439737 geyser
+44 ii hh hi
+44268 giant
+44268377 giantess
+4433 hide
+44331688 hide-out
+4433687 hideous
+4433688 hideout
+44339 hidey
+4433946 hideyho
+4434 hifi
+4437645974427 hieroglyphics
+4438 gift
+443886 ghetto
+4438862527837 ghettoblaster
+444 iii
+4444 high
+444424247 highchair
+44447533737 highsleeper
+4444929 highway
+444687466 ghinusion
+4446874667 ghinusions
+4452 hija
+445225 hijack
+4453 hike
+4455 hill
+44557 hills
+446 gin him
+4463 hind
+44643 ginie
+44643727323 gingerbread
+446483 ignite
+4464837 igniter
+44648466 ignition
+44663 gimme
+446643 gimmie
+4467353 himself
+44678 ghost
+446787 ghosts
+4468 hint
+44685 ghoul
+446857 ghouls
+44687 hints
+447 hip his iis
+4475 girl
+447524 hislah
+44753 girle
+4475374363 girlfriend
+44753743637 girlfriends
+44757 girls
@@ Diff output truncated at 100000 characters. @@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list