diff -pruN 1.26-1/big_endian/espeak-phoneme-data.c 1.29-0ubuntu2/big_endian/espeak-phoneme-data.c --- 1.26-1/big_endian/espeak-phoneme-data.c 2007-05-17 20:11:44.000000000 +0100 +++ 1.29-0ubuntu2/big_endian/espeak-phoneme-data.c 1970-01-01 01:00:00.000000000 +0100 @@ -1,368 +0,0 @@ -#include -#include -#include -#include - -#if defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN -#define IS_BIG_ENDIAN 1 -#else -#define IS_BIG_ENDIAN 0 -#endif - - -#if IS_BIG_ENDIAN - -# define SWAP_USHORT(val) ((unsigned short) ( \ - (unsigned short) ((unsigned short) (val) >> 8) | \ - (unsigned short) ((unsigned short) (val) << 8))) - -# define SWAP_UINT(val) ((unsigned int) ( \ - (((unsigned int) (val) & (unsigned int) 0x000000ffU) << 24) | \ - (((unsigned int) (val) & (unsigned int) 0x0000ff00U) << 8) | \ - (((unsigned int) (val) & (unsigned int) 0x00ff0000U) >> 8) | \ - (((unsigned int) (val) & (unsigned int) 0xff000000U) >> 24))) - -#else - -# define SWAP_USHORT(val) (val) -# define SWAP_UINT(val) (val) - -#endif - - - -#define N_PHONEME_TAB_NAME 32 - -typedef struct { - unsigned int mnemonic; - unsigned int phflags; - - unsigned short std_length; - unsigned short spect; - unsigned short before; - unsigned short after; - - unsigned char code; - unsigned char type; - unsigned char start_type; - unsigned char end_type; - - unsigned char length_mod; - unsigned char reduce_to; - unsigned char alternative_ph; - unsigned char link_out; -} PHONEME_TAB; - - -typedef struct { - short frflags; - unsigned char length; - unsigned char rms; - short ffreq[9]; - unsigned char fheight[9]; - unsigned char fwidth[6]; - unsigned char fright[6]; -} frame_t; - -#define N_SEQ_FRAMES 25 - -typedef struct { - short length; - unsigned char n_frames; - unsigned char flags; - frame_t frame[N_SEQ_FRAMES]; -} SPECT_SEQ; - - -void swap_phondata (const char *infile, const char *outfile, - const char *manifest); -void swap_phonindex (const char *infile, const char *outfile); -void swap_phontab (const char *infile, const char *outfile); - -void usage (const char *program_name); - - - -int -main (int argc, char *argv[]) -{ - const char *indir = "/usr/share/espeak-data"; - const char *outdir = "."; - const char *manifest = "phondata-manifest"; - char *f1, *f2; - - - if (argc > 4) - usage (argv[0]); - - if (argc > 1) { - if (strcmp (argv[1], "-h") == 0 || - strcmp (argv[1], "--help") == 0) - usage (argv[0]); - - indir = argv[1]; - } - - if (argc > 2) - outdir = argv[2]; - - if (argc > 3) - manifest = argv[3]; - - f1 = (char *) malloc (strlen (indir) + 20); - if (f1 == NULL) { - fprintf (stderr, "Unable to allocate memory\n"); - exit (1); - } - f2 = (char *) malloc (strlen (outdir) + 20); - if (f2 == NULL) { - fprintf (stderr, "Unable to allocate memory\n"); - exit (1); - } - -#if IS_BIG_ENDIAN - printf ("Host seems to be big-endian ..\n"); -#else - printf ("Host seems to be little-endian ..\n"); -#endif - - sprintf (f1, "%s/phontab", indir); - sprintf (f2, "%s/temp_1", outdir); - - printf ("Processing phontab ..\n"); - swap_phontab (f1, f2); - sprintf (f1, "%s/phontab", outdir); - rename (f2, f1); - - sprintf (f1, "%s/phonindex", indir); - sprintf (f2, "%s/temp_1", outdir); - - printf ("Processing phonindex ..\n"); - swap_phonindex (f1, f2); - sprintf (f1, "%s/phonindex", outdir); - rename (f2, f1); - - sprintf (f1, "%s/phondata", indir); - sprintf (f2, "%s/temp_1", outdir); - - printf ("Processing phondata ..\n"); - swap_phondata (f1, f2, manifest); - sprintf (f1, "%s/phondata", outdir); - rename (f2, f1); - - free (f1); - free (f2); - - printf ("Done.\n"); - - return 0; -} - -void -swap_phondata (const char *infile, const char *outfile, - const char *manifest) -{ - FILE *in, *mfest, *out; - char line[1024]; - unsigned char buf_4[4]; - - in = fopen (infile, "rb"); - if (in == NULL) { - fprintf (stderr, "Unable to read from file %s\n", infile); - exit (1); - } - - mfest = fopen (manifest, "rb"); - if (mfest == NULL) { - fprintf (stderr, "Unable to read from file %s\n", manifest); - exit (1); - } - - out = fopen (outfile, "wb"); - if (out == NULL) { - fprintf (stderr, "Unable to open file %s for writing\n", outfile); - exit (1); - } - - fread (buf_4, 4, 1, in); - fwrite (buf_4, 4, 1, out); - - while (fgets (line, 1024, mfest)) { - if (line[0] == 'S') { - SPECT_SEQ buf_spect; - size_t ix; - int n; - - fread (&buf_spect.length, 2, 1, in); - fread (&buf_spect.n_frames, 1, 1, in); - fseek (in, -3, SEEK_CUR); - - ix = (char *)(&buf_spect.frame[buf_spect.n_frames]) - - (char *)(&buf_spect); - ix = (ix+3) & 0xfffc; - - fread (&buf_spect, ix, 1, in); - - buf_spect.length = (short) SWAP_USHORT (buf_spect.length); - for (n = 0; n < buf_spect.n_frames; n++) { - int k; - - buf_spect.frame[n].frflags = (short) - SWAP_USHORT (buf_spect.frame[n].frflags); - - for (k = 0; k < 9; k++) { - buf_spect.frame[n].ffreq[k] = (short) - SWAP_USHORT (buf_spect.frame[n].ffreq[k]); - } - } - - fwrite (&buf_spect, ix, 1, out); - } - else if (line[0] == 'W') { - long pos; - int length; - char *wave_data; - - fread (buf_4, 4, 1, in); - fwrite (buf_4, 4, 1, out); - - length = buf_4[1] * 256 + buf_4[0]; - - wave_data = (char *) malloc (length); - if (wave_data == NULL) { - fprintf (stderr, "Memory allocation error\n"); - exit (1); - } - - fread (wave_data, 1, length, in); - fwrite (wave_data, 1, length, out); - - pos = ftell (in); - while((pos & 3) != 0) { - fgetc (in); - pos++; - } - - pos = ftell (out); - while((pos & 3) != 0) { - fputc (0, out); - pos++; - } - - free (wave_data); - } - else if (line[0] == 'E') { - char env_buf[128]; - - fread (env_buf, 1, 128, in); - fwrite (env_buf, 1, 128, out); - } - } - - fclose (in); - fclose (out); - fclose (mfest); -} - -void -swap_phonindex (const char *infile, const char *outfile) -{ - FILE *in, *out; - unsigned int val; - - in = fopen (infile, "rb"); - if (in == NULL) { - fprintf (stderr, "Unable to read from file %s\n", infile); - exit (1); - } - - out = fopen (outfile, "wb"); - if (out == NULL) { - fprintf (stderr, "Unable to open file %s for writing\n", outfile); - exit (1); - } - - while (! feof (in)) { - size_t n; - - n = fread (&val, 4, 1, in); - if (n != 1) - break; - - val = SWAP_UINT (val); - fwrite (&val, 4, 1, out); - } - - fclose (in); - fclose (out); -} - -void -swap_phontab (const char *infile, const char *outfile) -{ - FILE *in, *out; - char buf_4[4]; - int i, n_phoneme_tables; - - in = fopen (infile, "rb"); - if (in == NULL) { - fprintf (stderr, "Unable to read from file %s\n", infile); - exit (1); - } - - out = fopen (outfile, "wb"); - if (out == NULL) { - fprintf (stderr, "Unable to open file %s for writing\n", outfile); - exit (1); - } - - fread (buf_4, 4, 1, in); - fwrite (buf_4, 4, 1, out); - n_phoneme_tables = buf_4[0]; - - for (i = 0; i < n_phoneme_tables; i++) { - int n_phonemes, j; - char tab_name[N_PHONEME_TAB_NAME]; - - fread (buf_4, 4, 1, in); - fwrite (buf_4, 4, 1, out); - - n_phonemes = buf_4[0]; - - fread (tab_name, N_PHONEME_TAB_NAME, 1, in); - fwrite (tab_name, N_PHONEME_TAB_NAME, 1, out); - - for (j = 0; j < n_phonemes; j++) { - PHONEME_TAB table; - - fread (&table, sizeof (PHONEME_TAB), 1, in); - - table.mnemonic = SWAP_UINT (table.mnemonic); - table.phflags = SWAP_UINT (table.phflags); - - table.std_length = SWAP_USHORT (table.std_length); - table.spect = SWAP_USHORT (table.spect); - table.before = SWAP_USHORT (table.before); - table.after = SWAP_USHORT (table.after); - - fwrite (&table, sizeof (PHONEME_TAB), 1, out); - } - } - - fclose (in); - fclose (out); -} - -void -usage (const char *program_name) -{ - fprintf (stderr, -"This program copies the phontab, phonindex and phondata files from a given\n" -"directory, swapping values to big-endian form if necessary.\n\n" -"Usage:\n" -" %s [INPUT_DIR] [OUTPUT_DIR] [MANIFEST_FILE]\n\n" -"By default, the MANIFEST_FILE used is a file called 'phondata-manifest' in\n" -"the current directory. The default INPUT_DIR is /usr/share/espeak-data and\n" -"OUTPUT_DIR is the current directory.\n", program_name); - exit (1); -} diff -pruN 1.26-1/big_endian/Makefile 1.29-0ubuntu2/big_endian/Makefile --- 1.26-1/big_endian/Makefile 2007-04-20 18:00:48.000000000 +0100 +++ 1.29-0ubuntu2/big_endian/Makefile 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ -CC = gcc - -CFLAGS = -g -Wall - -all: espeak-phoneme-data - -espeak-phoneme-data: espeak-phoneme-data.c - $(CC) $(CFLAGS) -o $@ $< - -clean: - rm -f espeak-phoneme-data diff -pruN 1.26-1/big_endian/phondata-manifest 1.29-0ubuntu2/big_endian/phondata-manifest --- 1.26-1/big_endian/phondata-manifest 2007-06-08 13:06:58.000000000 +0100 +++ 1.29-0ubuntu2/big_endian/phondata-manifest 1970-01-01 01:00:00.000000000 +0100 @@ -1,599 +0,0 @@ -# This file lists the type of data that has been compiled into the -# phondata file -# -# The first character of a line indicates the type of data: -# S - A SPECT_SEQ structure -# W - A wavefile segment -# E - An envelope -# -# Address is the displacement within phondata of this item -# -# Address Data file -# ------- --------- -S 0x00004 vowel/@ -S 0x0008c vowel/@- -W 0x00114 ustop/percus10 -S 0x00320 j/j@ -S 0x003d4 j2/j2@ -S 0x0045c w/w@ -S 0x004e4 l/l@ -S 0x0056c l^/j2@ -S 0x005f4 r/r@ -S 0x0067c r2/r2@ -S 0x00704 m/m@ -S 0x007b8 n/n@ -S 0x0086c nn/nn@ -S 0x008f4 n^/n^@ -S 0x00a00 l/L1_@L -S 0x00ab4 l/L2_@L -S 0x00b68 l/xl -S 0x00bc4 w/xw -S 0x00c20 j/xj -S 0x00c7c r/xr -S 0x00cd8 r3/r_@ -S 0x00d60 j/ja -S 0x00e14 j2/j2a -S 0x00e9c w/wa -S 0x00f24 l/la -S 0x00f80 l^/j2a -S 0x01008 r/ra -S 0x01090 r2/r2a -S 0x01118 m/ma -S 0x011cc n/na -S 0x01280 nn/nna -S 0x01308 n^/n^a -S 0x013e8 l/L1_aL -S 0x0149c l/L2_aL -S 0x01550 r3/r_a -S 0x015d8 j/je -S 0x0168c j2/j2e -S 0x01714 w/we -S 0x0179c l/le -S 0x017f8 l^/j2e -S 0x01880 r/re -S 0x01908 r2/r2e -S 0x019bc m/me -S 0x01a70 n/ne -S 0x01b24 nn/nne -S 0x01bac n^/n^e -S 0x01cb8 l/L1_eL -S 0x01d40 l/L2_eL -S 0x01dc8 r3/r_e -S 0x01e50 j/ji -S 0x01ed8 j2/j2i -S 0x01f60 w/wi -S 0x01fe8 l/li -S 0x02070 l^/j2i -S 0x020f8 r/ri -S 0x02180 r2/r2i -S 0x02208 m/mi -S 0x022e8 n/ni -S 0x0239c nn/nni -S 0x02424 n^/n^i -S 0x02530 l/L1_iL -S 0x025e4 l/L2_iL -S 0x02698 nn/inn -S 0x02720 j2/xj2 -S 0x0277c r3/r_i -S 0x02804 j/jo -S 0x028e4 j2/j2o -S 0x02998 w/wo -S 0x02a20 l/lo -S 0x02ad4 l^/j2o -S 0x02b88 r/ro -S 0x02c10 r2/r2o -S 0x02c98 m/mo -S 0x02d4c n/no -S 0x02e00 nn/nno -S 0x02e88 n^/n^o -S 0x02fc0 l/L1_oL -S 0x030a0 l/L2_oL -S 0x03180 r3/r_o -S 0x03208 j/ju -S 0x032bc j2/j2u -S 0x03344 w/wu -S 0x033cc l/lu -S 0x03454 l^/j2u -S 0x034dc r/ru -S 0x03564 r2/r2u -S 0x035ec m/mu -S 0x036a0 n/nu -S 0x03754 nn/nnu -S 0x037dc n^/n^u -S 0x038e8 l/L1_uL -S 0x0399c l/L2_uL -S 0x03a50 r3/r_u -S 0x03ad8 r/r -S 0x03b34 r/_r -S 0x03bbc r/tr -S 0x03c18 r/r_ -S 0x03cf8 r3/r_ -W 0x03d54 r3/rx -S 0x050ac r3/r_n -S 0x05108 r/rr -S 0x05190 r/trr -S 0x05218 r2/_r2 -S 0x052a0 r3/r_trill2 -W 0x05328 r3/r_trill2.wav -S 0x05a34 r3/r_trill -W 0x05ae8 r3/r_trill.wav -W 0x06554 r3/r_trill3.wav -S 0x06998 l/l -S 0x069f4 l/_l -S 0x06a7c l/tl -S 0x06ad8 l/l_long -S 0x06b34 l/l_ -S 0x06b90 l^/l^ -S 0x06c44 l^/_l^ -S 0x06cf8 w/w -S 0x06d54 w/_w -S 0x06db0 w/w_ -S 0x06e0c j/_j -S 0x06e68 j/j_ -S 0x06ef0 j2/_j2 -S 0x06f4c m/_m -S 0x06fa8 m/m_ -S 0x07030 m/mj -S 0x070b8 n/_n -S 0x07114 n/n_ -S 0x0719c n/nj -S 0x07224 n^/_n^ -S 0x07280 n^/n^_ -S 0x07334 nn/_nn -S 0x07390 nn/nn_ -S 0x07418 nn/nnj -S 0x07474 r3/@tap -S 0x07554 r3/@tap_i -S 0x07634 b/b -W 0x076e8 x/b -S 0x0784c b/b_ -W 0x078d4 x/b_ -S 0x08100 b/ba -S 0x081b4 b/b@ -S 0x08268 b/be -S 0x0831c b/bi -S 0x083d0 b/bo -S 0x08484 b/bu -S 0x08538 b/b@2 -S 0x085ec b/xb -S 0x08674 d/d -W 0x086fc x/d -S 0x08918 d/d_ -W 0x089a0 x/d_ -S 0x08dc8 d/dr -S 0x08e24 d/xd -W 0x08eac x/d_dnt -S 0x09190 d/tap3 -S 0x09244 d/tap1 -S 0x092cc d/tap2 -S 0x09354 d/x_tap -S 0x093dc dzh/dzh -W 0x09464 x/dzh -S 0x09870 dzh/dzh_ -W 0x098f8 x/dzh_ -S 0x0a330 dzh/xdzh -W 0x0a3b8 x/dz_pzd -S 0x0a818 dzh/dz_pzd -S 0x0a8a0 dzh/dz_pzd_ -S 0x0a928 dzh/xdz_pzd -S 0x0a9b0 g/g -W 0x0aa38 x/g2 -S 0x0acc0 g/g_ -W 0x0ad48 x/g_ -S 0x0b108 g/xg -S 0x0b190 g2/g -W 0x0b218 x/g2_ -S 0x0b5d8 g2/g_ -S 0x0b660 g2/xg -S 0x0b6e8 voc/bh -W 0x0b770 vocw/v -S 0x0c96c voc/v_ -S 0x0c9f4 voc/v -S 0x0caa8 voc/dh -W 0x0cb30 vocw/dh -S 0x0d438 voc/dh_ -S 0x0d4c0 voc/z -W 0x0d548 ufric/s_ -S 0x0dffc voc/z_ -S 0x0e084 voc/zh -W 0x0e10c vocw/zh -S 0x0ea74 voc/zh_ -W 0x0eafc vocw/zh_rfx -S 0x0f38c voc/z_pzd -W 0x0f414 ufric/s_pzd -S 0x0fd4c voc/z_pzd_ -W 0x0fdd4 ufric/s_pzd_ -W 0x108d8 ufric/sh_pzd_ -S 0x113a0 voc/Q -W 0x11428 vocw/Q -S 0x11c34 voc/Q_ -W 0x11cbc vocw/Q_ -W 0x124c8 ustop/p -W 0x12838 ustop/p_ -W 0x13048 ustop/pr -W 0x13490 ustop/p_unasp -W 0x137bc ustop/pl -W 0x13bb4 ustop/t -W 0x13fe8 ustop/t_ -W 0x144a8 ustop/t_dnt -W 0x148b8 ustop/tr -W 0x15018 ustop/tsh -W 0x15658 ustop/tsh_ -W 0x15f98 ustop/ts_pzd -W 0x1669c ustop/c -W 0x1694c ustop/ki -W 0x16f14 ustop/k -W 0x173e8 ustop/k_ -W 0x178a4 ustop/kr -W 0x17ee4 ustop/k_unasp -W 0x183b8 ustop/kl -W 0x189e8 ufric/f -W 0x191d8 ufric/f_ -W 0x1a770 ufric/th -W 0x1b008 ufric/th_ -W 0x1b888 ufric/s -W 0x1c028 ufric/s! -W 0x1c8d8 ufric/sh -W 0x1d288 ufric/sh_ -W 0x1dd38 ufric/sh_rfx -W 0x1e6d4 ufric/sh_pzd -W 0x1f008 ufric/ll -W 0x1fa4c ufric/ch -W 0x20374 ufric/x -W 0x20cd8 ufric/h_ -W 0x21384 ufric/h@ -W 0x218d8 ufric/ha -W 0x21f54 ufric/he -W 0x225e8 ufric/hi -W 0x22b80 ufric/ho -W 0x2323c ufric/hu -S 0x23960 l/l_2 -S 0x239bc vwl_en/@L -S 0x23a44 vowel/a_en -S 0x23af8 vowel/a#_3 -S 0x23b80 vowel/ee_2 -S 0x23c08 vowel/ii_en -S 0x23c90 vowel/0 -S 0x23d18 vowel/V -S 0x23da0 vowel/uu -S 0x23e28 vowel/aa_2 -S 0x23f34 vowel/3_en -S 0x24014 vowel/i_en -S 0x240c8 w/wi2 -S 0x2417c vowel/oo_en -S 0x2425c vwl_en/u -S 0x2433c vwl_en/u_L -S 0x2441c vdiph/au -S 0x24528 vdiph/@u_en -S 0x24634 vdiph/ai_en -S 0x2476c vdiph/eei -S 0x24878 vdiph/ooi -S 0x249b0 vowel/ee_1 -S 0x24a90 vdiph2/ii@ -S 0x24b9c vdiph2/uu@ -S 0x24c7c vwl_en/aI@ -S 0x24db4 vwl_en/aU@ -S 0x24ec0 vowel/e -S 0x24f74 vowel/o -S 0x25028 vdiph/eu -S 0x25108 vdiph/ui -S 0x251e8 vowelr/V_r -S 0x252c8 vowelr/V3_r -S 0x253a8 vnasal/aa_n -S 0x25488 vnasal/ee_n -S 0x25568 vnasal/oo_n -S 0x2561c vnasal/W_n -S 0x256fc vowel/y -S 0x257dc vowel/y# -S 0x25890 vowel/oe -S 0x25918 vowel/u# -S 0x259cc vowel/a -S 0x25a80 vowel/ee_6 -S 0x25b08 vowel/0_2 -S 0x25bbc vowel/o-_2 -S 0x25c70 vowel/u -S 0x25d24 vowel/aa_5 -S 0x25dd8 vowel/3_2 -S 0x25eb8 vowel/i -S 0x25f6c vowel/oo_1 -S 0x2604c vwl_en_n/O@ -S 0x26100 vowel/u#_3 -S 0x261e0 vwl_en_n/u_ -S 0x262c0 vdiph/eeu_3 -S 0x263a0 vowel/o_4 -S 0x26454 vdiph/ae_2 -S 0x26560 vdiph2/i@ -S 0x2666c vwl_en_us/@r_us -S 0x26720 vwl_en_us/a -S 0x267d4 vwl_en_us/ee -S 0x26888 vwl_en_us/ii -S 0x2693c vwl_en_us/i_final3 -S 0x269c4 vowel/aa -S 0x26a78 vwl_en_us/V -S 0x26b2c vowel/8_2 -S 0x26be0 vwl_en_us/ar2 -S 0x26cc0 vwl_en_us/3_us -S 0x26dcc vowel/0_3 -S 0x26e80 vwl_en_us/or -S 0x26f60 vowel/u_4 -S 0x27040 vdiph/au_2 -S 0x2714c vdiph/8u -S 0x2722c vdiph/ai_2 -S 0x27364 vdiph/eei_3 -S 0x27444 vwl_en_us/er -S 0x27524 vwl_en_us/ir -S 0x27604 vwl_en_us/ur -S 0x276e4 vowel/@_3 -S 0x2776c vowel/a_3 -S 0x27820 vowel/a# -S 0x278d4 vowel/e_e -S 0x27988 vowel/e# -S 0x27a3c vowel/e_5 -S 0x27af0 vowel/oo_2 -S 0x27ba4 vowel/V_4 -S 0x27c2c vowel/u#_4 -S 0x27ce0 vowelr/aa_r -S 0x27dec vdiph2/e@ -S 0x27ecc vowel/i_5 -S 0x27f80 vowel/oo -S 0x28034 vowelr/oo_r -S 0x280e8 vowelr/o_r -S 0x281f4 vdiph/au# -S 0x282d4 vowel/o_3 -S 0x28388 vdiph/ai_7 -S 0x28494 vwl_en/aI@_2 -S 0x285a0 vwl_en/@L_2 -S 0x28654 vowel/e_2 -S 0x28708 vdiph/0i_2 -S 0x28814 vdiph2/u#@ -S 0x288f4 vwl_en_rp/@ -S 0x2897c vowel/& -S 0x28a30 vowel/e_mid -S 0x28ae4 vowel/ii_4 -S 0x28b6c vowel/ii_3 -S 0x28c20 vowel/V_3 -S 0x28ca8 vowel/o-_3 -S 0x28d5c vwl_en_rp/aa -S 0x28e3c vowel/3_3 -S 0x28f1c vowel/u_6 -S 0x28fd0 vdiph/au_3 -S 0x290dc vdiph/@u_2 -S 0x291bc vdiph/ai_6 -S 0x292f4 vwl_en_rp/e@ -S 0x293d4 vwl_en_rp/i@ -S 0x294e0 vwl_en_rp/oo -S 0x29594 vwl_en_rp/aU@ -S 0x296a0 vowel/a_4 -S 0x29754 vwl_en_wm/ii -S 0x297dc vowel/ii -S 0x29890 vwl_en_wm/aa -S 0x29970 vwl_en_wm/i -S 0x29a24 vdiph/@u -S 0x29b04 vdiph/Vu_2 -S 0x29c10 vdiph/ooi_3 -S 0x29d1c vdiph/@i_3 -S 0x29dfc vdiph/oi -S 0x29f34 vdiph2/ii@_2 -S 0x2a040 vwl_af/@ -S 0x2a0c8 vwl_af/r@ -S 0x2a150 vowel/V_2 -S 0x2a1d8 vowel/e_mid2 -S 0x2a28c vwl_af/I -S 0x2a314 vowel/oo_3 -S 0x2a39c vowel/uu_3 -S 0x2a424 vowel/ee_3 -S 0x2a4ac l/L_eL_af -S 0x2a534 vowel/aa_3 -S 0x2a5e8 vdiph/i@_2 -S 0x2a6f4 vowel/i_3 -S 0x2a7a8 vdiph2/o@ -S 0x2a8b4 vowel/y_3 -S 0x2a968 vdiph2/iu_3 -S 0x2aaa0 vdiph/Vu -S 0x2abac vdiph/ai_4 -S 0x2acb8 vdiph/aai_2 -S 0x2adf0 vdiph/@i_2 -S 0x2aed0 vdiph/ooi_2 -S 0x2afdc vdiph/oi_2 -S 0x2b114 vdiph/ui_2 -S 0x2b220 vdiph/y#y_2 -S 0x2b32c vdiph2/y#@ -S 0x2b40c vnasal/aa_n3 -S 0x2b4ec vnasal/e_n -S 0x2b5a0 vnasal/o_n2 -W 0x2b680 ufric/x2 -S 0x2bfd8 vowel/ii# -S 0x2c08c vowel/u_bck -S 0x2c140 vowel/i# -S 0x2c1f4 vowel/o_2 -S 0x2c2d4 vdiph/au_4 -S 0x2c3e0 vdiph2/iu_4 -S 0x2c4c0 vdiph/ui_3 -S 0x2c5cc vowel/uu_2 -S 0x2c680 vowel/aa_6 -S 0x2c760 vowel/i_2 -S 0x2c814 vdiph/aau_2 -S 0x2c8f4 vdiph/ai_5 -S 0x2c9d4 vowel/yy_4 -W 0x2ca88 ustop/ts -S 0x2d4e4 l/l_3 -S 0x2d540 vowel/a_2 -S 0x2d5f4 vdiph/ai -S 0x2d6d4 vdiph/eei_2 -S 0x2d7b4 vowel/i_4 -S 0x2d868 vowel/aa# -S 0x2d91c vowel/u_2 -S 0x2d9d0 vowel/uu_4 -S 0x2da84 vdiph/aai_3 -S 0x2db90 vdiph/&i -S 0x2dc70 vdiph/y#i -S 0x2dd50 vdiph/yi -S 0x2de30 vdiph/aau -S 0x2df3c vdiph/ou -S 0x2e01c vdiph/eu_2 -S 0x2e0fc vdiph2/iu_2 -S 0x2e208 vdiph/&y -S 0x2e2e8 vdiph/eey -S 0x2e3c8 vdiph/y#y -S 0x2e4a8 vdiph2/iy -S 0x2e588 vdiph2/uo -S 0x2e668 vdiph2/ie -S 0x2e748 vdiph2/y-y# -W 0x2e828 ustop/p_unasp_ -W 0x2e964 ufric/s_continue -W 0x2f114 ufric/hu_fi -S 0x2fa04 vowel/@_2 -S 0x2fa8c vowel/ee -S 0x2fb40 vowel/o_mid -S 0x2fbf4 vowel/y_2 -S 0x2fcd4 vdiph/yi_fr -S 0x2fde0 vnasal/o_n3 -S 0x2fe94 vwl_fr/@R2 -S 0x2ff48 vowel/uu_bck -S 0x2fffc vowel/yy -S 0x300b0 vdiph/ae -S 0x30190 vowel/@_bck -S 0x30244 vowel/@_low -S 0x302cc vowel/i_fnt -S 0x30380 vdiph/ee-e -S 0x30460 vnasal/ee_n2 -S 0x30540 vwl_hi/A -S 0x305f4 vowel/oo_4 -S 0x306a8 vnasal/o_n -S 0x30788 vnasal/oo_n2 -S 0x30868 vowelr/r-voc -S 0x30948 vwl_hi/l-voc -S 0x309fc vdiph/aau_3 -W 0x30b08 ustop/t_dnt2 -S 0x30d60 d/d_dnt -S 0x30de8 d/xd_dnt -W 0x30e70 ustop/t_short -W 0x310b4 ustop/ts_pzd2 -W 0x313e8 ustop/ts_pzd_ -W 0x318ac x/dz_pzd_ -S 0x31f9c vowel/e_3 -S 0x32050 vwl_de/r_y -S 0x32130 vowel/y#_2 -S 0x321e4 vowel/@_4 -S 0x3226c vowel/o_6 -S 0x322f4 vowel/aa_7 -S 0x323a8 vdiph/ei -S 0x32488 vdiph/y#y_3 -S 0x3253c vdiph/Vu_3 -S 0x32648 vdiph/eei_4 -S 0x32754 vdiph2/yu -S 0x32834 voc/Q_less -W 0x328bc vocw/Q2 -W 0x33188 ustop/t_pzd -W 0x335d4 x/d_pzd -S 0x339e8 d/xd_pzd -S 0x33a70 w/w2 -S 0x33af8 vdiph/ou_2 -W 0x33bd8 r3/rz_cs -S 0x34684 voc/zh_2 -S 0x3470c vowel/@_fnt -S 0x347c0 vowel/a#_2 -S 0x34848 vowel/i_6 -S 0x348fc vdiph/ei_2 -S 0x349dc vdiph/ii -S 0x34b14 vdiph/ui_4 -W 0x34bf4 ufric/x_hr -S 0x35508 vwl_ru/i -S 0x355bc vwl_ru/ii# -S 0x35644 vwl_ru/i# -S 0x356f8 vwl_ru/ii -S 0x357ac vwl_ru/e -S 0x35860 vwl_ru/E# -S 0x35914 vwl_ru/E@ -S 0x359c8 vwl_ru/a -S 0x35a7c vwl_ru/o -S 0x35b30 vwl_ru/oo -S 0x35bb8 vwl_ru/u -S 0x35c6c vwl_ru/u# -S 0x35d4c vwl_ru/u#u -S 0x35e2c vwl_ru/8 -S 0x35eb4 vwl_ru/ee -S 0x35f94 vwl_ru/ju -S 0x36048 vwl_ru/ja -S 0x36154 vwl_ru/aa -S 0x36208 vdiph2/iu -S 0x36314 vnasal/i_n -S 0x363c8 vnasal/u_n -S 0x3647c vnasal/a#_n -S 0x36530 vnasal/a#u_n -S 0x36610 vnasal/oi_n -S 0x36748 vdiph/0i -S 0x36880 vdiph/eeu -S 0x36960 vowel/i#_5 -S 0x36a14 vdiph/eeu_2 -S 0x36af4 vwl_fr/@R -S 0x36ba8 vwl_ro/ii- -S 0x36c30 vwl_ro/li -S 0x36ce4 vwl_ro/mi -S 0x36dc4 vwl_ro/ni -S 0x36e78 vowel/o-_4 -S 0x36f2c vdiph/@u_3 -S 0x37038 vdiph/i#i -S 0x37118 vowel/u_3 -S 0x371f8 vdiph2/ea -S 0x372d8 vdiph2/eo -S 0x373e4 vdiph2/e[u -S 0x374c4 vdiph2/oa -S 0x375a4 d/tap -S 0x3762c d/tap_i -S 0x376b4 vowel/ee#_2 -S 0x3773c vowel/y_5 -S 0x3781c vowel/yy_3 -S 0x378d0 vowel/u#_2 -S 0x37984 vowel/oe_4 -S 0x37a0c vowel/a_5 -S 0x37ac0 vowel/aa_4 -S 0x37b74 vwl_sv/r_sv3 -W 0x37cd8 ufric/sx_sv -S 0x38520 vowel/@_hgh -S 0x385a8 vowel/yy_2 -S 0x3865c vowel/y_4 -S 0x38710 vowel/oe_2 -S 0x387c4 vwl_no/y# -S 0x38878 vwl_no/& -S 0x3892c vwl_no/u# -S 0x389e0 vwl_no/u#2 -S 0x38ac0 vdiph/ai_3 -S 0x38ba0 vwl_no/y#y -S 0x38c80 vwl_no/au- -S 0x38db8 vdiph2/o_oo -S 0x38e98 vowel/oo_5 -S 0x38f4c vowel/y## -S 0x39000 vowel/y#_3 -S 0x390b4 vdiph/ou_3 -S 0x39168 vdiph/y#i_2 -S 0x39248 m/m#_ -S 0x392fc n/n#_ -S 0x393b0 n^/n^#_ -S 0x39464 nn/nn#_ -W 0x39518 ufric/tl# -S 0x39e80 r3/r#_ -E 0x39edc envelope/p_level -E 0x39f5c envelope/p_fall -E 0x39fdc envelope/p_rise -E 0x3a05c envelope/p_fallrise -E 0x3a0dc envelope/vi_5 -E 0x3a15c envelope/vi_5amp -E 0x3a1dc envelope/vi_6 -E 0x3a25c envelope/vi_6amp -S 0x3a2dc vowel/u_7 -S 0x3a390 vdiph/&i_3 -S 0x3a49c vdiph/@i_4 -S 0x3a57c vdiph/Vi -S 0x3a688 vdiph/u-i -S 0x3a768 vdiph/aau_4 -S 0x3a874 vdiph2/ii@_3 -S 0x3a980 vdiph2/u-@ -S 0x3aa8c vdiph/aai -S 0x3abc4 vwl_zh/aang -S 0x3acfc vwl_zh/ong -S 0x3ae08 vowel/8_3 -S 0x3aebc vowel/u_5 -S 0x3af70 vnasal/m- -S 0x3b024 vnasal/n- -S 0x3b0d8 vnasal/nn- diff -pruN 1.26-1/big_endian/README 1.29-0ubuntu2/big_endian/README --- 1.26-1/big_endian/README 2007-04-27 17:44:31.000000000 +0100 +++ 1.29-0ubuntu2/big_endian/README 1970-01-01 01:00:00.000000000 +0100 @@ -1,18 +0,0 @@ -espeak-utils -============ - -A utility to convert the phonindex, phontab and phondata to -big-endian form if necessary. - -* espeak-phoneme-data - - This is the little-endian to big-endian conversion tool. It uses an - external file (by default called 'phondata-manifest') in order to convert - the phondata file. - -The 'phondata-manifest' file is produced by espeakedit when it compiles -the phoneme data. If it is not present here, find it in the espeak-data directory. - ---- -To contact the author of these utilities, please send an e-mail to - diff -pruN 1.26-1/ChangeLog 1.29-0ubuntu2/ChangeLog --- 1.26-1/ChangeLog 2007-06-08 11:59:36.000000000 +0100 +++ 1.29-0ubuntu2/ChangeLog 2007-08-27 12:24:37.000000000 +0100 @@ -1,3 +1,41 @@ +eSpeak 1.29 + +1. Bug fixes and minor improvements. + +2. Voice variants have names rather than + numbers (eg. espeak -v en+f2 ). + + +eSpeak 1.28 + +1. Roman number translation added for + some languages. + +2. Improvements to languages, including + en-r, Hungarian, Romanian. + +3. Various bug fixes. + + +eSpeak 1.27 + +1. License change to GPL version 3. + +2. Fixes, including crash in + espeak_ListVoices() + +3. Language improvements, including: + French, German, Italian, Hungarian, + Afrikaans, + +4. Add parameter "options" to + espeak_Initialize() to turn on + phoneme event reporting. + +5. Added breath attributes in voice files, + and "en-wisper" voice which uses these. + + eSpeak 1.26 1. Improvements to languages including @@ -74,56 +112,3 @@ more bass. 5. Other language improvements and bug fixes. - -eSpeak 1.20 - -1. Workaround for a bug in some versions of -portaudio v19 which caused segfault. - -2. A few other bug fixes, including the $brk -attribute in *_list files not working. - - -eSpeak 1.19 - -1. Changes make for PowerPC and other big-endian -processors. - -2. Voice added en-r for less "British" English. - -3. The Windows installer asks which languages to -install in the Registry. - - -eSpeak 1.18 - -1. Asynchronous modes added to libespeak. Speech -can either be played or retrieved asynchonously. - -2. eSpeak API changed to accommodate asynchonous -modes, see speak_lib.h. - -3. Changed eSpeak library functions and -speak_lib.h to use C compatible function calls. - -4. Two versions of the command-line program: - espeak, which uses the libespeak library. - speak, which is a standalone program. - -5. Windows SAPI5 version made, with installer. - -6. Added "voice variants" feature, so that different - sounding voices can be used with any language. - See "docs/voices.html" - -7. Added languages (* naive initial draft only) - ro Romanian - fr French - sv Swedish * - no Norwegian * - hi Hindi * - vi Vietnamese * - - Improved languages - af Afrikaans - de German diff -pruN 1.26-1/debian/changelog 1.29-0ubuntu2/debian/changelog --- 1.26-1/debian/changelog 2007-09-18 20:25:38.000000000 +0100 +++ 1.29-0ubuntu2/debian/changelog 2007-09-18 19:25:33.000000000 +0100 @@ -1,3 +1,30 @@ +espeak (1.29-0ubuntu2) gutsy; urgency=low + + * Do not build with -pedantic. LP: #138569. + + -- Matthias Klose Thu, 13 Sep 2007 14:02:48 +0000 + +espeak (1.29-0ubuntu1) gutsy; urgency=low + + * New upstream release. (LP: #128137) + * debian/copyright: Adjust for license change. + * debian/rules: Update location of endian conversion utility. + * Update espeak manpage. + + -- Luke Yelavich Tue, 28 Aug 2007 17:07:43 +1000 + +espeak (1.26-1ubuntu1) gutsy; urgency=low + + * Merge with Debian; remaining changes: + - Build-depend on dpatch. + - Add conflict/replaces with earlier versions. + - Build big_endian/espeak-phoneme-data.c for use in preparing + espeak voice metadata for packaging. + - Modified debian/copyright to mention big_endian/espeak-phoneme-data.c. + - Patch to ensure compilation uses externally specified C(XX)FLAGS. + + -- Luke Yelavich Thu, 14 Jun 2007 09:24:23 +1000 + espeak (1.26-1) unstable; urgency=low * New upstream release. @@ -12,6 +39,25 @@ espeak (1.25-1) unstable; urgency=low -- Mario Lang Sun, 20 May 2007 16:12:39 +0200 +espeak (1.25-0ubuntu1) gutsy; urgency=low + + * New upstream release. + * debian/rules: Grab the upstream version using dpkg-parsechangelog. + * Build big_endian/espeak-phoneme-data.c for use in preparing + espeak voice metadata for packaging. + * Modified debian/copyright to mention + big_endian/espeak-phoneme-data.c. + * Patch to ensure compilation uses externally specified C(XX)FLAGS. + * debian/rules: + - Bump version number. + - Build big_endian/espeak-phoneme-data.c for use in preparing + espeak voice metadata for packaging. + - Fixed up ordering of dh_makeshlibs and dh_shlibdeps, and added + arguments to dh_shlibdeps to ensure the proper library + dependencies. + + -- Luke Yelavich Sun, 20 May 2007 21:37:19 +1000 + espeak (1.22-1) unstable; urgency=low * New upstream release. @@ -23,6 +69,13 @@ espeak (1.22-1) unstable; urgency=low -- Mario Lang Sat, 14 Apr 2007 22:42:03 +0200 +espeak (1.21-0ubuntu1) feisty; urgency=low + + * New upstream release + * debian/rules: Updated version number. + + -- Luke Yelavich Thu, 8 Mar 2007 22:10:29 +1100 + espeak (1.19-2) unstable; urgency=low * Change roundl() to round() in src/wave.cpp. @@ -35,6 +88,88 @@ espeak (1.19-1) unstable; urgency=low -- Mario Lang Sun, 28 Jan 2007 23:58:18 +0100 +espeak (1.19-0ubuntu4) feisty; urgency=low + + * debian/copyright: Added copyright holders. + + -- Luke Yelavich Thu, 1 Feb 2007 14:42:52 +1100 + +espeak (1.19-0ubuntu3) feisty; urgency=low + + * Rebuild package files, due to odd FTBFS when attempting to apply + patch. + + -- Luke Yelavich Thu, 1 Feb 2007 12:05:48 +1100 + +espeak (1.19-0ubuntu2) feisty; urgency=low + + * debian/patches/01_roundl_fix.dpatch: + - Change roundl() to round() in src/wave.cpp, Thanks to Mario Lang. + * debian/control: Added dpatch to build-depends. + + -- Luke Yelavich Thu, 1 Feb 2007 11:29:35 +1100 + +espeak (1.19-0ubuntu1) feisty; urgency=low + + * New upstream release. + * debian/control: + - Changed espeak-data to be architecture specific. + - The espeak package now depends on libespeak1. + - Added homepage to all package descriptions. + * debian/rules: + - Use the espeak binary for the espeak package. + - Add a check for big endian architectures, (currently only ppc) to + ensure the proper espeak-data is copied into place. + - Bump package version to 1.19. + - Move location of espeak_lib.h to /usr/include/espeak. + * Packaging fixes from Mario Lang: + - Fix first-person description. + - Add missing dh_makeshlibs and fix misplaced dh_installdeb call. + + -- Luke Yelavich Sat, 27 Jan 2007 12:47:27 +1100 + +espeak (1.18-0ubuntu1) feisty; urgency=low + + * New upstream release: + - Asynchronous modes added to libespeak. Speech can either be played or + retrieved asynchonously. + - eSpeak API changed to accommodate asynchonous modes, see speak_lib.h. + - Changed eSpeak library functions and speak_lib.h to use C compatible + function calls. + - Two versions of the command-line program: espeak, which uses the + libespeak library. speak, which is a standalone program. + - Windows SAPI5 version made, with installer. + - Added "voice variants" feature, so that different sounding voices can + be used with any language. See "docs/voices.html" + - Added languages (* naive initial draft only): Romanian, French, + Swedish *, Norwegian, Hindi, Vietnamese + - Improved langugages: Afrikaans, German. + * debian/rules: + - bumped 'version'. + + -- Daniel Holbach Mon, 22 Jan 2007 12:02:57 +0100 + +espeak (1.18-0ubuntu1) feisty; urgency=low + + * New upstream release: + - Asynchronous modes added to libespeak. Speech can either be played or + retrieved asynchonously. + - eSpeak API changed to accommodate asynchonous modes, see speak_lib.h. + - Changed eSpeak library functions and speak_lib.h to use C compatible + function calls. + - Two versions of the command-line program: espeak, which uses the + libespeak library. speak, which is a standalone program. + - Windows SAPI5 version made, with installer. + - Added "voice variants" feature, so that different sounding voices can + be used with any language. See "docs/voices.html" + - Added languages (* naive initial draft only): Romanian, French, + Swedish *, Norwegian, Hindi, Vietnamese + - Improved langugages: Afrikaans, German. + * debian/rules: + - bumped 'version'. + + -- Daniel Holbach Mon, 22 Jan 2007 12:02:57 +0100 + espeak (1.16-2) unstable; urgency=low * Fix first-person description (Closes: Bug#399585) diff -pruN 1.26-1/debian/control 1.29-0ubuntu2/debian/control --- 1.26-1/debian/control 2007-09-18 20:25:38.000000000 +0100 +++ 1.29-0ubuntu2/debian/control 2007-09-18 19:25:33.000000000 +0100 @@ -1,8 +1,9 @@ Source: espeak Section: sound Priority: optional -Maintainer: Mario Lang -Build-Depends: debhelper (>= 5.0.0), portaudio19-dev +Maintainer: Luke Yelavich +XSBC-Original-Maintainer: Mario Lang +Build-Depends: debhelper (>= 5.0.0), portaudio19-dev, dpatch Standards-Version: 3.7.2 Package: espeak @@ -32,9 +33,12 @@ Description: A multi-lingual software sp attempts at German and Esperanto are included. * Compact size. The program and its data total about 350 kbytes. * Written in C++. + Homepage: http://espeak.sourceforge.net Package: espeak-data Architecture: any +Conflicts: espeak (<= 1.11) +Replaces: espeak (<= 1.11) Recommends: espeak (= ${binary:Version}) Description: A multi-lingual software speech synthesizer: speech data files eSpeak is a software speech synthesizer for English, and some other @@ -52,8 +56,11 @@ Description: A multi-lingual software sp Package: libespeak-dev Architecture: any Section: libdevel +Conflicts: libespeak-dev (<= 1.15) +Replaces: libespeak-dev (<= 1.15) Depends: libespeak1 (= ${binary:Version}) Description: A multi-lingual software speech synthesizer: development files eSpeak is a software speech synthesizer for English, and some other languages. This package contains the eSpeak development files needed to build against the espeak shared library. + Homepage: http://espeak.sourceforge.net diff -pruN 1.26-1/debian/copyright 1.29-0ubuntu2/debian/copyright --- 1.26-1/debian/copyright 2007-09-18 20:25:38.000000000 +0100 +++ 1.29-0ubuntu2/debian/copyright 2007-09-18 19:25:33.000000000 +0100 @@ -3,13 +3,16 @@ Fri, 23 Jun 2006 08:49:03 +0200. It was downloaded from http://prdownloads.sourceforge.net/espeak/speak-1.10-source.zip -Copyright Holder: Jonathan Duddington 2005, 2006 +Copyright Holders: Jonathan Duddington 2005, 2006 + Gilles Casse 2007 + Ross Bencina 1999-2000 + Phil Burk 1999-2000 License: This package 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 + the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This package is distributed in the hope that it will be useful, @@ -22,5 +25,11 @@ License: Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/usr/share/common-licenses/GPL-3'. +The following files have a different license to what is stated above. + +big_endian/espeak-phoneme-data.c: + Author: Leonardo Boshell + This file has no copyright, as intended by the author, and + has been placed in the public domain. diff -pruN 1.26-1/debian/espeak.1 1.29-0ubuntu2/debian/espeak.1 --- 1.26-1/debian/espeak.1 2007-09-18 20:25:38.000000000 +0100 +++ 1.29-0ubuntu2/debian/espeak.1 2007-09-18 19:25:33.000000000 +0100 @@ -2,7 +2,7 @@ .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) -.TH ESPEAK 1 "June 23, 2006" +.TH ESPEAK 1 "July 25, 2007" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: @@ -55,6 +55,9 @@ peed in words per minute, default is 160 .B \-v Use voice file of this name from espeak-data/voices .TP +.B -b +Input text is 8-bit encoding +.TP .B -m Indicates that the text contains SSML (Speech Synthesis Markup Language) tags or other XML tags. Those SSML tags which are supported are interpreted. Other tags, including HTML, are ignored, except that some HTML tags such as

and
  • ensure a break in the speech. .TP diff -pruN 1.26-1/debian/libespeak1.shlibs 1.29-0ubuntu2/debian/libespeak1.shlibs --- 1.26-1/debian/libespeak1.shlibs 2007-09-18 20:25:38.000000000 +0100 +++ 1.29-0ubuntu2/debian/libespeak1.shlibs 2007-09-18 19:25:33.000000000 +0100 @@ -1,2 +1,2 @@ -libespeak 1 libespeak1 (>= 1.22) +libespeak 1 libespeak1 (>= 1.27) diff -pruN 1.26-1/debian/patches/00list 1.29-0ubuntu2/debian/patches/00list --- 1.26-1/debian/patches/00list 1970-01-01 01:00:00.000000000 +0100 +++ 1.29-0ubuntu2/debian/patches/00list 2007-09-18 19:25:33.000000000 +0100 @@ -0,0 +1 @@ +01_espeak-cflags.dpatch diff -pruN 1.26-1/debian/patches/01_espeak-cflags.dpatch 1.29-0ubuntu2/debian/patches/01_espeak-cflags.dpatch --- 1.26-1/debian/patches/01_espeak-cflags.dpatch 1970-01-01 01:00:00.000000000 +0100 +++ 1.29-0ubuntu2/debian/patches/01_espeak-cflags.dpatch 2007-09-18 19:25:33.000000000 +0100 @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01_espeak-cflags.dpatch by Luke Yelavich +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Ensure source is built with externally specified C(XX)FLAGS. + +@DPATCH@ +diff -urNad espeak-1.24~/src/Makefile espeak-1.24/src/Makefile +--- espeak-1.24~/src/Makefile 2007-05-11 23:25:47.000000000 +1000 ++++ espeak-1.24/src/Makefile 2007-05-11 23:27:33.258509351 +1000 +@@ -39,7 +39,7 @@ + OBJS3=$(patsubst %.cpp,%.o,$(SRCS3)) + LIBS3=-lstdc++ ./libespeak.so + +-CXXFLAGS=-O2 ++CXXFLAGS += -O2 + + + all: $(BIN_NAME) $(LIB_NAME) $(STATIC_LIB_NAME) $(BIN2_NAME) diff -pruN 1.26-1/debian/rules 1.29-0ubuntu2/debian/rules --- 1.26-1/debian/rules 2007-09-18 20:25:38.000000000 +0100 +++ 1.29-0ubuntu2/debian/rules 2007-09-18 19:25:33.000000000 +0100 @@ -7,6 +7,8 @@ soname=libespeak.so.1 version=$(shell dpkg-parsechangelog|sed -n -e 's/^Version: //p'|cut -d- -f1) +voicelist=$(shell ls -1 dictsource/*_list | cut -f 2 -d / | cut -f 1 -d _) + CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) @@ -15,22 +17,39 @@ else CFLAGS += -O2 endif +include /usr/share/dpatch/dpatch.make build: build-stamp -build-stamp: +build-stamp: patch-stamp dh_testdir + cp $(CURDIR)/src/portaudio19.h $(CURDIR)/src/portaudio.h cd src && CXXFLAGS="$(CXXFLAGS) $(CFLAGS)" $(MAKE) + cd src && $(MAKE) clean + cd src && CXXFLAGS="$(CXXFLAGS) $(CFLAGS)" $(MAKE) speak DATADIR=$(CURDIR)/espeak-data + cd platforms/big_endian && CFLAGS="$(CFLAGS)" $(MAKE) + + # Build voice metadata. + mkdir -p $(CURDIR)/tmp + $(CURDIR)/platforms/big_endian/espeak-phoneme-data $(CURDIR)/espeak-data $(CURDIR)/tmp $(CURDIR)/platforms/big_endian/phondata-manifest + mv $(CURDIR)/tmp/* $(CURDIR)/espeak-data + rmdir $(CURDIR)/tmp + + cd dictsource && \ + for voice in $(voicelist); do \ + $(CURDIR)/src/speak --compile=$$voice; \ + done touch build-stamp -clean: +clean: unpatch dh_testdir dh_testroot rm -f build-stamp -cd src && $(MAKE) distclean + -cd platforms/big_endian && $(MAKE) clean dh_clean @@ -42,6 +61,7 @@ install: build install -m 755 -o root -g root src/espeak $(CURDIR)/debian/espeak/usr/bin/espeak cp -r espeak-data $(CURDIR)/debian/espeak-data/usr/share + rm -r $(CURDIR)/debian/espeak-data/usr/share/espeak-data/voices/mb find $(CURDIR)/debian/espeak-data/usr/share -type f -exec chmod 644 {} \; find $(CURDIR)/debian/espeak-data/usr/share -type d -exec chmod 755 {} \; install -m 644 -o root -g root src/$(soname).$(version) $(CURDIR)/debian/libespeak1/usr/lib/$(soname).$(version) @@ -65,12 +85,12 @@ binary-arch: build install dh_strip dh_compress dh_fixperms - dh_makeshlibs -V + dh_makeshlibs dh_shlibdeps -L libespeak1 -l debian/libespeak1/usr/lib - dh_installdeb -v + dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install +.PHONY: build clean binary-indep binary-arch binary install configure diff -pruN 1.26-1/dictsource/af_list 1.29-0ubuntu2/dictsource/af_list --- 1.26-1/dictsource/af_list 2007-06-06 14:48:48.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/af_list 2007-08-14 12:36:26.000000000 +0100 @@ -75,7 +75,7 @@ _8X 'tax2tIx2 _9X 'ne@x2@ntIx2 _0C 'hOn@rt _0M1 'd'Yys@nt -_0M2 'mIljun +_0M2 mIlj'un _0M3 mIlj'art _0and _!En _dpt 'pWnt @@ -91,6 +91,8 @@ brittanje $2 ceylon s@lOn china S'ina engeland 'EN@lant +jerusalem j@r'ysalEm +kanada kanad%a kongo kONgu mesopotamië mEsuput'A:mi@ mosambiek musamb'ik @@ -100,14 +102,19 @@ europa Y@r'o@pa portugal $1 pretoria prit'o@ria stellenbosch st%&l@mbOs +upington apiNt@n worcester v'ust@r // People names Abiméleg abin'e@lEx2 +abraham A:bram +alida al'ida +allah %alA: André 'andreI annette an'Et +antoinette antun'Et aucamp @Ukamp benjamin bEndZ@m@n bester b'Est@r @@ -116,19 +123,29 @@ bothma bOtma breytenbach breIt@nbax2 carl kA:r@L charles _^_EN +charlie tSA:li +chopin S%OpA~ chris krIs christo krIstu christian krIstian christine kr@st'i:n coetzee kuts'e@ +cronjé krOnj'e@ debora d@bo@ra der d@r deventer d'e@v@nt@r +du $u +(du pisanie) du||pis'A:ni +(du plessis) du||pl@s'i +(du preez) d@||pr'e@ +(du toit) d@||toI elize il'i:z esegiël is'e@x2i_@l estelle %ist&l +etienne Eti@n eugene judZ'i:n eugène yZ'En +farao fA:ro@ ferreira f@r&:r@ fourie fur'i francois franSwa @@ -137,12 +154,21 @@ george _^_EN gerhard x2&rart grange x2rA:nsi gustav gustaf -jacobus jako@bWs +haydn hAId@n +helena hil'e@na +hilde hild@ +ilse 'ilz@ jacques ZA:k +james _^_EN +jane _^_EN jean ZA~n jesus ji:sWs joey dZ@Ui john _^_EN +jordaan $2 +josef jo@s@f +langenhoven laN@nho@f@n +lategan lA:t@x2an le l@ leandra li'andra leroux l@ru @@ -151,38 +177,51 @@ levi le@fi louis luI louise luw'i:z louw l'@U -maria mar'ia +marie mA:ri +marius mA:riWs +martha marta martin m'A:rt@n +michelle miS'&l michiel $2 +mostert m'Ost@rt +mozart mo@tsart +naomi na_'o@mi natasha n%at'aSa +naudé nOd'e@ paul p@Ul paulus p@UlWs +philip fIl@p pierre p'e@r petrus pe@trWs phoebe fi:bi -preez pr'e@ +rachmaninoff rax2m'aninOf rebekka r@bEka ronel run'&l rousseau r@s@U roux r'u schalk sk'alk scheepers ske@p@rs +schoeman skuman schoor sko@r +schutte skWt@ shakespeare _^_EN +tania tanja +telemann te@l@man terblanche t@rblA:nS theron tr'On viljoen $2 villiers vIli@rs +violet _^_EN $capital marais mar'E: mandela mand'E:la celliers sIlj'e@ joubert jub'&:r -plessis pl@s'i +scarlatti $2 schalkwyk skalkveIk +schreiner SraIn@r tony t@Uni xhosa kO:za -toit toI khumalo kum'A:lu @@ -202,10 +241,9 @@ sal $u sou $u kan $u $strend kon $u $strend -wil $u $strend +wil $u $strend $only word $u gaan $u $only -kry $u // conjunctions and questions @@ -228,20 +266,22 @@ desondanks dEs?OndaNks $pause ondanks 'OndaNks $pause verder f'&rd@r $pause nogtans $pause +inteendeel $2 $pause intussen $pause omdat $pause sodat $pause voordat $pause nadat $pause -totdat $pause +ofskoon $2 $pause +totdat tOdat $pause as ,as $pause soos $pause -solank $pause +solank s%o@laNk $pause sodra $pause sowel so@v'&l sedert $pause alhoewel alhuv'&l $pause -tensy $pause +tensy $2 $pause aangesien $pause wie $pause wanneer $pause @@ -274,7 +314,6 @@ voor $u $strend2 // misc unstressed de d@ -du $u dat $u $strend te t@ nie $unstressend @@ -331,17 +370,19 @@ bv beIf'o@rbe@lt aanbid $2 aanstaande $2 -agenda ax2'Enda +adagio ad'A:dZi;%@U +algaande $2 algehele alx2@h,e@l@ alles al@s +alreeds $2 alternatiewe $4 amen A:mEn anatomie $4 asof asOf -asook aso@k +asook %as_o@k +aspris $2 asseblief as@bl'if babelaas bab@lA:s -bedjie bE:ici beide beId@ belangriker b@laNr@k,Ir belangrikst@ b@laNr@kst@ @@ -349,29 +390,28 @@ bene be@n@ beswil bEsv@l bêre b&:r@ beskryf b@skr'eIf -beste bEst@ bestes bEst@s betekenis b@te@k@n@s bewe be@v@ bewend be@v@nt bewering b@ve@rIN -biblioteek $4 bostaande b'o@stA:nd@ +cabernet kab@rn'eI +camembert kam@mb'&:r dadelik dA:d@lIk darem dar@m derde d&:rd@ dekade dEk'A:d@ deurgaans $1 -diegene dix2,e@n@ dikwels dIkv@ls diplomasie d@plo@mas'i dusver dWsf&r +eenkeer $1 effense Ef@ns@ ekself %&ks'&lf -ekstra $1 - +ekstra Ekstra elders &ld@rs elite il'i:t enige e@nIx2@ @@ -384,8 +424,12 @@ exodus Eks'o@dWs figuur f@x2yr finalis $3 finaliste $3 +frontaal $2 +frontale $2 +g'n x2In garages g@rA:dZ@s +gawes x2A:v@s gee x2e@ geen x2e@n gegewens x2@x2e@v@ns @@ -395,53 +439,57 @@ genesis x2e@n@s@s //gesamentlik x2@sA:m@ntl@k gooi x2OI gomorra x2@mOra +graffiti graf'iti hallo h'Il,@U hanteer $2 +hardop hart?Op heeltemal he@lt@mal heengaan he@nx2A:n hek h&k hekke h&k@ helaas he@l'A:s -hele he@l@ here he@r@ +hiernamaals hi:rn'A:mA:ls +hierso hi:rsO +hoera hur'A: hoewel huv'&l +hokaai hOkAI hoofsaaklik $2 -hotel hut'&l idee $2 ietwat itvat ignoreer ix2no@r'e@r inagneming @nax2ne@m@N -inderdaad @nd@rd'A:t ingang Inx2aN +inkluis $2 intens @nt'Ens intensiteit $4 -joernalis $3 +jawoord jA:vo@rt kafee kaf'e@ -kantoor $2 kapitaal kapit'A:l -kollega kul'e@x2a komaan kOmA:n komberse kOmb'&rs@ kombers kOmb'&rs kopiereg kup'ir&x2 -krediet kr@dit kritiek krIt'ik kultuur $2 kunsmatige kWnsm'A:t@x2@ +kwansuis $2 latere l'A:t@r@ lekker l&k@r lekkerder l&k@rd@r lekkerste l&k@rst@ +macaroni makar'o@ni +madame mad'A:m makabere m%ak'A:b@r@ -matige mA:t@x2@ meegee me@x2e@ +merlot m&rl'o@ militêre mIl@t'&:r@ minister m@nIst@r minute m@nyt@ @@ -454,6 +502,7 @@ motor mo@t@r motortjie mo@t@rki nadele nA:de@l@ +namens nA:m@ns nature nat'yr@ nalatigheid nA:l'A:t@x2eIt namate $2 @@ -463,14 +512,14 @@ netjiese nEicis@ netsowel nEtso@v&l nietemin n'it@m@n nobelprys $2 -nogal nOx2al normale nOrm'A:l@ november $2 numeri nWm@ri +oeuvre W:vr@ omtrent Omtr'Ent onbegrip $1 -onderstebo On@rst@b,o@ +onderweg $3 onderwyser $3 ongeag $1 ongeduld $1 @@ -482,21 +531,23 @@ ongewens $1 ongewensde $3 ongewoons $1 onkunde $1 -onlangs $1 onmag $1 onmin $1 +oplaas $2 onraad $1 onrus $1 oorkom $2 oorleef $2 +oorsee $2 +oorsese $2 oorspronklike $2 -oranje $2 patriotisme patri|ut'Ism@ -parlement parl@m'Ent penorent pEno@rEnt per pIr persent p@rsEnt +pinotage pinut'A:Z +prakseer $2 program prux2r'am reeds re@ts @@ -510,16 +561,15 @@ rukkerig rWk@r@x2 samelewing sA:m@l,e@v@N sedert se@d@rt sektore $2 +skares skA:r@s skepsele skEps@l@ -s'n s'@n +s'n s@n $u sobere s'o@b@r@ sombere s'Omb@r@ sodra so@dr'A: sogenaamde s'o@x2@n,A:md@ -soldaat $2 -soldate $2 -sononder sOn,On@r -sonop sOn,Op +sononder sOn_On@r +sonop sOn_Op sover so@f&r spesmaas $2 stabiel stab'il @@ -538,21 +588,20 @@ totsiens $2 uitdagings YydA:x2@Ns uitdaging YydA:x2@N uiteindelik $2 +uiteraard Yyt@r_'A:rt vaarwel fA:rv'&l vanaf fanaf -vandag $2 -vandaan $2 -vanjaar $2 -vanoggend fan'Ox2@nt -vanuit fan'Yyt +vandat $1 +vanne fan@ veraf f&r_af verafgeleë f&rafx2@le@@ verantwoordelikheid f@rantv'o@rd@l@keIt +verby f@rbeI verdere f&rd@r@ vere fe@r@ vererger f@r&rg@r -ver f&r +ver f'&:r verg f&rx2 vergete f@rx2e@t@ vergewe f@rx2e@v@ @@ -565,17 +614,23 @@ vers f&:rs verste f&rst@ verte f&rt@ via via +volheid $1 +voluit fOl_Yyt volwassenes fOlv'as@n@s voorgee fo@rx2e@ +voorkeer $1 voorkom $2 voormalige fo@rm'A:l@x2@ voorsien $2 +voorwaar $2 +vorendag $3 vorige fo@r@x2@ vrek fr&k waarskynlik $2 waarskynlike $2 wangedrag vanx2@drax2 -weg v&x2 +weergalm $2 +weerklink $2 weggewens v&x2@v'E:ns diff -pruN 1.26-1/dictsource/af_rules 1.29-0ubuntu2/dictsource/af_rules --- 1.26-1/dictsource/af_rules 2007-06-06 14:49:01.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/af_rules 2007-08-14 12:36:46.000000000 +0100 @@ -1,122 +1,156 @@ -//maintainer: Willem van der Walt +//maintainer: Willem van der Walt // email: wvdwalt@csir.co.za // tel: +27 12 8413996 // Meraka Institute, CSIR //With contributions by Christo de Klerk +// 2-letter groups for: +// aa, an, be, ge, ka, ko, me, on, oo, re, st, te + .group a _C) a (Cie_ 'A: a A: + AC) a (_ %a // short final a in words like: Eva/Pieta/(su)sara + %C) a (_ %a // short final a in words like: Bella/Betta/gogga + &b) a (_ %a // short final a: mamba and compounds/marimba/hamba + &d) a (_ %a // short, unstressed a after d at end of word: soda/padda... and compounds + i) a (_ %a // a short and unstressed in words ending in ia: laboratoria/millennia + &r) a (_ %a // short final a in words ending in -ra: infra/mantra/sentra, etc. + &dr) a (_ A: // exceptwrds ending in -dra: ingedra/oorgedra, etc. + &vr) a (_ A: // and wrds ending in -vra: oorgevra/uitgevra/vasvra, etc. + &t) a (_ %a // short final a: basta/delta/junta/pasta/many names a (C a C) a (Csier %a // (ge)finansier/kassier - j) a (pan %a //japan first a sound and stress + j) a (pan %a //japan first a sound and stress C) abie 'A:bi - _) a (bC %a // abdy/ablatief/ablusie/abstrak, etdc. - @) adig 'A:d@x2 // misdadiger/gewelddadigheid/kragdadigheid + abo (C %abO // move default stress and fix a and o sounds: abominasie/abonnement/aborsie + _) a (bC %a // abdy/ablatief/ablusie/abstrak, etc. + _) a (bba a // restore default stress: (ge)abba/abbamandjie, etc. + abse (s %apsE // fix stress and e sound: abses/-se + @) adig 'A:d@x2 // misdadiger/gewelddadigheid/kragdadigheid C) adium A:diWm // compounds of stadium/radium + C) a (Cia_ A: // stadia and compounds/Nadia and similar admi (r %atm%i // move default stress: admiraal and compounds C) agie 'A:x2i agter (dogt %ax2t@r // move default stress: agterdogtig and derivitives + agter (oor %ax2t@r_ // move default stress: agteroor/-buig/-druk/-val, etc. &) agtig 'ax2t@x2 // this string almost always carries stress on a a (riA 'A: // akwarium/barium/estuarium/herbarium/seminaria + @C) as (_ as // shorten final a of words ending in -as: rigtingvas/jonkmanskas, etc. C) asie 'A:si a (CAA %a + d) a (goggen %a //saterdagoggend and friends a (Cie A: // apies/middagslapie a (Cy %a a (CA A: - _) aka a%k@ //akademie etc. - akkedis a%k@d'Is //akkedis and compounds - aa A: + _) aka a%k@ //akademie etc. + akkedis a%k@d'Is //akkedis and compounds ae A: //should be A:@ but sounds wrong + konst) abel A:b@l //exception for konstabel in compounds + t) abel %ab&l //tabelopskrif temperatuurtabel etc. + spekt) abel 'A:b@l // respektabel/-e/-heid/-ste + t) abell %ab&l //tabelle fix double l + w) a (tering A: //watering exception to the rest + C) a (tering %a //short unstressed a before tering formatering etc. except watering ai aI - aai AI - adres %adrEs // fix last e sound of adres as last part of compounds + adres %adrEs // fix last e sound of adres as last part of compounds + alfabe (tK alfabE // fix stress and e sound: (vinger)alfabet/-te + alfabe (tA %alf%abe@ // fix stress and e sound: alfabeties/-e/alfabetiseer _) alle (C al@ // alledaags/e/allerhande + alma (nak %alm%a // move default stress: almanak/-ke and compounds _) alom (@ al?Om // shorten a sound: alombekend, etc. alu (minium %al%u // move stress: aluminium and compounds _) al (we %al // stress: alweer/alwetend/-heid - _k) a (nA %a //kanon and others + _k) a (nA %a //kanon and others - apart ap'art + apart ap'art _) a (po %a // apologie/apollo/apostel + apoka (l %ap%Ok%a // fix stress and vowel sounds: apokalips/apokalipties/-e appar (A %ap@r // apparaat/apparate and compounds - appèl ap'&l + appèl ap'&l appen (diC %apEn // appendiks/-e/appendix - _) ap (C %ap // april/apteek/apteker and compounds - _) app ap // restore default stress: appel and compounds + _) a (pC %a // april/apteek/apteker and compounds + _) app (A ap // restore default stress: appel and compounds area A:ria // are0+a/kiesareas + a (siel %a // shorten a sound and move default stress: asiel and compounds + assu (ran %as%W // move stress: assuransie and compounds au aU // ?? atten (d at@n // compounds ending in bevattend etc. at (le %at // atleet and compounds atle (tiek %atl@ // atletiek and compounds + _p) ad (A at //words starting with pad austra o@str,A: antering %ante@r@N //hantering in compounds - _tr) a (ns %a //transvaal, transformeer etc. stres + _tr) a (ns %a //transvaal, transformeer etc. stres avon (t ,avOn //avontuur and friends - aangee (+ 'A:nx2e@ // see rule: _) aange (@P5 A:nx@ - _) aange (@P5 'A:nx2@ // added stress mark to ensure stress on aan - aan (g A:n // aangaan/aangaap/aangroei/aangryp - aan (lok %A:n // move default stress: aanloklik/-heid - aan (lok_N A:n // restore default stress: aanlok - aan (sien %A:n // stress on 2nd slb - aan (sien_N 'A:n // stress on 1st slb - aan (skou A:n' // stress aanskou/lik - aanste (llerig A:nst'& // aanstellerig/-e|-heid - aansterk 'A:nst&rk // aansterk/ing - aan (stoot %A:n // stress on 2nd slb.: aanstootlik - aan (stoot_N A:n // stress on 1st slb.: aanstoot - aan (trek %A:n // move default stress: aantreklik/-heid - aan (trek_N A:n // restore default stress: aantrek - aan (vaar %A:n // aanvaar/de/baar - aan (vank A:n' // stress aanvanklik/e - aanwen (d 'A:nvEn // to correct pronunciation of e - aanwen (_ 'A:nvEn // to correct pronunciation of e in aanwen/aanwending _) af (@P2 'af // afbreek/afdwaal/afdwing C) afel (@ A:f@l // compounds starting with tafel/ontrafeling/uitrafeling _) a (ffA %a // move default stress: affêre and compounds/affekteer + affro (nt %afr%O // fix stress: affronteer/-tasie afgee (+ 'afx2e@ // see rule: _) afge (@P4 afx2@ _) afge (@P4 'afx2@ // stress on 1st slb + afgryslik %afx2reIsl@k // move default stress: afgryslik and derivitives vs. afgrys/-e + af (hank %af // move default stress: afhanklik/-e/-heid, etc. + _) af (komstig %af // move default stress: afkomstig afrik (aan %afr%ik // exception to af prefix and move stress to end afrikaner %afr%ikA:n@r // move stress to end: Afrikaner and compounds afrika A:frika //Stress and 1st a sound: Afrika and compounds: Afrikatale/-state... + af (skuw %af // move default stress: afskuwelik and derivitives vs afsku + afstootl %afsto@tl // move default stress: afstootlik/-e/-heid/-ste + af (sydig %af // fix stress: afsydig/-e/-heid afwesig %afve@s@x2 // to steer clear of pre- and suffixes af (wagten %af // move default stress: afwagtend/-e - _) agterge (@P7 'ax2t@rx2@ + agenda %ax2End%a // fix stress and 1st a sound: agenda/-s/-punt, etc. + a (gonie %a // fix 1st a sound and move default stress: agonies/-e + agonie (_N %ax2%uni // move stress to end: agonie + agter (bak %ax2t@r // fix stress: agterbaks/-e/-heid + agter (e ''ax2t@r- // force stress to 1st slb, insert short pause: agterent/-e + _) agterge (@P7 'ax2t@rx2@ + agter (midda %ax2t@r // fix stress: agtermiddag/-s/agtermiddae agterna ax2t@rn'A: // agterna/-kyk/-loop/-sit/-staar + agter (uit %ax2t@r? // move default stress: agteruit/-boer/-gang/-ry... + agter (volg %ax2t@r // move default stress: agtervolg/-ers/-ing + _) agt (uur ax2t // restore default stress; exception to "tuur" rule: agtuur and compounds a (djie aI - aan (djie AIN - aan (tjie AIN aen (tjie AIN adjie AIci atjie aIci - aadjie AIci - aatjie AIci - st) a (tist a //statistiek and friends + st) a (tist a //statistiek and friends AC) adies 'A:dis // move default stress: nomadies/sporadiese adjunk adj'WNk a (dres a' // stress adres/se -// adresseer adrEs'e@r // stress +// adresseer adrEs'e@r // stress admini %atm@n@ // administrasie/administratief/administratiewe - agent ax2'Ent + agent %ax2Ent + _) a (ku %a // shorten a sound and move default stress: akute/-r + a (larm %a // shorten 1st a sound and fix stress: alarm and compounds + _) al (ewig %al; // shorten 1st a sound and move default stress: alewig/-e algemeen 'alx2@m,e@n + a (liteit %a // short unstressed a before liteit: munisipaliteit and many similar alleen %ale@n // to handel stress in compounds with alleen alleni (g %ale@n@ // fix stress and e sound: allenig and derivitives, eg. allenigheid + aller (gie %al&r // fix stress: allergies/-e + aller (gie_N %al@r // fix stress and 1st e sound: allergie and compounds + a (llure %a // move default stress and shorten 1st a sound: allure/-s amandel am'and@l // amandel/s/-poeding/-tert... + ambu (l %amb%y // fix stress: ambulans and compounds/ambulant, etc. _) am (A %am // amorfe/amok/amortisasie/amalgamasie amer (ik %ame@r // Amerika/Amerikaner _) am (nA %am // amnestie/amnesie + _) amper amp@r // fix e sound in words like: amperbroekie/amperse/ampertjies ampi (oen %amp%i // kampioen/sampioen and compounds amus (e %am%ys // shorten a and move stress anoniem anun'im _) ar (gi %ar // argief and compounds/argiewe _) ar (giC %ar% // argitek and compounds _) arkad %arkA:d // arkade/arkadia + _) armes ar?m@s // fix e sound: armes/armesorg _) ar (om %ar // aroma/aromaties arres (_ %arEs // arres/huisarres arre (stA %ar@ // arrestasie/arresteer @@ -126,27 +160,64 @@ _) a (strA %a // astrant/astrale/astraal artille (rie %art@l@ // stress and vowel sounds: artillerie and compounds asem A:s@m // asemgehaal/asemhaling/asemteug/ontwaseming + _) as (ke %as // move default stress: askeet/askete/asketies/askese assist %as@st // assistent/e/assisteer atten (C at'En // attent/heid/onattent/attensies @) ator (K 'A:tOr // katalisator/diktatorskap and many similar augustus Ox2'WstWs avokado %af%ukA:du // stress and o sounds avokade %af%ukA:d@ // variant form of avokado + C) a (xA+ a // shorten a before x: taxi and compounds/praxi/saxofoon ay (_ _^_EN // words ending in ay are English ays (_ _^_EN // words ending in ays are English + +.group aa + aa A: + aai AI + aangee (+ 'A:nx2e@ // see rule: _) aange (@P5 A:nx@ + _) aange (@P5 'A:nx2@ // added stress mark to ensure stress on aan + aandoenlik %A:ndunl@k // move default stress: aandoenlik and derivitives, vs. aandoen + aand (rok A:nt_ // fix d sound: aandrok/-ke/-kie + aan (een %A:n? // stress and short break between slbs.: aaneen/-gestrengel + aan (g A:n // aangaan/aangaap/aangroei/aangryp + aan (hangig %A:n // move default stress: aanhangig vs. aanhang + aan (houden %A:n // move default stress: aanhoudend/-e + aan (lok %A:n // move default stress: aanloklik/-heid + aan (lok_N A:n // restore default stress: aanlok + aannem (A A:ne@m // fix e sound: aanneming/aannemer/aannemeling and compounds + aan (pasba %A:n // move default stress: aanpasbaar/aanpasbare, etc. + aan (sien %A:n // stress on 2nd slb + aan (sien_N 'A:n // stress on 1st slb + aan (skou A:n' // stress aanskou/lik + aansteekl %A:nste@kl // move default stress: aansteeklik/-e, vs. aansteek + aanste (llerig A:nst'& // aanstellerig/-e|-heid + aansterk 'A:nst&rk // aansterk/ing + aan (stoot %A:n // stress on 2nd slb.: aanstootlik + aan (stoot_N A:n // stress on 1st slb.: aanstoot + aantreklik %A:ntr&kl@k // move default stress: aantreklik/-heid + aan (trek_N A:n // restore default stress: aantrek + aan (vaar %A:n // aanvaar/de/baar + aan (vank A:n' // stress aanvanklik/e + aanwen (d 'A:nvEn // to correct pronunciation of e + aanwen (_ 'A:nvEn // to correct pronunciation of e in aanwen/aanwending + aan (djie AIN + aan (tjie AIN + aadjie AIci + aatjie AIci + // The following are experimental nasalisation of aans: aans (_ 'A~ns aanse (_ 'A~ns@ - + .group an an (djie+ aIN ange (lier %aN@ // angelier/-e and compounds an (gina %aN // move default stress, fix n/g sounds: angina angl (A %A~Nx2l% // anglikaans/anglisisme/anglofiel - angola A~Nx2'o@la //Angola, Angolabos etc. - angol (e %A~Nx2%ul //Angolese etc. - an (tjie aIN + angola A~Nx2'o@la //Angola, Angolabos etc. + angol (e %A~Nx2%ul //Angolese etc. + an (tjie aIN _) ana ,ana // words starting with ana starts destressed // The following are experimental nasalisation of ans d) ans A~ns @@ -155,17 +226,14 @@ k) ans A~ns l) ans A~ns kr) ans A~ns - + + .group b b b b (b b (_N p - be (amp b@? // fix e sound in compounds ending in beampte - @) beeldig b'e@ld@x2 // denkbeeldig/voorbeeldig - bei beI // beier/beitel - _) be (@P2 b@ - @) be (C b@ - C) be (rsie b'&: //kombersie etc. + b (eentjie++ b // exception to "bee" rule: beentjie/-s and compounds + @) baarlik b'A:rl@k // move default stress: wonderbaarlik/-e/-heid/-ste band (A bant // fix t sound: bandomslag/-ontwerp/-opname band (e band // fix d sound: bandeverkoper moterbande etc. @) ba (ren b'A: // onrusbarend/opsienbarend and derivitives @@ -173,34 +241,7 @@ ba (riton ba // shorten a sound: bariton and compounds basi (s bA:s@ // basis and compounds batal (jon b%at%al // shorten 1st a sound, moved stress: bataljon and compounds - bene (r be@n@ //benerig/e - be (C%+ bE // beffie/bessie/bennie/bettie/blombeddings - re) be (lK+ b& // fix e sounds: rebel/-le/-lie - _) be (Cy b@ // bely/beny/betyds - bes (ie_ be@s //sonbesie duinebesie etc. - bes (ies_ be@s //sonbesies duinebesies etc. - bed (l bEt // bedlamp/bedliggie/dubbelbedlaken - bed (rand bEt // fix e and first d sounds - bed (s bEt // bedsitkamer/bedsprei/gebedsdag - @) bed (_ bEt // bruidsbed/dubbelbed; many compounds ending in bed - be (de_ be@ // bede/gebede - bedel be@d@l // bedel/gebedel/bedelaar - bedeling b@de@l@N //bedeling and compounds - bedev be@d@f // bedevaart and compounds - beger (A b@x2e@r // begerig/begerend and compounds - bekk (+ b&k // exception to be (C%+ bE - bek (_ b&k // exception to be (C%+ bE - beken b@kEn // 2nd e sound: oorbekend/welbekende - @) beker (_ be@k@r // compounds ending with -beker - bell b&l // inbeller/oorbelle/seepbelle - _) bel (C b&l // Belgies/belhamel - bere (_ be@r@ //tediebere pandabere etc. - be (weging b@ // draaibeweging/swaaibeweging - bewende be@v@nd@ // first e pronounced long - bewe (rig be@v@ // fix e sound and stress: bewerig/-e/-heid - bewing be@v@N // (aard)bewing/s - @) bewys b@veIs // "be" in rybewys/lisensiebewys/geboortebewys - bobbe (j b%Ob@ //fix stress for bobbejaan and friends + bobbe (j b%Ob@ //fix stress for bobbejaan and friends bonde (C bOnd@ // verbondenheid/bondeldraer/gebondene/saambondelend _) bor (dA@ b%Or // geborduur/bordeel/bordele @@ -208,12 +249,13 @@ bowen bo@v@n' // bowenal/bowendien brand (o brant? // brandoefening/brandoffer/sonbrandolie brasi (li br%asI // BrasiliëBrisiliaan/-s/-e + brav (A br%av // stress and v sound: bravade/bravo _) byge (@P4 b'eIx2@ by (kom@ b%eI // bykomende/bykomstige badjie baIci - baba b'A:ba + baba bA:ba ba (lans b%a // move default stress balan (seer b%al%an // move stress to -eer ba (ldadig b%a // move default stress: baldadig and derivitives @@ -232,6 +274,78 @@ bar (bA b%ar // barbaar/barbare and derivitives/barbier and compounds baklei b@kl'eI // baklei/er + bibli (oC b@bl%i:% // biblioteek and compounds/biblioteke/bibliofiel/bibliografie... + bidd b'Id // biddag/aanbidding + bid bIt_ // biduur/aanbid + binne bIn@ // binnekom/binnelandse + bi (sar b%i // move default stress: bisar/-re + bla (tant bl%a // shorten 1st a and move default stress: blatant/-e/-heid + @) ble (_ _^_EN // words ending in ble is English + bloe (ddors@ bl%u // bloeddorstig and derivitives, but bloeddors + bloed (stol bl%ut // move default stress: bloedstollend/-e + blon (dine bl%On // move default stress: blondine/-s + bly (moed bl%eI // move default stress: blymoedig/-e/-heid + bo (botie b%u // fix stress and 1st o sound: bobotie and compounds + boeke (t b%ukE //move default stress and fix 2nd e sound: boeket and compounds + boepens b''upe~ns // fix stress, nasal e: boepens and compounds + boere bur@ // many compounds with boere + bo (haai b%u // fix stress and o sound: bohaai and compounds + bo (he b%u // fix stress: boheems/boheme + bok (ooi bOk_ // bokooi/e/ribbokooi/boerbokooi + bo (tanie b%o@ // stress on 2nd slb.: botanies/-e + bota (nie_N b%o@t%a // stress on 3rd slb.: botanie + _) bowe b''o@v@ // fix e sound in compounds: boweaards/bowemaans/bowetoon + buiten (ge b'Yyt@n // buitengewoon/s/buitengewone/buitengemeen + buiten (t bYyt@n // restore default stress: buitentoe/buitentyds + buiten bYyt@n' // buitendien/buitensporig + buite b'Yyt@ // buitelandse/buitestander/buitew�eld + bybel beIb@l // to correct pronunc. of e in compounds + byder (C@ b%eId@r // byderhand/-s/byderwets + by (een b%eI_ // move default stress: byeen/byeenkoms/-te, etc. + byge (low b%eIx2@ // move default stress: bygelowig/-e/-heid + by (voorb b%eI// move default stress + +.group be + _) be (_ b@ // words broken at end of line: be- + be (amp b@? // fix e sound in compounds ending in beampte + beau b@U //Beaufortwes and others + @) beeldig b'e@ld@x2 // denkbeeldig/voorbeeldig + bei beI // beier/beitel + _) be (@P2 b@ + @) be (C b@ + C) be (rsie b'&: //kombersie etc. + bene (r be@n@ //benerig/e + be (C%+ bE // beffie/bessie/bennie/bettie/blombeddings + re) be (lK+ b& // fix e sounds: rebel/-le/-lie + _) be (Cy b@ // bely/beny/betyds + bes (ie_ be@s //sonbesie duinebesie etc. + bes (ies_ be@s //sonbesies duinebesies etc. + bedjie bE:ici // (ge)bedjie/-s/bababedjie + bed (k bEt // bedkassie/bedkaartjie/bedkatel/bedkussing + bed (l bEt // bedlamp/bedliggie/dubbelbedlaken + bed (rand bEt // fix e and first d sounds + bed (s bEt // bedsitkamer/bedsprei/gebedsdag + bed (t bE // fix e and d sounds: bedtafeltjie/bedtyd + @) bed (_ bEt // bruidsbed/dubbelbed; many compounds ending in bed + be (de_ be@ // bede/gebede + bedel be@d@l // bedel/gebedel/bedelaar + bedeling b@de@l@N //bedeling and compounds + bedev be@d@f // bedevaart and compounds + beger (A b@x2e@r // begerig/begerend and compounds + bekk (+ b&k // exception to be (C%+ bE + bek (_ b&k // exception to be (C%+ bE + beken b@kEn // 2nd e sound: oorbekend/welbekende + @) beker (_ be@k@r // compounds ending with -beker + r) bel b&l // fix e sound: deurbel/oorbel + bell (+ b&l // inbeller/oorbelle/seepbelle + _) bel (C b&l // Belgies/belhamel + bere (_ be@r@ //tediebere pandabere etc. + beste (_ bEst@ // fix e sound: beste/allerbeste/naasbeste/-s + be (weging b@ // draaibeweging/swaaibeweging + bewende be@v@nd@ // first e pronounced long + bewe (rig be@v@ // fix e sound and stress: bewerig/-e/-heid + bewing be@v@N // (aard)bewing/s + @) bewys b@veIs // "be" in rybewys/lisensiebewys/geboortebewys bee (+ be@ @) beer (_ b'e@r // absorbeer/inhibeer, etc. teddie) beer be@r // restore default stress @@ -245,28 +359,13 @@ skrob) bering b'e@r@N // skrobbering beu (C bY@ // beur/beuke/beul - besig b'e@s@x2 + besig be@s@x2 bessie bEsi berg b&rx2 berge b&rg@ besem be@s@m besering =b@se@r@N // besering/s/kniebesering... beter b'e@t@r - bidd b'Id // biddag/aanbidding - bid b'It_ // biduur/aanbid - binne bIn@ // binnekom/binnelandse - bi (sar b%i // move default stress: bisar/-re - bla (tant bl%a // shorten 1st a and move default stress: blatant/-e/-heid - @) ble (_ _^_EN // words ending in ble is English - bloe (ddors@ bl%u // bloeddorstig and derivitives, but bloeddors - boeke (t b%ukE //move default stress and fix 2nd e sound: boeket and compounds - boere bur@ // many compounds with boere - bok (ooi bOk_ // bokooi/e/ribbokooi/boerbokooi - buiten (ge b'Yyt@n // buitengewoon/s/buitengewone/buitengemeen - buiten bYyt@n' // buitendien/buitensporig - buite b'Yyt@ // buitelandse/buitestander/buitew�eld - bybel beIb@l // to correct pronunc. of e in compounds - by (voorb b%eI// move default stress .group c @@ -276,58 +375,76 @@ c (i s c (y s ce (_ _^_EN // words ending in ce are English - ch x + ch x2 _) ch x2 - chalet S%aleI // chalet/-s/bergchalet - ch (ol k //cholera, cholestrol etc. + chalet S%aleI // chalet/-s/bergchalet + ch (ol k //cholera, cholestrol etc. + ch (l k // chloor and compounds ch (ro k chat _^_EN + ck k // ck pronounced as single k sound @) ci (_ s'i // plurals ending in -ci @) cel (_ _^_EN // words ending in cel is English @) cle (_ _^_EN // words ending in cle is English + cliché kl%iSe@ // cliché/-s chirurg S@r'Wrx2 + coke k@Uk // coke/cokebottel/cokeblikkie and similar cy (_ _^_EN // words ending in cy are English - chin (e S%in //chinees, chinese + chin (e S%in //chinees, chinese .group d d d d (d dd d // gladde/midde/kudde/opskudding + daarop (v d%A:r%Op // move default stress: daaropvolgend/-e aan) dag (tig d'ax2 // accent on dag dani (gh d'A:n@ // -hoedanigheid/hoedanighede/onderdanigheid @) dant d'ant // dant takes stress: kommandant/pruimedant _) de (klass de@ // deklassifikasie/gedeklassifiseer de (moCr d%E // demokraat/demokrasie/-ë/demokraties/demografie + demone d%imo@n@ // fix stress and vowel sounds: demone and compounds, eg. demonegeloof dekade (n dEkad'E dekade (s dEk'A:d@ + dekant (_ d@kant //try fix suidekant _) deli (ka d%El%i // delikaat/delikate @) dend (er d@nd // beduidender/behoudender @) dend (ste d@nt // beduidendste/behoudendste &) denis d@n@s // geskiedenisboek/kultuurgeskiedenis/belydenis/beduidenis + @) dente (@ dEnt@ // fix connecting e in compounds like studenteoptog/-opvoering de (press d%i // depressie/depressief/depressiewe @) derd (_ d@rt // verouderd/afgesonderd/gevorderd + _) der (duiC d%&r // move default stress: derduisende/derduiwel @) dderd (_ d@rt // ontredderd, se rule: dd d _) derge d&rx2@ // dergelik/-e + desibel dEsib&l // fix vowel sounds: desibel/-s + deur (bo d%Y@r // move default stress: deurboor/deurborende deur (dring@ d%y@r // move default stress: deurdringend/-e deur (lop@ d%y@r // move default stress: deurlopend/-e + deur (priem d%Y@r // move default stress: deurpriem/-de deur (sigt d%y@r // move default stress: deursigtig/-e + deur (skyn d%Y@r // move default stress: deurskynende/deurskynde + deur (skyn_N dY@r // restore default stress: deurskyn deur (weeC d%y@r // move default stress: deurweef/deurweek/-te diaken d%iA:k@n // diaken and compounds + dia (lo d%i_%a // move default stress: dialoog/dialoë and compounds dia (m d%i%a // diamant and compounds - di (GK dI // force default stress: GEDIG/-TE/digbundel/digvorm, etc. + di (gK dI // force default stress: GEDIG/-TE/digbundel/digvorm, etc. dilemma d@lEma // dilemma and compounds - &) ding (_S4 dIN + di (namie d%i // move default stress: dinamies/-e + dina (miet d%in%a // stress to 3rd slb.: dinamiet and compounds direk d%irEk // direk/-sie/-te/-theid/indirek... - &) de (_S2 d@ + dirig (e d@r@x2 // fix stress and i sounds: dirigeer/dirigent and compounds + diskre (s d@skrE // fix stress and e sound: diskresie/diskresionêre + divide (nd d@v@dE //dividende etc. &) des (_ d@s d (_N t // dj c // palatal stop d (_dN // next word starts with d, drop the d - deloos d@lo@s - delos d@lo@s + deloos d@lo@s + delos d@lo@s @) dge (_ _^_EN //words ending in dge is English @@ -336,26 +453,36 @@ de (ba d@ // debat/-te/debakel deba (tteer d@b%a // move default stress to end: debatteer debuut d@b'yt // debuut/-bundel/-vertoning + dee (moedig d%e@ // move default stress: deemoedig/-e/-er/-ste/-heid/-ing desember de@s'Emb@r digers d@x2@rs departe (ment d@p%art@ deposito d@pOsitu // stress and vowel sounds: deposito and compounds detail d'i:teIl + di (ssi d@ // move default stress: dissipel/-s + dissi (pl d@s@ // fix stress: dissipline/-s and compounds distri (bu d@str@ // distribusie/distribueer and compounds dis (trik d@s // stress: distrik/-te and compounds _) dode d'o@d@ //dodelik dodemars etc. + doel (tref d%ul // move default stress: doeltreffend/-e/-ste doktor (_ dOkt@r // make last o schwa doku dOky dominee (_ d'o@m@ni domin (A dOmin' // domineer/dominering + _) dom (ACC dOm // fix o sound: domastrant/domonnosel and derivitives + dosi (s do@s@ // fix stress: (oor)dosis/-se; excep. to rule of stress on -is @) d (C t // oudste/benoudste/goudstad/steeds/Sweeds + ge) dw dw// fix d sound: rondgedwaal/deurgedwarrel/deurgedwing, etc. + @) ds (_ ts // fix d sound of wrds ending in -ds: buitentyds, etc. + oo) d (r t // fix d sound: broodrooster/doodryp/loodreg/noodroep p) d (C d // oopdwing/koopdwang ver) d (C d // verdwyn; see rule: @) d (C t @) dd d // beddens/bedding @n) d (ete_ t // aandete/oggendete - @) d (eteC_ t // aand-/oggendetes/grondeter + @) d (eteC_ t // aand-/oggendetes/grondeter djie ci // bokbaardjie/bordjie/boordjie/perdjie/tydjie @) d (r d // but oordrewe/oordrom + han) d (r t // fix d sound: handreiking/-reling/-rug oe) d (r t // bloedrooi/bloedryk/hoedrand/invloedryk toe) d (r d // but: toedrag/toedraai dril (A drIl // fix i sound when vowel follows dril: driloefening/-opleiding @@ -366,53 +493,75 @@ oo) d (A t? // fix d in compounds starting with brood/dood/lood/nood... followed by vowel karoo) d d // but Karoodorp/Karoodoring/Karoodistrik, etc. du (pliC du // duplikaat/dupliseer + duvet d%uveI: // duvet/-s/duvetoortreksel, etc. .group e e e@ e (C E CAC) e (CC @ // fix e sound: nalatenskap/wapenstilstand CAC) e (C% E // beesfilette/nougesette/onderbesette/voortgesette + CAC) e (rkK & // fix e sound: deurgewerk; exception to: CAC) e (CC C) e (mm++ E // geelkoperemmer/wateremmer CAnn) e (CA @ // banneling/sinnebeeld/spinnekop/-rak + Aw) e (bA @ // fix e sound: briewebesteller/diewebende/newebedoeling/skewebek/stywebeen @C) e (bo @ // compounds with boek/boer/boog/boom/bol/bord/borsel/bos/ grondbonebotter/kamdebo... @C) e (bu @ // briewebus/ereburger/novellebundel/urinebuis/woedebui - _) epi (C %Ep%i //episode and others - + @C) e (by @ // fix e sound: statebybel/-s + _) epi (C %Ep%i //episode and others + halw) e (K @ // fix e sound: halwemaan/halwerweë/halwes + liefd) e (C @ // fix e in compounds starting with liefde: -blyk/-daad/-diens/-gawe/-groete/-werk, etc. sp) e (d @ // ekspedisie/gaspedaal/kwispedoor gev) e (gK & // fix e sound in compounds like buitegevegstelling/skietgevegte + And) e (lC @ // fix e sound: swendelfirma/vaandeldraer and similar + @k) e (lde_ @ // fix e sound: gekronkelde/(ge/ver)kreukelde + mp) e (lde_ @ // fix e sound: gemompelde/oorrompelde/verskrompelde and similar + @C) e (lk_ & // fix e sound: many compounds ending in kelk/melk + @C) e (lke_ & // fix e sound: many compounds ending in -elke: blomkelke, etc. + ng) e (nd @ // fix e sound: dringends/dwingends/deurdringender + C) e (pan @ //fix e sound: instrumentepaneel/kolepan/liefdepand @k) e (tt@+ E // menseketting/etikette - sp) e (lonk @ // spelonk/rowerspelonk/spelonkagtig etc. - _k) e (ndh =E // but bekendheid/onbekendheid - @C) e (rh @ //donkerheid/kweperheining/nywerhede/pantserhemp/klapperhaar/suikerhandel/hamerhou + sp) e (lonk @ // spelonk/rowerspelonk/spelonkagtig etc. + _k) e (ndh =E // but bekendheid/onbekendheid + @C) e (rh @ //donkerheid/kweperheining/nywerhede/pantserhemp/klapperhaar/suikerhandel/hamerhou p) e (talje @ // fix stress and 1st e sound: petalje and compounds - l) e (moen @ //fix lemoen and compounds + l) e (moen @ //fix lemoen and compounds + Cy) e (C+ @ // fix connecting e sound in compounds like byekorf/skilderyemuseum, etc. eier eI@r // eiergeel/eierwit/leierfiguur/leiergroep @) ei (sen _'eI // (on)veeleisend/spoedeisend r) ei (sen 'eI // rondreisend C) e (h @ // alpehoring/beukehout/briewehoof/hondehok/tehuis... @C) e (j @ // fix e sound: platejoggie/finalejaarstudent/heksejag/tweedejaar... hand) e (l @ // handelaar/handelsmerk/handelsware and similar - _) e (mi %E - oek) e (C @ // besoekersgetalle/boekekennis/boekenhout/koekepan/snoekerspeler/woekerwet - toek) e (n E // but: toekenning and compounds + _) e (mi %E + oek) e (C @ // besoekersgetalle/boekekennis/boekenhout/koekepan/snoekerspeler/woekerwet + toek) e (n E // but: toekenning and compounds C) e (rj @' // fieterjasies/kerjakker/kaperjolle aw) e (C@ @ // aweregs/dawerend and compounds of dawer/drawertjie/hawer and compounds/hawe and comp. uim) e (C @ // pruimedant/sluimeraar/sluimerend e (CA e@ CCan) e (CA @ // swanepoel/swanesang/tranedal - dier) e (@ @ // dieresorg/-lewe..., many compounds + XCier) e (@ @ // dieresorg/-lewe..., many compounds/PIEREWAAI/-ER luuks) e @ // luukses/luukse and compounds midd) e (@ @ // compounds starting with midde: middedorp/middeooste/middestad/middeweg reus) e (@ @ // correct 2nd e in compounds starting with reuse Cy) e (CC @ // e sound in vryevalformasie/senulyersinrigting/vryerspaartjies C) ede (_ e@d@ // aandgebede/selftevrede C) edes (_ e@d@s // lofredes/hoofredes + j) e (k E // fix e sound: tjek and compounds/windjekker, etc. + C) e (kamp+ @ // fix e sound: (krygs)gevangenekamp/soldatekamp and similar e (kono@ %E // 1st e: ekonome/ekonomie/ekonomies/ekonoom e (mosi %i // emosie/emosioneel, etc. hal) e (rC@ @ // uithalerperd/-skut/-speler and similar C) e (ndh =@ //asemrowendheid/beduidendheid/doeltreffendheid/dringendheid/voortvarendheid... u) eel 'e@l // words ending in ueel take stress on last slb @) eer 'e@r // this string most often has stress + h) eer e@r // words containing heer take default stress: allesoorheersende + gel) eer e@r // words containing geleer take default stress: regsgeleerde + @k) eer e@r // words containing keer take default stress, except for: + ik) eer 'e@r // abdikeer/kommunikeer, etc. + sf) eer e@r // sfeer at end of compounds does not take stress: atmosfeer, etc. + sk) eer e@r // words kontaining skeer take default stress: af/glad/kort/raakgeskeer + Cs) eer e@r // words containing seer (meaning pain) take default stress w) eer e@r // stress may vary in words containing weer: lugafweer/donderweer u) eer 'e@r // aktueer/konstrueer/salueer, etc. effek %e@fEk // move default stress and fix e sound: effek/-te/-tief @@ -421,7 +570,9 @@ sirk) e (l @ // compounds: sirkelgang/sirkelvormig nk) e (lb @ // onwankelbaar/skenkelbeen/sprinkelbesproeiing u) ele (+ 'e@l@ // words ending in uele take stress on penultimate slb + _) erde (C &rd@ // fix connecting e in compounds: erdekruik/-ware and similar _) ere e@r@ // ereamp/erediens/ererol/erevoorsitter + ere (ksiA %e@rE // fix stress and e sounds: ereksie/ereksionele u) ering 'e@r@N // aktuering/konstruering, etc. C) ersyds @rseIts // fix d and e sounds: enersyds/wedersyds, etc. ele (gant ,e@l@ // elegant/onelegant @@ -430,7 +581,7 @@ C) e (ks E C) e (kt E ekstase Ekst'A:s@ // stress ekstase/s - wink) e (l @ // winkelvensters/-sentrum/-personeel/winkelier/winkelhaak + wink) e (l @ // winkelvensters/-sentrum/-personeel/winkelier/winkelhaak C) eloos @lo@s // haweloos/hopeloos/hulpeloos/vlekkeloos C) elose @lo@s@ // hawelose/hopelose/hulpelose/vlekkelose C) ema (_ e@ma // words ending in ema: compounds of skema/tema @@ -441,7 +592,7 @@ _) enorm (A %e@nOrm // enorme/enormiteit, pronunc. of rm and stress _) enkel ENk@l // enkelbaan/enkelbed; many compounds @C) eny (_ @n'eI // words ending in eny have stress on y - d) e (fi E + d) e (fi E C) e (kant @ // buitekant/noordekant ee e@ eetjie e@ici // tweetjies/hanetreetjie @@ -450,6 +601,8 @@ ei eI ey eI eu Y@ + eu (forie %Y@ // move default stress: eufories/-e + eufo (rie_N %Y@f%u // stress to end: euforie euntjie Y@iNci // seuntjie/reuntjie eë e@ // e deelteken-e &) e (_ @ @@ -457,36 +610,43 @@ C) e (toe_ @ // binnetoe/buitetoe e (gK & _) e (gal %e@ // stress: egalig/-e + _) e (gipt %e@ // move default stress: Egipte/Egiptenaar/Egipties C) ektomie 'Ektumi // histerektomie/vasektomie &) elik (ing @l@k // verduideliking/s/vergoddeliking/verstedeliking app) elkoos @lk'o@s // stress shifts to koos appelkooskonfeit &) e (l_ @ @sk) e (l & // kwyt(ge)skeld(ing) - Cdd) e (le_ e@ - Csd) e (le_ e@ - Add) e (le_ @ - ACd) e (le_ e@ - los) e (s @ + Cdd) e (le_ e@ + Csd) e (le_ e@ + Add) e (le_ @ + ACd) e (le_ e@ + los) e (s @ e (lK & %C) e (C @ // (d)warrelwind/slakkepas ll) e (lK & // parallel/-le @s) e (l@ @ // e sound in words like borselkop/voedselaanvulling and many similar + @s) e (lfde '& //fix dieselfde Cs) e (lf & // e sound in words like terselfdertyd/vanselfsprekend Cs) e (lle_ & // e sound in words like bloedselle/limfselle/stamselle/tronkselle AC) e (lh @ // e sound in words like edelheid/ydelheid/kreupelheid @p) e (lh @ // e sound in words like simpelheid - blind) e (ling @ - ind) e (ling e@ - nd) e (ling @ + blind) e (ling @ + ind) e (ling e@ + nd) e (ling @ + uiw) e (l@ @ // duiwelskind/suiwelprodukte and similar compounds _) eike 'eIk@ // many compounds with eike &) e (lC_ @ @m) e (ld & // aanmeld/voormeld + Csp) e (ld & // fix e sound: borsspeld/haakspeld/doekspeld, etc. + Csp) e (ls & // fix e sound: jakkalspels/penspels/lamspels and similar elagtig @l'ax2t@x2 // beuselagtig/e/heid/buffelagtig... ener (gi %En@r // energie/energiek/e ele (ment El@ // element/e/klankelement + m) e (lend @ // murmelend/wriemelende m) e (ling @ // versameling/insameling/stameling + &C) e (lrA @ // fix e sound: // kreukelrig/kriewelrig/kronkelrig/wankelrig/wankelry and similar _) eni (g 'e@n@ // enigeen/enigiemand/enigiets/eniggebore/enigermate C) e (ltjie @ // eltjie always @lki @@ -500,7 +660,9 @@ _) ellende e@l'End@ _) ellendig e@l'End@x2 + emalje %e@malj@ // fix stress and e sounds: emalje and compounds engels EN@ls // engelssprekend/engelstalige/engelsman + enig (ma %EnIx2 // stress and e sound: enigma/-ties/-e lei) er (s @r // leierskap/leiersgroep/leierskursus/leiersposisie... in) er (A 'e@r // kombinering/verkleinering... ff) er (@ @r // keffertjie/koffersleutel/offerande/opoffering @@ -508,14 +670,17 @@ C) eres @r'Es // ...onderwyseres/...sangeres/priesteres &) e (m_ @ &l) e (m_ E // compounds ending in lem - n) erie (_ @r'i //masjinerie and compounds stress and e sound + n) erie (_ @r'i //masjinerie and compounds stress and e sound @Cp) e (n_ E// balpuntpen/koorspen/vulpen and similar @Cp) e (nne E // plurals of the above/-pennetjie breip) e (n E // fix e sound in breipen/-ne - &) e (n_ @ + &) e (n_ @ &) e (nC_ @ + &) e (nde_ @ // fix penultimate e sound: sinkende/drinkende/klinkende &) e (ng_ E erf) e (nis @ //erfenis/kultuurerfenis/verderfenis + ooi) e (ns @ // fix e sound: compounds starting with nooiens + ooi) e (ntjie // drop e in nooientjie/-s and compounds &) e (r_ @ &) ers (_ @rs @@ -523,8 +688,9 @@ e (r & Ank) e (r@ @ // ankerpaal/kankerlyer/donkerbril - lew) e (ns @ + lew) e (ns @ &d) e (r@ @ // not initial or final syllable + @d) e (rnst & // but fix e sound in doodernstig/-e &t) e (r@ @ &b) e (s@ @ komp) e (t@ @ // kompetisie/s/uitklopkompetisie/inkompetensie @@ -532,6 +698,7 @@ eenge 'e@nx2@ _) een (stemm %e@n // move default stress: eenstemmig/-e/-heid _) een (ton %e@n // move default stress: eentonig + een (Cjie e@:iN // eendjie/Leentjie/steentjies _) een (voud@ %e@n // stress on 2nd slb: eenvoudig, but on 1st: eenvoud eerbied (A e@rb'id // eerbiedig/ing eerbiedw %e@rb%itv // eerbiedwaardig/eerbiedwekkend @@ -540,42 +707,48 @@ edjie 'E:ici etjie ici &) elik (_S4 @l@k + &) elike (_S5 @l@k@ // to go with suffixes elik/elikheid &) elikheid (_S8 @l@keIt // vriendelikheid/duidelikheid epi (deC %Ep%i // epidemie/-s/-e/epidermies/epidermis - K) erig @rIx2 - K) erige @rIx2@ + &K) erig @rIx2 + &K) erige @rIx2@ AA) erige @rIx2@ Ai) er (A @r // bakleierig/draaiery/mooierige k) es (_ @s // blankes/blinkes/krankes/dronkes/sterkes/swakkes - hip) e (r @ - _) er (b &r' // erbarm/ing - _) er (k &r' // erkenbaar/erkenning - _) er (v &r' // ervaar/ervare/ervarings/ervaringe + hip) e (r @ + _) er (b &r' // erbarm/ing + _) er (k &r' // erkenbaar/erkenning + _) er (v &r' // ervaar/ervare/ervarings/ervaringe &) ere (_S3 @r@ + @l) ere (_ e@r@ // fix e sound: staanlere/toonlere @) ery (_ @reI eti (ket %Et%i // shorten e sound and move stress: etiket/-te - + ewig (du %e@v@x2 // move default stress: ewigdurend/-e/-heid ewigheid 'e@v@x2,eIt // ewigheid/hewigheid/stewigheid evolus EvOl'ys // evolusie/devolusie/revolusie C) ewyn @veIn // alewyn/compounds of brandewyn _op) e (n @ C) ensie (_ 'Ensi // many words ending in stressed ensie(s) C) ensies 'Ensis // forensiese -C) ensie (_ @) enswaar (dig @nsv'A:r // noemenswaardige/bejammerenswaardig - @C) ent (_ 'Ent // orent/student/topstudent - @C) ent (e_ 'Ent // plurals of some of the above + @) enswaar (dig @nsv'A:r // noemenswaardige/bejammerenswaardig + @C) ent (_ 'Ent // orent/student/topstudent + en) ent (_ Ent // restore default stress: koppenent/voetenent + @C) ent (e_ 'Ent // plurals of some of the above C) er (tyd @r // tegelykertyd/kindertyd/indertyd _) etens 'e@t@ns // etenstyd/klok/tafel/uur pann) e (C @ //pannekoek and friends pann) e (tjie i //fix pannetjie/spannetjie etc. + elaar @lA:r //wandelaar, twyfelaar etc. + oord) elaar e@lA:r //beoordelaar and oordelaar/friends C) ewel (A e@v@l // prewelend/wrewelig/newelig/beneweling d) e (mons E% r) e (digering E som) e (r @ //someraand and others. - _ew) e (++ @ //ewewig, ewekansig etc. + _ew) e (++ @ //ewewig, ewekansig etc. C) e (sk_ 'E // grotesk/burlesk/humoresk + _w) e (skus E // fix stress and e sound: (suid)weskus and compounds C) e (ske_ 'E // burleske/groteske C) e (sk@ @ // hondeskou/modeskou/erdeskottel/geleideskip/hardeskyf d) e (skun %E // but: deskundige and compounds @@ -585,42 +758,55 @@ C) ensie (_ @) enswaar (dig @ns pred) e (sti E // predestinasie evang ,e@faNx2 // evangelie/evangelis - ou) e (C @ + ou) e (C @ C) e (v @ //kleibevattend/stasiebevelvoerder/skadevergoeding // The following are experimental nasalisation of ens gr) ens e~ns - m) ens e~ns - nam) ens @ns // but not namens + m) ens (++ e~ns w) ens e~ns - @sam) e (ns_ @ //fix eksamens - @nem) e (ns_ @ //fix words ending in nemens + @sam) e (ns_ @ //fix eksamens + @nem) e (ns_ @ //fix words ending in nemens _mens) e @ //mense at start of compounds _mens) e (k @ //force correct behaviour before k - @kom) e (ns_ @ //fix words ending in komens - @C) e (wa_ @ // goederewa/kolewa/ossewa/troepewa - Ab) e (wa @ //bewaking/bewaring in compounds polisiebewaking - @C) e (waen @ // plurals and diminutives of some of the above - w) e (ling @ //weling always v@l@N + @kom) e (ns_ @ //fix words ending in komens + suid) e @ //suidekant, suidewind etc. + @C) e (wa_ @ // goederewa/kolewa/ossewa/troepewa + Ab) e (wa @ //bewaking/bewaring in compounds polisiebewaking + @C) e (waen @ // plurals and diminutives of some of the above + w) e (ling @ //weling always v@l@N wild) e @ //wilde in compounds wild) e (kA @ //wilde in compounds with k wildekomkommer etc. - will) e (m @ //willem, willemse etc. - pp) e (C@+ @ // flapperend/snippermandjie/dopperkerk/poppekas... + will) e (C @ //willem, willemse etc./willekeur + pp) e (C@+ @ // flapperend/snippermandjie/dopperkerk/poppekas... &) e (nk_ E // but kersgeskenk/verjaardaggeskenk - @ks) e (ms @ // bliksems and compounds + @ks) e (ms @ // bliksems and compounds @) e (spel_ @ //gebarespel/kleurespel/klokkespel/parespel/poppespel/samespel/snarespel - ar) e (sse_ 'E // bibliotekaresse/sekretaresse - Ks) e (na @ //senator and friends/watsenaam + ar) e (sse_ 'E // bibliotekaresse/sekretaresse + Ks) e (na @ //senator and friends/watsenaam p) e (talje @ // fix stress and 1st e sound: petalje and compounds - interpr) e (teer @' //stress and e sound interpreteer - _) e (ks %E //move default stress in words starting with eks - uik) e (rs @ //fix e in words containing uikers - CoeC) e (C @ //fix e in boetedoening, boedelbelasting and many others - orr) e (l @ //fix e in borrel, orrel, korrel in compounds - + interpr) e (teer @' //stress and e sound interpreteer + _) e (ks %E //move default stress in words starting with eks + _C) e (on_ 'i //Leon, Deon etc. + uik) e (rs @ //fix e in words containing uikers + CoeC) e (C @ //fix e in boetedoening, boedelbelasting and many others + orr) e (l @ //fix e in borrel, orrel, korrel in compounds + intell) e (k %E //intellek, and friends + p) e (ring 'e@ //emansipering and others e sound and stress + roep) e (ring 'e@ //groepering e sound and stress eval (u %iv%al // evaluasie/evalueer/evaluering - + CAt) e (gn & //fix e in mikrotegnologie and others + ei) e @ //eiewys and others + e (nares_ @ //e always @ before nares + + werk) e (rs @ //fix werkers in compounds werkershuis etc. + Ceuw) e (l @ //gesneuwelde heuwelhang etc. + v) e (nno @ //vennoot and friends + ex (+ _^_EN // words containing ex are English + al) ex (and %Ekz //alexanderbaai, alexandria etc. + m) exik Eks%ik //mexiko mexikaans etc. + t) exas Eks@s //Texaskoors and may be others .group f @@ -632,21 +818,32 @@ C) ensie (_ @) enswaar (dig @ns fanta (sA f%ant%a // fantaseer/fantasie fasiliteit fasilit'eIt // fasiliteit/e/aftrekorderfasiliteit februarie f'e@bry,A:ri + feite feIt@ // fix 2nd e sound: feitebepaling/-bevinding/-bron/-fout/-kennis/-lik @) fel (end f@l // betwyfelend/skuifelend/weifelend @) fel (ing f@l // betwyfeling/skuifeling/weifeling + fessor fEs@r // fix last o sound: professor and compounds like universiteitsprofessor + fessor (a@ f%Es@r // stress: professoraal/-ale/-aat/-ate + fessore (_ f@so@r@ // stress: plural: professore and compounds fi (siek f@ // correct 1st i sound and move default stress: filistyn f@l@st'eIn // filistyn/e _) fi (na@ f%i // finaal/finale/finansies fla (grant fl%a // shorten 1st a and move default stress: flagrant/-e + flambo (jant fl%amb%u // move default stress: flambojant/-e/-heid flo (re fl%u // move default stress, correct o sound: florerend + flu (we fl%y // move default stress: fluweel/fluwele and compounds + folio fo@li_u // fix o sounds: folio and compounds @) fonie fun'i // kakofonie/simfonieorkes/telefonie fon (tein f%On // move default stress: fontein/fonteinwater, etc. _) for (C f%Or // formeel/formele/forseer/fortuin formi (da f%Orm%i // move default stress: formidabel/-e _) for (se_ f'Or // stress back to 1st slb; se rule: _) for (C + fos (fa f%Os // move default stress: fosfaat/fosfate + fo (ssiel f%O // move default stress: fossiel/-e and compounds foto fo@tu fo (togra fo@ // move default stress: fotograaf and similar + fru (str fr%W // move default stress: frustrerend/-e fung (e f%WNx2 // fungeer/fungerende/fungering + _) fu (ti f%y // move default stress: futiel/futiele fynge (C feInx2@ // fyngebreekte/-kou/-kap/-maalde // f (w | //silent f before w @@ -654,21 +851,44 @@ C) ensie (_ @) enswaar (dig @ns .group g g x2 g (g - ge x2@ + gala (si x2%alA: // move default stress: Galasiër/-s ga (lAC x2%a // galant/galery/galon/galop -//re-enable following rule to get [g@] at end of words + gal (joen x2%al // move default stress: galjoen/-e and compounds + _) gh g + gh (_ k + @) gheid x2eIt // traagheid/leegheid/droogheid/stugheid + ght _^_EN + _) gade x2A:d@ // gadeslaan/gadegeslaan + garage g@r'A:dZ + @) gge (_ x2@ // logge/stugge + gim (naK x2@m // move default stress: gimnas/-te + gimna (siA x2@mnA: // move default stress and lenghthen a sound: gimnasium/gimnasia + godde (lo x2%Od@ // move default stress: goddelose/goddeloos + gods (dienstig x2%Ots // move default stress: godsdienstig/-e/-es/-heid + god (vr x2%Ot // move default stress: godvresend/-e/godvrugtig/-e + A) gogie (_ x2ux2'i // demagogie/pedagogie + A) gogies x2'o@x2is // demagogies/-e/pedagogies/-e + A) goog (_ x2'o@x2 // demagoog/pedagoog + gor (dyn x2%Or // move default stress: gordyn and compounds + A) goë x2'u@ // demagoë/pedagoë + gra (niet x2r%a // move default stress and fix a sound: graniet and compounds + _) gri (mA x2r@ // grimas/grimeer/-middel and other compounds/grimering + guerrilla g@r'Ila + +.group ge + ge x2@ C) ge (_ g@ + gems x2Ems // fix e sound: (baster)gemsbok/-bul/-ooi, etc. + gene (_ x2e@n@ // gene/diegene + gene (rA x2@n@ // generaal/generasie/-s/genereer genre Z'A~nr@ //genre and compounds - gese (_ x2'e@s@ //Portugese, and others + gese (_ x2'e@s@ //Portugese, and others gespe (_ x2Esp@ // gespe and compounds - gespes (_ x2Esp@s // gespes and compounds + gespes (_ x2Esp@s // gespes and compounds gewens (g x2e@v@ns // (on)vergewensgesind/-e/-heid - gewers (_ x2e@v@rs //fix gewers at word ends - _) gh g - gh (_ k - @) gheid x2eIt // traagheid/leegheid/droogheid/stugheid + gewers (_ x2e@v@rs //fix gewers at word ends _) ge (@P2 x2@ ge (k_ x2& ge (kk x2& @@ -682,18 +902,17 @@ C) ensie (_ @) enswaar (dig @ns gewe (_ x2'e@v@ // begewe/gegewe @) gewende (_ x2'e@v@nd@ @) gewend (_ x2'e@v@nt // insiggewend/deurslaggewend/liggewend - gewel (d x2@v&l //geweld/ig/gewelddadig - gewel (f x2@v'&l //gewelf/boog - gewel (w x2@v'&l //gewelwe + gewel (d x2@v&l //geweld/ig/gewelddadig + gewel (f x2@v'&l //gewelf/boog + gewel (w x2@v'&l //gewelwe - gewel x2e@v@l //gewel/huis/muur etc. + gewel x2e@v@l //gewel/huis/muur etc. gewer (_ x2e@v@r // gewer and many compounds ending in gewer gewing x2e@v@N // begewing/vergewing - bur) ger g@r gee (+ x2e@ geër (_ x2e@@r // oorgeër/pasaangeër - gees (drift x2%e@s // move default stress: geesdriftig and derivitives + gees (drift x2%e@s // move default stress: geesdriftig and derivitives @) gegee =x2@x2'e@ gei (+ x2eI // geil and derivitives/geiser/geit/-e ge (kskeer x2'E // gekskeer/gekskeerder/gekskeerdery @@ -703,58 +922,63 @@ C) ensie (_ @) enswaar (dig @ns geldjie x2'&lci _) gelykeni (s x2@l'eIk@n@ // gelykenis/se gemmer x2'Em@r - ght _^_EN -// geo ge (ogra x2i //geografie etc. ge (olo x2i //geoloog etc. ge (ome x2i //geometries etc. gesels x2@s'&ls - generaal x2@n@r'A:l - _) gade x2A:d@ // gadeslaan/gadegeslaan - garage g@r'A:dZ - @) gge (_ x2@ // logge/stugge - godde (lo x2%Od@ // move default stress: goddelose/goddeloos - A) gogie (_ x2ux2'i // demagogie/pedagogie - A) gogies x2'o@x2is // demagogies/-e/pedagogies/-e - A) goog (_ x2'o@x2 // demagoog/pedagoog - A) goë x2'u@ // demagoë/pedagoë - gra (niet x2r%a // move default stress and fix a sound: graniet and compounds - guerrilla g@r'Ila + .group h h h h (h + halleluja h%al@lyj%a // move stress and fix vowel sounds: halleluja/-boek/-lied + halo (ge h%al%u // fix stress and vowel sounds: halogeen/-lamp/-verbinding/halogene @C) hal (sA h'al // reikhalsend/waaghalsig hal (sstar h%al // move default stress: hand (o hant? // fix d sound: handopsteek/handoplegging _) hane (C hA:n@ // hanekam/hanekraai/hanepoot/hanetree hard (C@ h%art // hardhorend/hardkoppig/hardnekkig/hardvogtig + harde hard@ // fix e sound: hardekoejawel/-kop/-kwas/-kool/-pad + hard (heid hart // restore default stress: (ge)hardheid hard (lo hart // restore default stress: hardloop/hardloper hard (ste hart // restore default stress: (ge)hardste/-s @) hartig h'art@x2 // barmhartig/lighartigheid/lighartig... + hart (stogte_ h%art // move default stress: hartstogtelik + hart (stogte_N hart // restore default stress: hartstogte heiden heId@n // heidene/heidense/heidendom + hekse (C hEks@ // fix 2nd e sound in compounds starting with hekse: heksebrousel, etc. + _) hele (K he@l@ // hele/helend/heler heli (kop h%&l%i // move default stress: helikopter and compounds hemde hEmd@ // naghemde/onderhemde/frokkiehemde hemel he@m@l // hemelblou/hemelhoog and many compounds with hemel _) her (@P3 h%&r + her (berg h&r // restore default stress: herberg/-e + herberg (sa@ h%&rb&rx2 // fix stress: (on)herbergsaam/herbergsame herder h'&rd@r her (eK he@r // here/herehuis/heretjie her (eni h%&r? // fix e sound and stress: herenig her (eva h&r? // fix e sound: herevalueer... hersen h&rs@n // restore default stress and fix 2nd e sound: hersenskim/-me/-mig/hersenskudding + hertog (in h%&rt%Ox2 // fix stress and o sound: (aarts/groot)hertogin/-ne and similar + hertzog h&rtsOx2 // fix stress and o sound: hertzog/-isme/-koekies + _) her (uit h''&r_ // restore stress to 1st slb.: heruitgawe/-gee/-saai/-sending hel h&l _) helde h'&ld@ // heldedade/heldedood/heldemoed... &) hede (_ he@d@ heg h&x2 g) heid eIt // traagheid/leegheid/droogheid/stugheid herinner h&r'In@r // herinner/-ing/-e|s + _) hi (bis h%i // move default stress: hibiskus/-se and compounds hip (noCA h%ip // hipnose/hipnoties/hipnotiseer hister (e hist@r // histerektomie hister (i hist'e@r // histerie/histeries - histor hist,o@r + histor h%isto@r + histri (on h%istr%i // 1st i sound and stress: histrionies/-e/histrionisme/-isties hitler hitl@r // Hitler in compounds like Hitlersnorretjie hoog (dra h%o@x2 // stress: hoogdrawend and derivitives hor (los h%Or // horlosie and compounds + ho (tel h%u // fix stress and o sound: hotel and compounds + huis (houd_ h%Yys // move default stress: huishoudelik/-e/-heid hu (meur h%y // stress: humeur/-ig .group i @@ -765,9 +989,17 @@ C) ensie (_ @) enswaar (dig @ns iale (_ i'A:l@ // al normally stressed in words like bilabiale/koloniale, etc. iber (i@ %ibe@r // Liberië/Siberië/Liberiese/Siberiese/Iberiese ie i + ieë (K i:@ // knieë/vlieë/spieël/-tjie + h) i (dro i //hidro in compounds + _) in (a@ In_ //inasem inagneming etc. _) iese (C ,is@ // iesegrimmig and derivitives ieus i'Y@s // this ending always takes stress - C) i (g @// figuur/figure/stoksielsaligalleenA + C) i (g @ // figuur/figure/stoksielsaligalleenA + X) i (gK+ I // fix stress: (ont)stig/-ting/ontwrig + _ant) i (C i // fix i sounds an words like: antichris/antidoot/antiklimaks, etc. + ps) i (gA i // i sound in words like psigiater/psigoloog, etc. + s) i (gC I // stress: sigverlies/opsigte + sw) i (g I // stress: (ge)swig i (tief @ i (tiew @ def) i (n @ @@ -775,46 +1007,57 @@ C) ensie (_ @) enswaar (dig @ns C) iatrie iatr'i // psigiatrie/pediatrie C) iatries i'A:tris // psigiatries/pediatries ide (a %id%i // ideaal/ideale and compounds - _) idi (o %id%i // idioom/idiome/idioot - _) id (A %id // idille/idillies + _) idi (o %id%i // idioom/idiome/idioot + _) id (A %id // idille/idillies + &l) iker (C @k@r // fix i sound: menslikerwys/redelikerwyse, etc. illu (si %ily // illusie/-s/illusief + _) immi (grA @m@ // fix stress and i sounds: immigrant/-e and compounds + _) i (mmu %i // fix stress and i sound: immuun/immune/immuniteit + _) inder (C @nd@r // inderdaad/inderhaas/indertyd in (diens @n //indienstreding/indiensopleiding/indiensplasing + indis (kr @nd@s // stress: indiskreet/-e/indiskresie/-s + indwing Indw@N // fix d sound: indwing/-ing in (een @n // ineengedoke/ineengekrimp/ineenstorting and many similar + in (hegten @n // move default stress: inhegtenisname/-neming/-s + in (kenn @n // move default stress: inkennig/-e/-heid + i (nneemba @ // move default stress: (on)inneembaar/-bare/-baarheid insi (dent @ns@ // insident/e/insidentjie in (skik @n // move default stress: inskiklik and derivitives + in (skrip @n // move default stress: inskripsie/-s + in (spek @n // move default stress: inspeksie/-s and compounds in (tiem @n // move default stress: intiem/e intimi (dA @nt@m@ // intimidasie/intimideer ingrypen @nx2reIp@n // move default stress and correct 1st e in ingrypender innemen @ne@m@n // move default stress and correct 2nd e in innemendste intrige @ntrix2@ // intrige/-s; fix 2nd i sound + intrig (e@ @ntr%ix2 // stress and vowel sounds: intrigeer/intrigerende/intrigering innuendo @ny:|'End@U // innuendo('s) + invalide @nv%alid@ // stress and v sound: invalide and compounds - C) ie (r_ i: //ier at end of words is long + C) ie (r_ i: //ier at end of words is long C) ie (re_ i: //iere at end of words is long - + _em) i (r @ ië e@:@- // i followed by "deelteken e" iën i'En //i deelteken e n - - + iëteit %i@t'eIt // fix stress: (imk)piëteit/variëteit iee (C i'e@ // distansieer/finansieer/finansieel/prieel iële i'e@l@ // finansiële/potensiële - ieu iu ij (C eI - ingee (+ 'Inx2e@ // se rule: _) inge (@P4 @nx2@ + _) ingee (+ 'Inx2e@ // se rule: _) inge (@P4 @nx2@ _) inge (@P4 'Inx2@ // prefix inge always has stress on 1st slb inge (wing 'Inx2e@ // see rule: _) inge (@P4 @nx2@ @C) inge (_ @N@ - ings INs // begrotingsrede/ontvangslokaal/geringste + ing (s IN // begrotingsrede/ontvangslokaal/geringste _) ing (@ 'Inx2 // ingaan/ingang/ingiet/ingly/ingroei/ingreep... &) ige (_ Ix2@ @C) iger (CA @x2@r // twintiger-/dertiger-/veertigerjare, etc. &) iges (_ Ix2@s &) iger (_S2 @r - &) igers (_S3 @rs //fix words ending in igers + &) igers (_S3 @rs //fix words ending in igers @) ika (_ =%ik%a // logika/dinamika &) ike (_S3 @k@ C) iking @k@N @@ -837,34 +1080,38 @@ C) ensie (_ @) enswaar (dig @ns inspring 'Inspr@N // see list: insp InspEkt'Y@r and rule: &) ring (_S4 rIN inten (s @ntEn // move default stress in (tussen @n // move default stress - irrit ir@t' // irriteer/irritasie + _) i (rr %i // fix 1st i sound: irrelevant/irritasie/irriteer/irrasioneel irriter (@ ir@t'e@r // irriterend/e/irritering iles (_ _^_EN // words and names ending in -iles are English ity (_N _^_EN @) igering ix2'e@r@N - instruks @nstr'Wks // instruksie/s (stress) - instrukt @nstr%Wkt // instrukteur/s/instrukteer (stress) + instruks @nstr'Wks // instruksie/s (stress) + instrukt @nstr%Wkt // instrukteur/s/instrukteer (stress) iër (@ i'e@r // kopiëring/subsidiërende + fn) is (A @s_ // fix i sound: begrafnisete/-ondernemer/-onkoste AC) is (_ 'Is // aktivis/humanis/kommunis/pianis/solis/violis/kompromis + pub) is (_ @s // restore defaultstress: pubis, excep. to: AC) is (_ en) is (K @s // stress: beduidenis/bekentenis/gevangenis, etc. + kris) is @s // fix stress: krisis and compounds pol) is (_ @s // polis and compounds ar) is (_ =@s // but sekretaris/argivaris/kommissaris litar) is 'Is // but militaris + vuil) is @s // stress: vuilis/tuinvuilis AC) iste (_ 'Ist@ // aktiviste/humaniste/kommuniste/pianiste/soliste/violiste @C) isties 'Istis // kommunisties/liberalisties/humanisties @) iseer is'e@r // analiseer/kategoriseer @) iseren (d is'e@r@n // analiserend/kategoriserend - @f) iek (_ 'ik // manjefiek/compounds - @n) iek (_ 'ik // uniek/compounds -@n) iek (e_ 'ik // unieke/compounds - @kn) iek (_ ik // but piekniek - @t) iek (_ 'ik // antiek/etiek/taktiek - @t) iek (e_ 'ik // antieke... - @tr) iek (_ 'ik // eksentriek/metriek - @tr) iek (e_ 'ik // eksentrieke/metrieke - sp) i (oen %i // spioen/spioenasie and compounds + @f) iek (_ 'ik // manjefiek/compounds + @n) iek (_ 'ik // uniek/compounds + @n) iek (e_ 'ik // unieke/compounds + @kn) iek (_ ik // but piekniek + @t) iek (_ 'ik // antiek/etiek/taktiek + @t) iek (e_ 'ik // antieke... + @tr) iek (_ 'ik // eksentriek/metriek + @tr) iek (e_ 'ik // eksentrieke/metrieke + sp) i (oen %i // spioen/spioenasie and compounds ironie (_N irun'i // stress to end, but don't break ironies i (ronie %i // stress on 2nd slb.: ironies/- @@ -876,42 +1123,101 @@ C) ensie (_ @) enswaar (dig @ns C) ispel Isp@l // lispeling/kwispeling/kwispelstert @) isme (_ 'Ism@ // isme always takes stress w) it (A It // fix i sound: eiwitafskeiding/witagtig/kwiteer/grondserwituut + item itEm // fix e sound in item and compounds @) iteit it'eIt // stress on iteit endings @C) itis (_ 'it@s // stress: many diseases ending in -itis C) iveer if'e@r // always takes stress C) iver (A if'e@r // always takes stress: aktiverende/motivering i (voor %i // move default stress: ivoor and compounds + ié 'i // pronounce dié/nié, etc. with stress + C) i (ësta %i // fiësta/siësta .group j j j j (j - - jakaranda j%ak%ar'anda //jakaranda and compounds + _) ja (cobA j%a // fix stress and a sound: Jacoba/Jacobus + jakaranda j%ak%ar'anda //jakaranda and compounds + jaloe (sie j%al%u // stress: jaloesie/beroepsjaloesie januarie j'any,A:ri jeans _^_EN jeep _^_EN // English pronunciation jellie dZ'Eli + joer (na j%ur // move default stress: joernaal/joernale/ compounds: joernaalinskrywing, etc. johan juh'an johannes juh'an@s jonge jON@ // jongeling/jongeres + jong (etjie jON // fix e sound: jongetjie/-s junie j'uni julie j'uli juris (dik j%ur@s // jurisdiksie and compounds + ju (we j%y // juweel/juwele and compounds + juwe (lier j%yv@ // stress and vowel sounds: juwelier and compounds .group k - @A) k (aat k' // advokaatstoga/fabrikaat/sertifikaatjie/triplikaat and many similar - @) kate (_ k'A:t@ // plurals of some of the above k k k (k - kk k - kabel kA:b@l //stress and e sound - kabeljou kab@lj'@U //kabeljou and compounds + keiser keIz@r //keiser last e and s sounds + + keling k@l@N + kkeling k@l@N + kelend (_ k@l@nt + kelende (_ k@l@nd@ + kkelend (_ k@l@nt + kkelende (_ k@l@nd@ + kera (miek k%&r%a // move default stress: keramiek and compounds + n) kerend (_ k@r@nt //hunkerend and others + n) kerende (_ k@r@nd@ //hunkerende and others + weder) ker (A k'e@r // wederkerend/wederkerig + _) keuse k''Y@s@ // fix connecting e sound in compounds starting with keuse + kiaat k%i;A:t // move default stress: kiaat and compounds + kker (@ k@r // swakkerig/blikkerig/flikkerend/flikkering + klaarblyklik klA:rbl'eIkl@k // klaarblyklik/e + klande (sti kl%and@ // move default stress: klandestien/-e + _) kla (sA@@ kla // klasaantekeninge/klasonderwyser and other compounds + kla (ssiek kl%a // move default stress: klassiek/-e + kla (vier kl%a // klavier and many compounds + _) kamele kam'e@l@ // kamele teenoor skamele + karakter kar'akt@r + _er) ken kEn // E sound in erkEn + ken (merken k%En + @) keurig k'Y@r@x2 // kieskeurig/noukeurig/(on)willekeurig and derivitives + _) ki (ta k%i // move default stress: kitaar and compounds + klere kle@r@ + kklere =kl'e@r@ + knip (A knIp? // knipogie/geknipoog/ + kre (diet kr@ // move default stress: krediet/-kaart/-balans, etc. + kre (dit kr%E // fix e sound: krediteer/akkreditasie + krimi (nA kr@m@' // krimineel/kriminele/diskrimineer + kri (oel kr%i // move default stress: krioel and derivitives + krit (A kr@t // kriteria/-ium/kritiseer and derivitives + krieket krik@t //krieket e sound and stress + krieketw krik@tv //krieket followed by w in compounds always v + + krokodil krOk@-d'I:l + kruger kr'Y@@r + ku (ba@ k%y // move default stress: kubaan/kubane + ku (biek k%y // move default stress: kubiek/-e/-getal + kulin k%Wl%in // Move default stress and fix u sound: kulinër/-e + @) kundi (g k'Wnd@ // wiskundige/onoordeelkundigheid and many similar + i) kus k'Ws // chemikus/historikus/politikus, etc. + kwali (C@ kw%al%i // kwaliteit/kwalifiseer + _) kwar (tA kw%ar // move default stress: kwartaal/kwartier + kwi (tans kw@ // move default stress: kwitansie and compounds + + +.group ka + @A) kaa (t k'A: // advokaatstoga/fabrikaat/sertifikaatjie/triplikaat and many similar + @) kate (_ k'A:t@ // plurals of some of the above + kabel kA:b@l //stress and e sound + kabeljou kab@lj'@U //kabeljou and compounds kabinet k%ab%inEt // kabinet/drankkabinet/kabinetsvergadering + ka (dawer k%a // move default stress: kadawer and compounds kade (t k%adE // shorten 1st a and move default stress: kadet and compounds kake (C kA:k@ // kakebeen/skakelaar/skakelbord/skakelfunksie + kalahari kalah'A:ri // stress: Kalahari/-sand/-woestyn ka (lAnC k%a // kalender and compounds/kalant/kalander and compounds kali (b k%ali // kaliber/kalibrasie/kalibreer kalmeer kalm'e@r // kalmeer/gekalmeer @@ -923,101 +1229,95 @@ C) ensie (_ @) enswaar (dig @ns kamer (C kA:m@r // kamerdeur/eetkamermat/sitkamervenster kandi (dA k%an%i // kandidaat/kandidate and compounds @A) kaner (_ k'A:n@r // Afrikaner/Amerikaner + _) kan (to@ k%an move default stress: kantoor/kantore and compounds + ka (pabel k%a // move default stress and shorten 1st a sound: kapabel/-e kape (l k%ap& // move default stress and fix e sound: kapel and compounds kape (la@ k%ap@ // fix e sound: kapelaan/kapelane and compounds kap (tein k%ap // kaptein/kapteinskap/skeepskaptein + kapsule k%apsyl@ // stress and e sound: kapsule/-fabriek/-vorm, etc. + kar (does k%ar // move default stress: kardoes and compounds + kar (nuffel k%ar // move default stress: (ge)karnuffel/-de kar (ton k%ar // move default stress: karton and compounds kar (wei k%ar // move default stress: karwei and derivitives kaserne k%as&rn@ // move default stress, fix 1st e sound: kaserne and compounds - _) kata ,kata + _) ka (ste@ k%a // move default stress: kasteel/kastele and compounds + ka (strol k%a // move default stress: kastrol/-le and compounds + _) kata ,kata + katalo (gus k%atalu // fix stress and vowel sounds: katalogus and compounds kate (dr k%at@ // katedraal/katedrale and compounds kategorie k,at@x2ur'i // to also handle plural kategor (isA kat@x2ur // katagoriseer/kategorisering/gekategoriseer kategories k,at@x2'o@ris // to move stress - keiser keIz@r //keiser last e and s sounds - - keling k@l@N - kkeling k@l@N - kelend (_ k@l@nt - kelende (_ k@l@nd@ - kkelend (_ k@l@nt - kkelende (_ k@l@nd@ - n) kerend (_ k@r@nt //hunkerend and others - n) kerende (_ k@r@nd@ //hunkerende and others - weder) ker (A k'e@r // wederkerend/wederkerig - kker (@ k@r // swakkerig/blikkerig/flikkerend/flikkering - klaarblyklik klA:rbl'eIkl@k // klaarblyklik/e - klande (sti kl%and@ // move default stress: klandestien/-e - _) kla (sA@@ kla // klasaantekeninge/klasonderwyser and other compounds - kla (ssiek kl%a // move default stress: klassiek/-e - kla (vier kl%a // klavier and many compounds - _) kamele kam'e@l@ // kamele teenoor skamele - karakter kar'akt@r - _er) ken kEn // E sound in erkEn - ken (merken k%En - _) ki (ta k%i // move default stress: kitaar and compounds - klere kl'e@r@ - kklere =kl'e@r@ - knip (A knIp? // knipogie/geknipoog/ + K) katel kA:t@l // fix e sound of compounds: katelknop/-styl, etc. + + +.group ko ko (kon k%u // fix 1st o sound and move default stress: kokon and compounds kommando k%umandu // move stress, fix o sounds: kommando and compounds ko (pie@ k%u // kopiereg/kopie koe (rA k%u // koerier/koerasie/koerant and compounds + kort (stond k%Ort // move default stress: kortstondig/-e/-heid koever (t k%uf&r // koevert/-e/-jie and compounds kollege k'OlidZ // kollege/onderwyskollege kolleges (_ k'OlidZ@s // kolleges/onderwyskolleges - @)kollek kulEk // straatkollekte/straatkolleksie/deurkollekte + @) kollek kulEk // straatkollekte/straatkolleksie/deurkollekte _) kollek kul'Ek // kollekte/kollektebord/kolleksie kollekteer kulEkt'e@r // kollekteer/gekollekteer koeël kul + kollega k%ule@x2%a // kollega/-s and compounds kolonel kOl@n'&l ko (loni k%u // kolonie/-s/kolonialisme/koloniseer kolo (ssa k,Olu // move default stress: kolossaal/kolossale kolo (sK k%ulO // move default stress and fix 1st e sound: kolos/-se - kombuis kOmb'Yys + kombuis k%OmbYys // stress: kombuis/kombuistafel/sopkombuis ko (medi k%u // move default stress, correct o sound - komitee kOm@te@ + komi (tee k%Om@ kommen (ta k%Om@n // kommentaar/kommentator + _) ko (mmo k%u // move default stress and fix 1st o sound: kommosie/-s/kommoditeit/-e + kompan (jie k%Omp%an // move default stress: kompanjie/-stuin + konserv k%Ons@rv // fix stress and v sound: konservasie/konservatorium and compounds kom (plA k%Om // komplot/kompleet _) kon (C k%On _) kon (dig k'On // stress: see rule: _) kon (C k%On konferen k%Onf@rEn // konferensie/-s/perskonferensie/-s konfer (e k%Onf@r // fix e sound: (ge)konfereer/konferering kongo (K k,ONgu // stress: kongolees/-lese + koning (in k%o@n@N // fix stress: koningin/-ne and compounds konnekteer kOnEkt'e@r // (ge)konnekteer konkel kONk@l // restore default stress and fix [N] sound: konkelaar/konkelwerk, etc. konsist k%Ons@st // konsistorie and compounds/konsistensie konsul (A k%Ons%Wl // konsulaat/konsulate/konsulêr kon (sul kOn // restore default stress: konsul and compounds + _) kop (on kOp? // fix o sound: koponder/koponderstebo + kopu (lA k%Op%y // fix o sound: kopulasie/kopuleer and derivitives _) kor (dA k%Or // kordaat/kordon - korpo (raal k%Orp@ // move default stress: korporaal/-s/-strepe/onderkorporaal + korpo (raal k%Orp@ // move default stress: korporaal/-s/-strepe/onderkorporaal + ko (rrup k%u // fix stress and 1st o sound: korrup/-sie/-te/-teer + kosme (tiek k%Osm@ // move default stress: kosmetiek and compounds + kos (met k%Os // move default stress: kosmeties/-e koö k%o@O // koördinasie/koöpsie, etc. - krimi (nA kr@m@' // krimineel/kriminele/diskrimineer - kri (oel kr%i // move default stress: krioel and derivitives - krit (A kr@t // kriteria/-ium/kritiseer and derivitives - krieket krik@t //krieket e sound and stress - krieketw krik@tv //krieket followed by w in compounds always v - krokodil krOk@-d'I:l - kruger kr'Y@@r - ku (ba@ k%y // move default stress: kubaan/kubane - kulin k%Wl%in // Move default stress and fix u sound: kulinër/-e - @) kundi (g k'Wnd@ // wiskundige/onoordeelkundigheid and many similar - i) kus k'Ws // chemikus/historikus/politikus, etc. - kwali (C@ kw%al%i // kwaliteit/kwalifiseer .group l l l l (l + labi (rint l%ab@ // move default stress and fix vowel sounds: labirint and derivitives + laborator l%ab@-r%at'o@r //laboratorium and compounds + laf (aar laf // restore default stress: lafaard/-s and compounds _) la (kon l%a // lakoniek/lakonies/lakonisme + lam (len l%am // move default stress: lamlendeling/lamlendig/-e/-heid _) lang (d l%aN // langdradig/langdurig and their derivitivs - _) lapel l%ap'&l //lapelwapen etc. - lapel (_ l%ap'&l //baadjielapel etc. + lang (werp l%aN // move default stress: langwerpig/-e/-heid + lank (moe l%aNk // move default stress: lankmoedig/-e/-heid + _) lapel l%ap'&l //lapelwapen etc. + lapel (_ l%ap'&l //baadjielapel etc. + laventel l%afEnt@l // fix stress and vowel sounds: laventel and compounds &) lede (_S4 le@d@ lede (C le@d@ // ledemate/ledegeld/ledelys - leding (_ le@d@N //fix ontleding and others + lede (kant l%e@d@ // move default stress: ledekant and compounds + leding (_ le@d@N //fix ontleding and others Ci) leer l'e@r // faksimileer/meubileer/stileer and similar legende l@x2End@ // move default stress; fix e sounds legen (da l@x2@n // move default stress and fix e sounds @@ -1031,96 +1331,77 @@ C) ensie (_ @) enswaar (dig @ns lewe (C le@v@ // belewenis/lewendig/agtergeblewenes libe (ra l@b@ // liberaal/liberale/liberalis/-me ligen l@x2'En + _) li (g lI // fix stress: liggaam/liggies/ligte + li (ga_ li // fix i sound: liga/vroueliga, etc. + _) li (gaC li // vix i sound: compounds starting with liga/ligatuur liggaamlik l@x2A:ml@k // stress liggaamlik/-e/-heid &) lik (_S3 l@k &) like (_S4 l@k@ &) likes (_S5 l@k@s &) liker (_S5 l@k@r &) likste (_S6 l@kst@ + liter (A l@t@r //literatuur and others, but literbottel + _) li (mi l@ // fix stress and 1st i sound: limiet/-e/limitasie/limiteer linker lINk@r // blinkertjies/many compounds with linker and klinker @) ll (_N _^_EN // Words ending in -ll are English _) losge (@P5 l'Osx2@ - _) losies l%us'is //losies at start always means "to stay" + _) losies l%us'is //losies at start always means "to stay" &) lm (K l@-m liefdes lifd@s // liefdesbrief/daad/geskiedenis/verhouding... lisensie l@s'E:nsi - lering (_ l'e@r@N //isolering distilering correct @ to e@ and force stress - lokomo ,lukumu' //lokomotief and friends + lering (_ l'e@r@N //isolering distilering correct @ to e@ and force stress + lokomo ,lukumu' //lokomotief and friends lug (A lWx2? // lugaanval/lugafweer/lugopname + luid (rugt l%Yyd // move default stress: luidrugtig/-e/-heid luite (nant l%Yyt@ // fix e sound and move default stress: luitenant and compounds + luk (salig l%Wk // move default stress: geluksalig/-e/-heid + lusern l%us&:r@n // fix stress and vowel sounds: lusern and many compounds @) lusti (g l'Wst@ // move default stress: strydlustig/lewenslustig and many similar - + lyk (nam l%eIk // move default stress: gelyknamig/-e + .group m m m m (m + _) made (l m%A:d@ // move default stress: madeliefie/-s + _) ma (d m%a // fix stress and 1st a sound: madonna/-s/-beeld/-lelie/Madiba/Madras maga (syn m%ax2%a // magasyn and many compounds magi (stra m%ax2%i // magistraat and many compounds ma (ho m%a // mahoniehout/-lessenaar and similar &) mal (_S3 mal malaria mal'A:ria; - man (da m%an //mandaat and compounds - manier m@ni:r //manier and compounds + _) malte (sA m%alte@ // move default stress and fix e sound: maltese/maltesies + man (da m%an //mandaat and compounds + manier m@ni:r //manier and compounds manu (sk ,many + _) ma (rA m%a // short, unstressed a: Marietjie/Marina/Marinda/Marita/Maree/marog marine m%arin@ // marine and compounds + ma (ritz m%a' // fix stress: Maritz/Pietermaritsburg + marmelade m%arm@lA:d@ // fix stress and e sounds: marmelade and compounds mar (sje m%ar // move default stress: marsjeer and derivitives + mas (biek m%as // move default stress: masbieker/-s masjien m@Sin // masjien and many compounds + maso (chis m%as%u // fix vowel sounds: masochis/-te/-ties/-e/-isme + materi (A@ m%at%e@r%i // materiaal/materiale/materiële/materieel maties m'A:tis //tamaties, outomaties etc. - ma (triek m%a // matriek and many compounds with matriek + ma (tr m%a // matriek and many compounds with matriek/MATRAS/MATROOS/MATROSE @) matig m'A:t@x2 // doelmatig/gelykmatig/regmatig; matig takes stress in compounds // mc _^_EN //the mac names does not work - medalje m@dalj@ // medalje/bronsmedalje/medaljewenner - _) mede (@P4 m'e@d@ - _) mede (ly m%e@d@// move stress - mede (plig m%e@d@ // move stress: medepligtige - media mi:dia // compounds of media - me (dium mi: // fix e sound - mee (doë m%e@ // move default stress - meerder (jar m%e@rd@r // move default stress: meerderjarig/-e/-es/-verklaring - medisyne m@d@s'eIn@ //medisyne and compounds - meganies m@x2'A:nis - _) meege (@P5 m'e@x2@ - me (juf m@ // move default stress and shorten e sound - meneer m@n'e@r // meneer/meneertjie - menere m@n'e@r@ // menere/beroepsmenere - mening m'e@n@N - mening (itis mEn@Nx2 // see rule: mening m'e@n@N - - mentee (C mEnt'e@ // argumenteer/dokumenteer/fragmenteer stress related - mentele (_ mEnt'e@l@ // stress always on penultimate slb of words ending in ntele - - mentering mEnt'e@r@N - materi (A@ m%at%e@r%i // materiaal/materiale/materiële/materieel - mekaar m@k'A:r - mekaarge m@k'A:rx2@ - _) melodies m@l'o@dis //melodies and compounds - _) melodi (eu ,mEludi //melodieus - _) melodie mElud'i - _) melo (dr m'Elu //melodrama etc. - mme (C m@ + mme (C m@ mme (tjie mi // lemmetjie/stemmetjie and similar - ment m'Ent - mental (iteit m,Ental // fix stress: mentaliteit/sentimentaliteit and compounds - mentjie m'EiNci // monumentjie/dokumentjies - metaal m@t'A:l - metale m@t'A:l@ - meteen mEt_'e@n // meteen/meteens/almeteens - metode m@t'o@d@ // metode/s - me (tod m@ // metodies/metodiek - - metodis mEtud'Is // metodis/ties/e/metodisme - mevrou m@fr'@U middagete m'Idax2_e@t@ // middagete/s middel mId@l // middellyf/middelpunt/middelste/bemiddelend middel (jar m@d@l // move default stress: middeljarig and derivitives milit m@l@t // militêr/militaris + mille (nniA m@lE // millennium/millennia minag m'Inax2 // minag/geminag/minagting/minagtend minder (jar m@n@r // move default stress: minderjarig and derivitives miner (A m@n@r // mineraal and many compounds mi (neur m%i // move default stress: mineur and compounds mikr (o mikr ministers m@n'Ist@rs + mise (ra m@s // fix stress and drop e: miserabel/-e/-s/-ste mis (gis m@s // stress on 2nd slb mis (gun m@s // stress on 2nd slb mis (ha m@s // mishandel/mishaag @@ -1137,22 +1418,76 @@ C) ensie (_ @) enswaar (dig @ns mis (tiek m@s mis (troos m@s // mistroostig mis (vorm m@s // stress on 2nd slb + mode m''o@d@ // fix e sound: modeontwerper/-maker, etc. + mode (l m%o@d& // fix stress and e sound: model/-le and compounds + mode (lle@ m%Od@ // fix stress and e sound: modelleer/modellering modern m%ud&r@-n moedswillig mutsv'Il@x2 // move default stress: moedswillig/-e/-heid moeite m'uIt@ // moeitevol/le/moeiteloos/lose moe (ras m%u // move default stress: moeras and compounds mohammed (a m%uh%am@d // mohammedane/mohammedaan moles (tA mOl@s' // molesteer/der + moles (_ m%ulEs // fix stress and e sound: moles/huismoles + moles (te_ m%ulEs // fix stress and e sound: moleste and compounds monder (A m%Onde@r // move default stress and lengthen 1st e sound monu (ment m%On%y // monument/e/vrouemonument/monumenteel _) mor (C@ m%Or // move default stress: morbied/morfien/mortier + _) mors (@ mOrs // restore default stress: morsaf/morsdood/morsig motor mo@t@r // motorfiets/motorkar/vragmotor @) mpel (A mp@l // bewimpeling/dompelaar/strompeling museum m%ysY@m // move default stress musiek m%Wsik musi (C mysi' // musikant/musikus/musici + muske (tier m%Wsk@ // move default stress: musketier/-s môre (@ mO:r@' // move default stress: môreaand/-middag/-oggend +.group me + medalje m@dalj@ // medalje/bronsmedalje/medaljewenner + _) mede (@P4 m'e@d@ + _) mede (ly m%e@d@// move stress + mede (plig m%e@d@ // move stress: medepligtige + media mi:dia // compounds of media + me (dium mi: // fix e sound + mee (doë m%e@ // move default stress + meerder (jar m%e@rd@r // move default stress: meerderjarig/-e/-es/-verklaring + mee (war m%e@ // move default stress: meewarig/-e/-heid + medisyne m@d@s'eIn@ //medisyne and compounds + meganies m@x2'A:nis + _) meege (@P5 m'e@x2@ + me (juf m@ // move default stress and shorten e sound + memo (ran m%Em%u // fix stress and vowel sounds: memorandum/memoranda and compounds + meneer m@n'e@r // meneer/meneertjie + menere m@n'e@r@ // menere/beroepsmenere + mening m'e@n@N + mening (itis mEn@Nx2 // see rule: mening m'e@n@N + + mentee (C mEnt'e@ // argumenteer/dokumenteer/fragmenteer stress related + mentele (_ mEnt'e@l@ // stress always on penultimate slb of words ending in ntele + + mentering mEnt'e@r@N + mekaar m@k'A:r + mekaarge m@k'A:rx2@ + _) melodies m@l'o@dis //melodies and compounds + _) melodi (eu ,mEludi //melodieus + _) melodie mElud'i + _) melo (dr m'Elu //melodrama etc. + _) metel me@t@l // vermetel/-e/-es/-heid... + ment m'Ent + mental (iteit m,Ental // fix stress: mentaliteit/sentimentaliteit and compounds + mentjie m'EiNci // monumentjie/dokumentjies + AAs) mes (_ mEs // fix last e sound in compounds like kombuismes + Cs) mes (_ mEs // fix last e sound in compounds like slagtersmes + metaal m@t'A:l + metale m@t'A:l@ + _) meta (C m%Et%a // metabolies/-e/metafoor/metafories + meteen mEt_'e@n // meteen/meteens/almeteens + mete (o m%it%i // fix stress and e sounds: meteoor and compounds/meteore/meteories/-e + metode m@t'o@d@ // metode/s + me (tod m@ // metodies/metodiek + + metodis mEtud'Is // metodis/ties/e/metodisme + mevrou m@fr'@U + .group n @@ -1167,100 +1502,122 @@ C) ensie (_ @) enswaar (dig @ns oo) n (g n // hoongelag/loongeld/telefoongesprek/woongeriewe and similar Cui) n (g n // basuingeskal/bruingebrand/bruingeel/tuingereedskap/tuingewas/tuingrond y) n (g n // fyngoud/hooflyngesprek/langtermyngroei/kaplyngrens + ng (eer Nx2 // diftongeer/gedistingeerde/rangeer and compounds n (_g N ng (ent Nx2 // kontingent/tangent and derivitives CA) nger N@r // compounds of vinger/slinger; hangertjie/hongersnood/langeraad/swangerskap/tengerste @) nges (_ N@s // banges/langes/dinges @) ng (itis_ Nx2 // brongitis/faringitis/laringitis _) na (C_ n'a //three-letter words starting with na - na ( n%a_ // naef/naewe/nawiteit + na ( n%a_ // naef/naewe/nawiteit nami (bi n%amI // Namibië/Namibiese - na (tal ,na' //natal and compunds + na (tal ,na' //natal and compunds _) n (AA n // for words starting with naa, etc. + namakwa n%amakw%a //namakwa and compounds nasio naSiu _) nag (C n'ax2 - _) nag (raad n'A:x2 //nagraads and compounds + _) nag (raad n'A:x2 //nagraads and compounds _) na n'A: _) na (by@ n%A: // move default stress: nabye/nabyheid _) na (delig n%A: // move stress from 1st slb: nadelig/-e - _) na (denk n%A: // exception to: _) na n'A: + _) nadenk n%A:dENk // exception to: _) na n'A: _) na (rC na // nartjie/nardus/narsing _) na (rk n%a // narkose/narkotiseer/narkoties/narkotika + _) na (skeer n''A: // restore default stress: naskeermiddel/-room _) na (tC na // many compounds beginning with nat na (tuur n%a // natuur and compounds and derivitives + navig n%av%ix2 //navigasie, navigeer etc. @) na (_ na // shorten final na, except for: r) na (_ nA: // daarna/hierna/waarna - naasbeste nA:sbEst@ // naasbeste/s nadruklik nA:dr'Wkl@k // nadruklik/e - na (ï n%a? // naïef/naïewe/naïwiteit + na (ï n%a? // naïef/naïewe/naïwiteit + nares (_ n%ar'Es //eienares, minnares, moordenares etc. nazi nA:tsi // Nazi and compounds - + neute nY@t@ // fix connecting e sound: neutedop/neutekraker neu (tr n%Y@ // move default stress: neutraal/neutrale - + ni (ggie nI // niggie/-tjie/-s/kleinniggie... &) ning (_S4 n@N nning n@N // prevent nn in words like orwinning, see: &) ning (_S4 n@N _) nage (@P4 n'A:x2@ nasionale naSEun'A:l@ + n (_n //cause one n sound kan nie doen nie etc. + n (_n_ n // fix n in phrases like: afkappingsteken n + neer (drukk n%e@r // move default stress: neerdrukkend/-e &) nele (_ n'e@l@ + _) nes (ei nEs_ // fix 1st e sound: neseier/-s/-tjie/-s s) nes (K nEs // onheilsnes/rowersnes - nese (_ n'e@s@ //japannese soedannese stres and e sound + nese (_ n'e@s@ //japannese soedannese stres and e sound netel ne@t@l // netelig and derivitives/netel and compounds + nogal nOx2al // fix o sound: nogal/-s nommer (een n%Om@r? // stress: nommereen in compounds like nommereenspeler + nood (saak n%o@t // move default stress: noodsaaklik/-e/-heid, vs. noodsaak + nood (saak_N no@t // restore default stress: (ge)noodsaak normaal nOrm'A:l // normaal/normaalweg/abnormaal nostal (gie_N n%Ost%al // stress on last slb.: nostalgie no (stalgie n%O // stress on 2nd slb.: nostalgies - nou (keu n%@U // noukeurig/-e/-heid/onnoukeurig no (velle n%u // move default stress and fix o sound november no@f'Emb@r // fix 1st e sound and stress: November and compounds ntere (ss nt;r@' // interessant/interesseer/geïnteresseerd n (tjie N // breintjie/fonteintjie/kleintjie - oe) ng n;x2 //soengroet, pensioengewend etc. + oe) ng n;x2 //soengroet, pensioengewend etc. + nuanse (K n%yans@ // move default stress: nuanse/-s and compounds + nuan (seer n%y%an // fix stress: (ge)nuanseer/-d nuus (kierig n%ys // move default stress: nuuskierig/-heid + nuwer (wet n%yv@r // move default stress: nuwerwets/-e + @Cer) ny (_ n'eI // move default stress: lekkerny/raserny/slawerny + @Cer) ny (e n'eI // move default stress: gekkernye/lekkernye/sotternye .group o o o@ + &C) o (_ %u // fix o at end of words: Marokko/(aanvang)saldo/risiko, etc. + bur) o (_ ,o@ // but: buro and compounds like arbeidsburo + rb) o (_ 'o@ // and daarbo/hierbo/waarbo + &s) o (_ o@ // and: sommerso/netso o (C O o (CA o@ mikr) o u // mikrogolf/mikroskakelaar/mikrorekenaar o (terap u // psigo-/fisioterapeut - ob (sku %Op // obskuur/obskure/obskuriteit + _) ob (s %Op // obskuur/obskure/obskuriteit/obsessie/obseen oefen uf@n// oefenbroekie/oefeningboek/liggaamsoefeninge C) ogig _o@x2@x2 // bruinogig/grootogig/skuinsogig C) oetel ut@l // troeteldier/-naam/vertroeteling/vroetelend/boeteling - _) o (marm %O //omarm and compounds + _) o (marm %O //omarm and compounds odiek ud'ik // periodiek/metodiek oliek (_ ul'ik // koliek/mankoliek/simboliek oliek (e_ ul'ik // mankolieke/katolieke + o (lim %o@ // move default stress: olimpies/-e + o (lyC %o@ // move default stress: olyf and compounds/olywe + olym (p %o@lIm // fix stress and y sound: Olympia/Olympus + oranje %o@ranj@ // fix stress and e sound in compounds: oranjeagtig/oranjekleur + _) ordent %OrdEnt // move default stress: ordentlik/-e/-er/-ste/-heid orie o@ri oriu 'o@riW + _) or (ka %Or // move default stress: orkaan/orkane/orkaanwaarskuwing... orkes %OrkEs // orkes and compounds + _) os (moC %Os // move default stress: osmose/osmoties/-e C) o (Cie o@ // removed primary stress C) o (CAA %u - b) o (CAA o@ //fix o in bobeen, bobaas etc. + b) o (CAA o@ //fix o in bobeen, bobaas etc. C) o (Cy %u + b) o (lyC o@ // bolyf/bolywe; exception to rule: C) o (Cy %u C) o (Ciee %o@ // assosieer/harmonieer/folieer - fil) o (@ u% - oo o@ + fil) o (@ u% oe u oei uI oi OI - ooi oI - ooy oI oy OI ou @U + ouder (wet %@Ud@r // move default stress: ouderwets/-e, etc. oetjie uIci oentjie uINci oedjie uIci odjie OIci otjie OIci - ondjie OINci - ontjie OINci - ontering %Onte@r@N //ontering in compounds montering etc. offi (sier %Of@ // move default stress: offisier and compounds ograaf ux2r'A:f // biograaf/demograaf/fotograaf ografie ux2raf'i // biografie/demografie/fotografie @@ -1276,10 +1633,6 @@ C) ensie (_ @) enswaar (dig @ns oloë ul'u@ // bioloë/kardioloë and similar ometrie ume@tr'i // geometrie/psigometrie ometries um'e@tris // geometries/psigometriese - onome un'o@m@ // astronome/ekonome/gastronome - onomie unum'i // astronomie/ekonomie/gastronomie - onomies un'o@mis // astronomies/-e/ekonomies/-e/gastronomies/-e - onoom un'o@m // astronoom/ekonoom/gastronoom oskope usk'o@p@ // kaleidoskope/mikroskope oskopies usk'o@pis // kaleidoskopies/mikroskopies oskoop usk'o@p // bioskoop/giroskoop/mikroskoop and similar @@ -1291,13 +1644,6 @@ C) ensie (_ @) enswaar (dig @ns opatie upat'i // homeopatie/neuropatie and similar opatie upat'i // psigopatie/osteopatie and similar opaties up'A:tis // allopaties/homopaties and similar - k) ongres %ONx2rEs // compounds ending with kongres: kerkkongres - @) ony (_ _^_EN //words ending in only is English - oodjie oIci - ootjie oIci - - oontjie oINki - oondjie oINki omgee (+ 'Omx2e@ // se rule: _) omge (@P4 Omx2@ omgewe (_ Omx2'e@v@ // se rule: _) omge (@P4 Omx2@ _) omge (@P4 'Omx2@ // stress on 1st slb @@ -1306,26 +1652,91 @@ C) ensie (_ @) enswaar (dig @ns om (ha Om // restore default stress: omhaal/omhang/omhaak omkeer Omke@r // restore default stress: omkeer/handomkeer and similar _) omker (A Omke@r // omkering/omkerende + om (ly %Om // move default stress: omlyn/-ing om (ring %Om // move default stress om (sig %Om // move default stress: omsigtig/-heid + _) om (skr %Om // move default stress: omskryf/omskrewe omstandigh Omst'and@x2 // to steer clear of prefixes and suffixes om (vatt %Om // move default stress: omvattend and derivitives _) omver %Omf&r // omver/omvergooi/omverwerp + + _) opeen Op_'e@n + _) ope (C o@p@ //opehart opestelling etc. + ope (l o@p@ // dopeling/hopelik/opelug/opelyf + opgee (+ 'Opx2e@ // see rule: _) opge (@P4 Opx2@ + _) opge (@P4 'Opx2@ // stress on 1st slb + &C) op (ig 'o@p // wanhopig/voorlopige + opper Op@r // oppergesag/wese/vlak/man + opsetlik %OpsEtl@k // move default stress: opsetlik/-e/-heid + optel Opt&l + _) op (@P2 'Op // opeet/opeis/optredes/opoffering + open (+ o@p@n // open/opening/e/s + open (b %o@p@n openbaar/openbare/openbaring + oper (A %o@p@r // operasie/operateur/opereer + opera (_ 'o@p@ra // stress: opera/operas + opinie o@p'ini // opinie/-s + op (nuut %Op // move default stress: opnuut + op (offer Op // fix o sound: selfopperende, etc. + oppon (A %Op@n // opponent/opponeer + _) op (reg %Op // move default stress: opreg/-te + op (roerig %Op // oproerig/-e/-heid, but oproer + op (sienb %Op // opsienbare/opsienbarend + _) opsigteli (k %OpsIx2t@l@ // move default stress: opsigtelik/-e vs. opsig + opti (mA %Opt%i // optimis/-me/-te/-ties/optimaal + op (winde %Op // move default stress: opwindend and derivitives + _) or (ga %Or // move default stress: orgaan/organe + organisasie Orx2anis'A:si + @) oties 'o@tis // antibioties/eksoties/eroties/neuroties + ower (@ o@v@r // lowergroen/betowerend/dowerig/compounds of owerheid + oë u@ // + +.group on +// The following are experimental nasalisation of ons + b) ons o~ns + d) ons o~ns + fr) ons o~ns + g) ons o~ns + + ondjie OINci + ontjie OINci + ontering %Onte@r@N //ontering in compounds montering etc. + onvoor (s %Onf%o@r //stress: onvoorsiens, onvoorstelbaar etc. + onvoor (w %Onf%o@r //stress: onvoorwaardelik etc. + onome un'o@m@ // astronome/ekonome/gastronome + onomie unum'i // astronomie/ekonomie/gastronomie + onomies un'o@mis // astronomies/-e/ekonomies/-e/gastronomies/-e + onoom un'o@m // astronoom/ekonoom/gastronoom + @) onies 'o@nis // stress: embrionies/elektronies/harmonies/sardonies/sinchronies... + kol) onie o@ni // stress: arbeidskolonies/strafkolonies, etc. + serem) onie (K o@ni // stress: huwelikseremonies and similar + @p) onies o@nis // stress: bromponies and similar + k) ongres %ONx2rEs // compounds ending with kongres: kerkkongres + @) ony (_ _^_EN //words ending in only is English + _) on (@P2 %On ondeur %Ond%y@r // ondeurdagte/ondeurdringbaar/ondergrondelik - onheil Onh%eIl // stress: onheil/e/onheilbringer + _) on (fiks On // stress on 1st slb.: onfiks/-e/-heid + onheil ''OnheIl // stress: onheil/e/onheilbringer/onheilsvoorspelling onheil (ig %Onh'eIl // stress: onheilig/e onheil (spel %Onh%eIl // stress: onheilspellend/e - onreg 'Onr&x2 // stress: onreg/te - on (regv+ %On // stress: onregverdig/e/heid + _) onnie Oni // onnie/-s; not on- prefix + onreg (K Onr&x2 // stress: onreg/te/onregmatig + on (regv++ %On // stress: onregverdig/e/heid on (skuld_N 'On // restore default stress: onskuld _) ont (@P3 %Ont ont (d@ %On // remove t sound: ontdaan/belastingontduiking/ontdooi onteenseg Onte@ns'&x2 // onteenseglik/e + _) ontel %Ont&l // ontelbaar/ontelbare/ontelbaarheid on (toe %On // ontoereikend/heid + on (tugtig %On // fix stress and avoid ont prefix: ontugtig/-e/-heid + on (tug On // stress on 1st slb and avoid ont prefix: ontug/-pleger... on (tyd %On // ontydig and derivitives _) on (wAs 'On // onwis/onwys + _) onweer Onve@r // stress on 1st slb.: onweer/-snag/-swolke... + _) onweer (l %Onv%e@r // but onweerlegbaar/-bare/-baarheid + _) onweer (spr %Onv%e@r // onweerspreekbaar/onweerspreeklike/onweersproke + _) onweer (staan %Onv%e@r // onweerstaanbaar/-bare/-baarheid _) onge (@P4 Onx2@ _) ongees %Onx2%e@s // ongeesdriftig; see rule: _) onge (@P4 Onx2@ _) ongeloofli (k Onx2@l'o@fl@ // to avoid "lik" suffix retranslation of "ongeloof" @@ -1339,85 +1750,86 @@ C) ensie (_ @) enswaar (dig @ns onder (bre %On@r // move default stress: onderbreek/onderbreking onder (druk %On@r // exception to default stress rule onder (duim %On@r // exception to default stress rule + onder (hande %On@r // move default stress: onderhandel and derivitives onder (hor %On@r // exception to default stress rule: + onder (hou %On@r // move default stress: onderhou/-dend/-e + onder (ne %On@r // move default stress: onderneem/onderneming + onderonsie %On@r?o~nsi // fix stress, short break and nasalised o: onderonsie/-s onder (rig %On@r // exception to default stress rule + onder (soeken %On@r // move default stress: ondersoekend/-e onder (skA %On@r // exception to default stress rule + onderstebo %On@rst@bo@ // fix stress: onderstebo/koponderstebo onder (steu %On@r // exception to default stress rule: ondersteun/-ing/-ers onder (vin %On@r // exception to default stress rule: ondervind/ondervinding + onder (vra %On@r // move default stress: ondervra/-ging _) onderge (@P7 'On@rx2@ - ontevrede Ont@fr'e@d@ + _) on (kant On // stress on 1st slb.: onkant and compounds + on (langs On // stress on 1st slb.: onlangs/-e + ontevrede Ont@fr'e@d@ + _) on (tuiC On // stress on 1st slb.: ontuig/ontuis + +.group oo + oo o@ + ooi oI + ooy oI + oodjie oIci + ootjie oIci + oontjie oINki + oondjie oINki oombliklik o@mbl'Ikl@k // stress: oombliklik/e oorbluf o@rbl'Wf // stress: oorbluf/te oor (blyw %o@r // move default stress: oorblywend/-e oorbodig o@rb'o@d@x2 // stress: oorbodig/-e/-heid + _) oor (dag %o@r // move default stress: oordag/-te oordrewe o@rdr'e@v@ // stress: oordrewe/oordrewenheid oor (dink %o@r // move default stress oor (doen %o@r // move default stress + _) oor (dryC %o@r // move default stress: oordryf/oordrywing oor (een %o@r // move default stress: ooreen/ooreenkom/ooreenkoms/ooreenstem oor (een@@ ,o@r // move default stress: ooreenkomstig/ooreenstemmend oor (hand@ o@r' // stress oorhandig/ing, but oorhand oor (heers %o@r // move default stress oorkoepel o@rk'up@l // stress and pronunc. of el: oorkoepelend/oorkoepeling _) oorlede o@rl'e@d@ // stress oorlede/ne/s + oorle (wing o@rl''e@ // stress on 2nd slb.: oorlewing/-sekuriteit/-situasie oor (reed %o@r // move default stress oor (redA %o@r // move default stress: oorredingskrag oor (rompel %o@r // move default stress oor (sk %o@r // stress: oorskadu/oorskat/oorskrei + _) oor (skiet o@r // stress on 1st slb.: oorskiet and compounds oor (spronk %o@r // move default stress: (on)oorspronklik and compounds + oor (stur %o@r // move default stress: oorsturig/-e/-heid oor (tr %o@r // oortree/oortreding/oortref oor (tuig %o@r // oortuig/oortuiging/oortuigende + _) oor (vleuel %o@r // move default stress: oorvleuel/-ing + _) oor (vloedig %o@r // move default stress: oorvloedig/-e vs. oorvloed _) oor (w o@r' // oorwin/oorweeg/oorweging/oorweldig/end... oor (wig 'o@r // stress - _) opeen Op_'e@n - _) ope (C o@p@ //opehart opestelling etc. - ope (l o@p@ // dopeling/hopelik/opelug/opelyf - opgee (+ 'Opx2e@ // see rule: _) opge (@P4 Opx2@ - _) opge (@P4 'Opx2@ // stress on 1st slb - &C) op (ig 'o@p // wanhopig/voorlopige - opper Op@r // oppergesag/wese/vlak/man - optel Opt&l - _) op (@P2 'Op // opeet/opeis/optredes/opoffering - open o@p@n // open/opening/e/s - open (b %o@p@n openbaar/openbare/openbaring - oper (A %o@p@r // operasie/operateur/opereer - opera (_ 'o@p@ra // stress: opera/operas - opinie o@p'ini // opinie/-s - op (offer Op // fix o sound: selfopperende, etc. - oppon (A %Op@n // opponent/opponeer - op (roerig %Op // oproerig/-e/-heid, but oproer - op (sienb %Op // opsienbare/opsienbarend - opti (mA %Opt%i // optimis/-me/-te/-ties/optimaal - op (winde %Op // move default stress: opwindend and derivitives - organisasie Orx2anis'A:si - @) oties 'o@tis // antibioties/eksoties/eroties/neuroties - ower (@ o@v@r // lowergroen/betowerend/dowerig/compounds of owerheid - oë u@ // -// The following are experimental nasalisation of ons - b) ons o~ns - d) ons o~ns - fr) ons o~ns - g) ons o~ns - + .group p p p p (p _) paarl p&:r@L // Paarl/Paarlberg/Paarlvallei pajama p@dZ'A:ma //pajama and compounds pak (A pak? // pakesel/pakos/verpakafdeling - pakistan p%ak%istan //first a and stress + pakistan p%ak%istan //first a and stress pakke (t p%akE // pakket/-te and compounds panga paNga // fix g sound: panga/-s - papaja pap'AIa //papaja and compounds + _) pan (to p%an // move default stress: pantoffel and compounds/pantoen + papaja p%ap'A:ia //papaja and compounds + papawer p%apA:v@r // move default stress: papawer/-s and compounds pam (C p%am // move default stress: pamflet/pampoen/pampoentjies and compounds pam (pa pam // restore default stress: pampas and compounds - pape (gaai p%ap@ //papegaai and compounds: stress, a and e sounds + pape (gaai p%ap@ //papegaai and compounds: stress, a and e sounds pa (niek p%a // paniek/paniekerig pantser pants@r // fix e sound in compounds starting with pantser pa (pier p%a // papier and compounds - + parle (ment p%arl@ // move default stress and fix e sound: parlement and compounds, eg. + parti (tu p%art@ // fix stress and i sound: partituur/partiture and compounds pa (tat p@ // patat/warmpatat/wurgpatat + patie (K p%at'i //words ending in patie has stress at end + a sound/simpatiek para (C ,para //paralel, paragraaf etc. parade (K p@rA:d@ // parade and compounds par (C@ p%ar // (ge)parkeer/parkeerplek/party(keer/maal...)/parfuum/parmantig @@ -1430,25 +1842,31 @@ C) ensie (_ @) enswaar (dig @ns pawil (joe p%av@l // move default stress and fix a sound: pawiljoen and compounds polio po@li;u // polio and compounds // @) pene (_ p@n@ // geroepene/ontslapene/uitgeworpene - pene (_ p@n@ // geroepenes/ontslapenes/uitgeworpenes + pen (dule p%En // move defaul;t stress: pendule/-s + pene (_ p@n@ // geroepenes/ontslapenes/uitgeworpenes + pensi (oen p%EnS%i; // move default stress: pensioen and compounds _) perde p'&:rd@ @) perde (_ p&:rd@ // compounds ending with perde pe) perde (_ p@rd@ //gepeperde, ongepeperde - ras) perde (_ p@rd@ //gerasperde and compounds - snip) perde (_ p@rd@ //words ending in snipperde + ras) perde (_ p@rd@ //gerasperde and compounds + snip) perde (_ p@rd@ //words ending in snipperde tem) perde (_ p@rd@ //words ending in temperde @) pere (_ pe@r@ // compounds ending in pere indicating the fruit skam) pere (_ p@r@ ?? shorten 1st e in ending perfek p@rfEk // perfek/-te/-sie/-sionis + peri (o p%e@r%i; // stress: periode/-s and compounds pe (rron p@ // move default stress and fix e sound: perron and derivitives - r) peling (_ p@l@N //verwerpeling etc. - peloton pEl@t'On + r) peling (_ p@l@N //verwerpeling etc. + peloton pEl@t'On permanen p&rman'En // permanent/e/permanensie permit p@rm'It per (so p@r // persoon/persone perso (neel p%&rs%u // personeel and compounds pervers p@rf&rs // pervers/perversie + _) pe (trA_ pe@ // lengthen e sound: Petro/Petra + _) pi (la p%i // move default stress: pilaar/pilare/pilatus pi (sto p@ // pistool/pistole and compounds + pizza pitsa // fix zz sound: pizza and compounds pla (fon pl%a // plafon and many compounds _) pla (kka pl%a // move default stress: plakkaat/plakkate plane (tA pl%an@' // planetarium/interplanetêr @@ -1457,31 +1875,43 @@ C) ensie (_ @) enswaar (dig @ns plesier pl@s'i:r plig plIx2 // fix i sound: dienspligontduiker/pliguitvoering @) pligtig pl'Ix2t@x2 // pligtig in compounds takes stress: dienspligtige, etc. + pof (add pOf_ // fix o sound: (konings)pofadder/-s + po (liep p%u // fix stress and o sound: poliep/-e/-agtig and compounds of poliep polisie pul'isi politiek pOl@t'ik popu ,pOpy _) por (C %pOr //portret portaal etc. + por (sie pOr // restore default stress: porsie/-s/-tjie portu (ge p%Ort%y // fix stress: Portugees/Portugese _) pos (a pOs //posadres/posadministrasie - _) post (K p'@Ust- //post where it means after + _) post (K p'@Ust- //post where it means after + _) post (u p%Ost // move default stress: postuur/posture/postuum and compounds of postuur + ra) pporte (rA p%Orte@ // fix stress and e sound: rapportering/rapporterende _) prak (tyk pr%ak // stress: praktyk and compounds + prefek prifEk // fix vowel sounds: prefek/-te/-tuur and compounds + pre (lud pr@ // fix stress and e sound: prelude/-s/(ge)preludeer pre (mier pr@ // move default stress and fix e sound: premier and compounds pre (sA pr@ // president/presies/present + pre (se_ pre@ // fix e sound of words ending in -prese primi (t pr@m@ // make i sounds schwa: primitief/primitiewe + prinsi (pA pr@ns@ // move default stress: prinsipaal/prinsipale/prinsipaals/prinsipieel/-ële + prinsipe (K pr@nsip@ // stress on 2nd slb.: prinsipe/-s ple (k pl& posisie puz'isi predi (kant pr%e@d@ // predikant and compounds prinse (s pr@nsE // prinses/-se|-sie/-s - privaat prif'A:t - pro (blA pr%u // probleem/probleme - profesie prOf@s'i // fix vowel sounds and move stress + priv (a@ pr%if // privaat/private + pro (blA pr%u // probleem/probleme + profesie prOf@s'i // fix vowel sounds and move stress pro (CA pr%u // probeer/produk/proses/professie/provinsie - prosa pr'o@sa //prosa and compounds - proses (_ prus'Es //proses at end of word + prokie pro@k%i //sprokie and compounds + proposi pr%Op@zi // stress, o and s sounds: (besigheids)proposisie/-si, etc. + prosa pr'o@sa //prosa and compounds + proses pr%usEs // proses/versoeningsproses/strafproseswet - projek pruj'Ek + projek pr%ujEk proku (rA pr%Ok%y // prokureur and compounds/prokurasie - prominen prOmin'En // prominent/e/prominensie + prominen prOmin'En // prominent/e/prominensie propag ,prOpax2 prosedure prOs@d'yr@ @@ -1494,6 +1924,7 @@ C) ensie (_ @) enswaar (dig @ns pub (li p%Wb puntener p%Wnt@ne@r // stress and 2nd e sound: puntenerig and derivitives + pu (pil p%y // move default stress: pupil/-le and compounds .group q @@ -1501,6 +1932,7 @@ C) ensie (_ @) enswaar (dig @ns q (q qu _^_EN // words containing qu are English + quix (otie kw%iks // avoid translation by English rules: quixoties/-e .group r @@ -1520,65 +1952,80 @@ C) ensie (_ @) enswaar (dig @ns ra (ntsoen r%a // move default stress: rantsoen and compounds _) ra (pport r%a // fix stress: rapport/skoolrapport/rapportryer rasse ras@ // e sound of compounds starting with rasse + ribbe (tj r'Ibi + rinne (w r@n@ // move default stress: (ge/ver)rinneweer/-de/-der + ritme rItm@ // fix e sound in ritmes/ritmespeler + ritu (A r@t%y // ritueel/rituele/ritualisties + _) rol (A rOl? // oprolaksie/roloorvleueling + roetine r%utin@ // stress: roetine/-basis/-besoek/-kontrole... + _) roode r'o@d@ //roodepoort and other names + + roman rum'an + &) ring (_ rIN + rring r@N // karring/torring + + &) rm (K r@-m + @) rn (K r@-n + + rivier r@f'i:r + _) ri (g rI // stress on 1st slb.: rigting/-loos/-vas, etc. + rond (r rOnt // grondreuk/grondrel/rondreis/-rol/-ry + rondom rOnt_%Om // rondom/rondomheen/rondomstaner + rolprent rOlprEnt // rolprent/rolprentvertoning and other compounds + ru (briek r%W // move default stress: rubriek/-skrywer, etc. + rugby rWgbi + ru (moer r%W // fix stress and u sound: rumoer/-ig/-heid +.group re rea (ks r%ia // reaksie/s/skokreaksie rea (C r%i%a // reageer/realis/me|ties re (bel r@ // move stress from 1st slb + recce rEki // fix e and c sounds: recce/-s + re (dakC r@ // fix stress and e sound: redaksie/redakteur and compounds _) redel re@d@l //redelik and compounds _) rede (C re@d@ // redevoerder/redekawel and similar redeneer r@d@n'e@r // redeneer/geredeneer/beredeneer/beredeneerde reden (ACA r@d@n' // redenasie/s _) redi (gA r%Ed%i // redigeer/geredigeer/-de/ongeredigeerde refor (m r@f%Or // gereformeerde/reformering/reformasie + regime (_ r@Zi:m // regime/-s and compounds reg (ist r@x2 // registrasie/-nommer/register/bevolkingsregister regverdig r&x2f'&rd@x2 // regverdig/onregverdige/regverdigheid - verwyder uit af_list re (kru r@ // move stress from 1st slb + _) re (la r@ // relaas/relase/relasie and compounds rele (van r@l@ // relevansie/relevant and derivitives + rem (_ rEm // handrem/kabeltrem/kragrem/noodrem/skyfrem/stadstrem/veiligheidsrem re (nA r@ // move stress from 1st slb.: renoster + reper (kus r%e@p@r // stress: reperkussie/-s + re (produ r%e@ // fix stress and e sound: reproduksie/reproduseer repu (t r%Epy // move stress from 1st slb - rewol (u r%Ev%Wl //rewolusie and friends - rewolwer r@v'Olv@r //rewolwer and friends + rewol (u r%Ev%Wl //rewolusie and friends + rewolwer r@v'Olv@r //rewolwer and friends - restaur r%Est%ur //stress and au exception + restaur r%Est%ur //stress and au exception re (to r@ // move stress from 1st slb renons r@no~ns // stress on 2nd slb and nasalisation relase r@lA:s@ // relase/s rele (gA r@l@ // relegeer/relegasie - repet rEp@t + repet rEp@t republiek r@pWbl'ik // republiek/e/ie/sowjetrepubliek &) rering (_ re@r@N //strukturering, demonstrering etc. - resul (tA r@sWl' // resultaat/resultate/eksamenresultaat... + resul (tA r@sWl' // resultaat/resultate/eksamenresultaat... resep r@sEp // resep/resepte/resepteboek reserwe r@z'&rv@ - ribbe (tj r'Ibi - ritu (A r@t%y // ritueel/rituele/ritualisties - _) rol (A rOl? // oprolaksie/roloorvleueling - _) roode r'o@d@ //roodepoort and other names - - roman rum'an - &) ring (_S4 rIN - rring r@N // karring/torring - - - &) rm (K r@-m - @) rn (K r@-n - s) rede re@d@ // bestaansrede/feesrede reg r&x2 - reke (nA re@k@ // rekenaar/sakrekenaar/rekenaarprogram/hoofrekene + reke (nA re@k@ // rekenaar/sakrekenaar/rekenaarprogram/hoofrekene rekord r'EkOrt o) rene r@n@ // eersgeborene/uitverkorenes - rivier r@f'ir re (geer r@ // regeer/geregeer; stress to end reger (A r@x2e@r // regering/regerende resensie r@s'E:nsi resensent r@s@ns'Ent respek r@spEk respek (teer r@sp%Ek // stress to end - rond (r rOnt // grondreuk/grondrel/rondreis/-rol/-ry - rugby r'Wgbi &) rele (_ r'e@l@ - rondom rOnt_%Om // rondom/rondomheen/rondomstaner - rolprent rOlprEnt // rolprent/rolprentvertoning and other compounds + &A) reel (_ r'e@l // stress: immoreel/kultureel/struktureel/tekstureel/temporeel + .group s @@ -1590,76 +2037,111 @@ C) ensie (_ @) enswaar (dig @ns u) s (_ s // exceptions to rule: @@@) s (_S1 s sch S sh (_ S + _) sh S // sh at beginning of word pronounced like English sh sj S + sjampanje S%ampanj@ // move default stress: sjampanje and compounds + sjerrie SEri // fix e sound: sjerrie and compounds sjokolade SOk@l'A:d@ // sjokolade and compounds s (japie s // dorpsjapie/plaasjapie/stadsjapie - @) sj (aar sj // diensjaar/lewensjaar/begrotingsjaar - @) sj (are sj // apartheidsjare/oesjare + @) sj (aar sj // diensjaar/lewensjaar/begrotingsjaar + @) sj (aCA sj // apartheidsjare/oesjare/beroepsjaloesie sigare (t s@x2%arE // fix vowel sounds and move default stress sig (a@ s@x2 // sigaar/sigare/sigaardosie siklu (s siklW // siklus and many compounds sili (nd s@lI // silinder(s)/silinderkoppe + sinteties s@nte@tis // sinteties/e/fotosinteties/-e si (viel s@ // move default stress and fix i sound: siviel/-e s (iën S - sending (_ sEnd@N //fix sending at word end + selek (CA s@lEk //seleksie selekteer etc. + sending (_ sEnd@N //fix sending at word end - D_) ste st@ //ste after numbers 22ste etc. saamge (P6 s'A:mx2@ // saamgepers/-de/saamgetel/saamgeêet + saamgee sA:mx2e@ // fix ee in saamgee; see rule: saamge (P6 sabot (A s%ab%ut // sabotasie/saboteer salaris s@lA:r@s // salaris/aanvangsalaris/salarisskaal/-uitbetaling salon salOn // eetsalon/haarkappersalon + _) sam (b s%am // move default stress: sambok/-kke/sambreel/sambrele and compounds _) same (@P4 s'A:m@ // samekoms/sameswering samel (C sA:m@l // versamelde: see rule:_) same (@P4 s'A:m@ - samen sA:m@n // gesamentlik/-e + samen (+ sA:m@n // gesamentlik/-e + _) san (da s%an // move default stress: sandaal/-tjies/sandale + _) sar (d s%ar // sardien/-blikkie/sardinies/sardyne + sar (kA s%ar // move default stress: sarkasme/sarkasties/sarkoom sa (tir s%a // move default stress: satire/satiries/-e + _) schu (C Su // fix u sound: Schubert/Schultz/Schumann/Schumacher _) sede se@d@ // sede/-s|-preek seker se@k@r // versekering/sekerheid/onsekerheid/sekere se (ko s@ // sekond/sekonde/sekondes/sekondant sekre (ta s@kr@ se (ku s@ // sekuriteit/sekuur seku (l s%Ek%y // sekulër/sekulariseer - + &) sele (_ s'e@l@ no) sele (_ s@l@ // e sounds in onnosele + self (stan s%&lf // move default stress: selfstandig/-e/-heid seli (ba s%El%i // move default stress and fix e sound: selibaat/selibate + se (llin s%&' // stress on 'in: (met)gesellin/-ne/-netjie, etc. @) sel (wig s'&l // stress: (ver)eenselwig and derivitives _) semen (t s@mEn // sementtafel/blad/vierkant semi (na s%Em%i // seminaar/seminare/seminarium sening se@n@N // sening/haaksening/heupsening + _) senior s''i:ni@r // default stress; fix vowl sounds: senior and compounds starting with senior + senior (itei s%i:n%i%Or // fix vowel sounds: senioriteit sen (trale s%En // exception to default stress rule + _) ser (e@ s@r // fix stress and 1st e sound: sereen/serene sere (moni s%Er@ // seremonie/-meester/huwelikseremonie/seremonieel ser (sant s@r // move default stress: sersant and compounds ser (vet s@r // servet and compounds, e.g. servetring + ses (uur sEs_ // fix e sound and insert short break: sesuur/-nuus, etc. setel (K se@t@l // setel and compounds; to avoid "=tel" suffix + sete (ne_ se@t@ // fix e sound: besetenes/aangesetene/ingesetene siaal Si'A:l // potensiaal/provinsiaal siale Si'A:l@ // provinsiale/asosiale/nupsiale C) s (ieel S // potensieel/finansieel C) s (iële S // potensiële/finansiële + simp (to s@m // move default stress and drop p: simptoom/simptome/simptomaties si (nnig s'I // sinnig in compounds has stress: dubbelsinnig/geheimsinnig/kranksinnig siniste (r s@nIst@ // sinister/sinistere/sinisters + sirene s@re@n@ // move default stress and fix vowel sounds: sirene/-s/-lied/-sang skade skA:d@ // elik suffix rule breaks a sound of (on)skadelik skadu skA:dy // skaduagtig/skadutjie skaker (ing sk%ake@r // skakering/-s/kleurskakering + skan (da sk%an // move default stress: skandaal/skandale/skandalig and compounds + _) skar (C sk%ar // move default stress: skarlaken/skarminkel/skarnier and many compounds + skarrel skar@l // restore default stress: (ge)skarrel/-ing + _) ske (let sk@ // fix stress and 1st e sound: skelet and compounds skemer ske@m@r // fix 2nd e in many compounds and derivitives of skemer- sker (muts sk%&r // move default stress: (ge)skermutsel/skermutseling/-e + skilder (y sk@ld@r // move stress to y: skildery and compounds like skilderymuseum sko (lier sk%o@ // move default stress: skolier/-e + skyn (hei sk%eIn // move default stress: skynheilig/-e/-heid _) slag sl'ax2 + sla (vin sl%a // move default stress and shorten a sound: slavin/-ne and compounds @) sering s'e@r@N // analisering/kategorisering @) ses (_ s@s // fix 2 slb. words ending in ses sodom (iet s,o@dOm // fix stress + so (ffleu s%u // move default stress and fix o sound: suffleur/soffleuse _) soie so@?i // soiets/soiemand + _) sol (da s%Ol // move default stress: soldaat/soldate and compounds sol (dy s%Ol // fix stress: soldy and compounds so (lie s%O // stress and o sound: solied/-e so (lid s%O // konsolidasie/solidariteit + so (natA s%u // move default stress and fix o sound: sonate/-s and compounds so (pra s%u // move default stress and fix o sound: sopraan/soprane - spelagtig sp&l'ax2t@x2 // skouspelagtig/e/heid/klugspelagtig + span (dab sp%an // move default stress: spandabel/-rig, etc. + span (jAA sp%an // move default stress: Spanjaard/-e/Spanjool + spartel spart@l // fix stress and e sound: spartel/-end/-ing + spek (takel sp%Ek // move default stress: spektakel/-s + spelagtig sp&l'ax2t@x2 // skouspelagtig/e/heid/klugspelagtig e) spel (_ sp&l //klokkespel/snarespel/driespel/hokkiespel/puntespel/putjiespel C) spel (_ sp&l // many compounds ending in spel after consonant &) spele (_ sp'e@l@ spese (ry sp@s@ // spesery and compounds and derivitives spoed (@ sput // spoedaflewering/spoedeisend/spoedorder spoed (ig spud // spoedig/-lik/-er/-ste + _) spon (ta sp%On // move default stress: spontaan/spontane + spreekwoordeli spr%e@kvo@rd@l@ // move default stress: spreekwoordelik/-e, vs. spreekwoord sproke spro@k@ // see rule: pro (CA pr%u : aangesprokene/onbesproke, etc. self (_ s'&lf // myself/vanself // self s'&lf @@ -1667,14 +2149,18 @@ C) ensie (_ @) enswaar (dig @ns september s@pt'Emb@r @) sief (_ s'if // massief/aggressief/passief/intensief @) siewe (_ s'iv@ // massiewe/aggressiewe/passiewe/intensiewe - _) sieke sik@ // siekeboeg/-fonds/-lys/-lokaal/-loon + _) sieke sik@ // siekeboeg/-fonds/-lys/-lokaal/-loon + si (llabe s@ // move default stress: sillabe/-s silwer sIlv@r // silwerskoon/silwerware/compounds of silwer + sim (bo s@m // move default stress: simbool/simbole/simbolies/-e + simbo (liek s@mb%u // fix stress and vowel sounds: simboliek and compounds + simpo (siA s@mpo@ // fix stress and o sound: simposium/simposia and compounds // sioe Si'u - si (o Si // fisiologie/-logiese/-loog + si (o Si // fisiologie/-logiese/-loog sio (ne Siu' // emosioneel/emosionele/rasioneel/rasionele, etc. sistem sIst'e@m situasie sItSu'A:si - @) skaplik sk'apl@k // -skaplik always takes stress + @) skaplik sk'apl@k // -skaplik always takes stress @) skappy skap'eI // heerskappy/maatskappye skerp sk&rp skoonge (C sko@nx2@ // skoongewaste/skoongevee/skoongeboul @@ -1684,7 +2170,7 @@ C) ensie (_ @) enswaar (dig @ns sonde (C@ sOnd@ // sondebok/sondelas son (geC sOn // songebakte/-brande/-bruinde/-droogde sosial (i so@Sial' // sosialis/sosialisme/sosialisties - so (v s'o@ // soveel/sover + so (v so@ // soveel/sover soverre so@f'&r@ // stress: se rule: so (v s'o@ // soveel/sover speku (lA sp%Ek%y // spekulasie/spekuleer/spekulatief @) sper (a sp@r' //desperate/desperaatheid/rasperagtig @@ -1694,13 +2180,37 @@ C) ensie (_ @) enswaar (dig @ns spesialis (A spESialis spesialis spESal'Is spesi (f sp%Es%I // spesifiek/spesifiseer - @) spre (kend spr'e@ // stress: vanselfsprekend + @) spre (ken spr'e@ // stress: vanselfsprekend + _) ste (ri st%E // fix stress and e sound: steriel/-e/steriliteit + stimu (lA st@m%y // move default stress and fix i sound: stimuleer/stimulering/stimulasie + sub (li s%Wb // move default stress: subliem/-e + sub (stansie s%Wp // move default stress and fix b sound: substansie/-s/substansieel/-siële + sub (ti s%Wp // stress and b sound: subtiel/-ste/subtiliteit + sugges s%Wx2Es // suggestie/suggestief/suggestiewe + @) sug (tig s'Wx2 // eersugtig/onbaatsugtig/onselfsugtig, etc. + suid (oos s%Yyt_ // move default stress and insert short break: suidoos/-te/-lik + sukses s%WksEs // sukses/suksesse/suksesvol/reusesukses + _) su (meri s%u // fix stress and u sound: sumeries/-e + su (mmier s%W // move default stress: sumier/-e + su (saC s%u // fix stress and u sound: susan/-na/susara + swag sv'ax2 + swart (gal sw%art // move default stress: swartgallig + @) swem (_ swEm // fix e sound of compounds ending in swem: uitswem/wegswem... + swerk sv&rk + swinkel svINk@l + +.group st + D_) ste st@ //ste after numbers 22ste etc. stan (da st%an // standaard/-e/standardisering - standerd (@ st%and@rt // compounds starting with standerd + standerd (@ st%and@rt // compounds starting with standerd + stapel stA:p@l // fix e sound: (op)stapeling/stapelaar staties st'A:tis steding ste@d@N // besteding and compounds - wor) stel st@l //worstel e sound in compounds + C) steker ste@k@r // e sound: (aan/dop/kwaad/rugsteker/-s/-y, etc. + wor) stel st@l //worstel e sound in compounds @) stel (iC st@l // eersteling/gunsteling/wellusteling/worsteling/eerstelig and compounds + @) ste (llen st'& // belangstellendes/gerusstellend/regstellende/teleurstellend + teen) ste (llen st& // restore default stress: teenstellend @) stelik st@l@k // oostelik/christelik/beestelik ste (l st& apo) stel st@l // apostel and compounds @@ -1730,103 +2240,161 @@ C) ensie (_ @) enswaar (dig @ns stok (e sto@k // stoker/-y storm stOr@-m strategie strat@x2'i - streke str'e@k@ + streke stre@k@ struikel str'Yyk@l // struikelblok/struikelaar/struikelend - stu (deer st%y // move default stress - sub (ti s%Wp // stress and b sound: subtiel/-ste/subtiliteit - @) sug (tig s'Wx2 // eersugtig/onbaatsugtig/onselfsugtig, etc. - sukses s%WksEs // sukses/suksesse/suksesvol/reusesukses - su (mmier s%W // move default stress: sumier/-e - swag sv'ax2 - swart (gal sw%art // move default stress: swartgallig - swerk sv&rk - swinkel svINk@l + stu (de st%y // move default stress + .group t t t t (t t (_dN // final t, and next word starts with d A) tch _^_EN // clutch/pitch/bitch + tabak tab'ak; + tafe (re t%af@ // fix vowel sounds: tafereel/taferele and compounds @) talig t'A:l@x2 // Anderstalig/tweetalig _) ta (ma t%a // tamatie and compounds _) ta (mb t%a // tamboer and compounds/tambotie and compounds + _) tande (C@ t''and@ // fix e sound: tandebeker/-pasta/-poeier/-trekker _) tant (e tA~nt // nasalise taverne t%af&rn@ // fix stress and 1st e sound: taverne and compounds + taver (nier t%af@r // move stress to end: tavernier/-s + + @C) t (eny t // to enable rule: @C) eny (_ @n'eI + adver) t (e t' // advertensie/afdeling/agent + t (ema++ t // compounds with tema + + tia (_ Sja + _) tibet t%ibEt // move default stress: Tibet/-aans/-e + @) tief (_ t'if // alternatief/aktief/instinktief/(ak)kumulatief + @) tiewe (_ t'iv@ // alternatiewe/aktiewe/instinktiewe/(ak)kumulatiewe + ti (ra t%i // move default stress tiran tirade + tj tS + tj (ie c + _) tj (ie tS + ui) tj tj // uitjaag/uitjou/uitjubel + ui) tjie ci // beskuitjie/fluitjie/ruitjie/uitjie, etc. + _) th (@@ t + _) th _^_EN // if only one vowel character + @) th (_N _^_EN + + @) tion (_ _^_EN //words ending in tion is English + @) tions (_ _^_EN //words ending in tions is English + toegank t%ux2'aNk // toeganklik/heid + toenemen tun'e@m@n //toenemend/e/er + toereike t%ureIk@ // toereikend/heid + toereken (b t%ur'e@k@n // ontoerekenbaar/heid/ontoerekenbaarheid + toneel t%une@l + toegeef t%ux2e@f // move default stress: (on)toegeeflik/-e/-heid + toege (wing t'ux2e@ // exception to _) toege (@P5 tux2@ + _) toege (@P5 t'ux2@ + toe (kome t%u // move default stress: toekomende + toe (laatba t%u // move default stress: (on)toelaatbaar/-bare/-baarheid + toer (@ t%ur // move default stress: toeris/-te/compounds of toernooi + toere tu:r@ // restore default stress + toe (vallig t%u // exception to default stress rule + toi (let t%OI // move default stress: toilet and compounds + @) toris (_ t'o@r@s // fix stress: pectoris/klitoris + tra (dis tr%a// shorten and unstress 1st slb: tradisie/tradisioneel + trag (ed tr%ax2 // move default stress: tragedie and compounds + tra (jek tr%a // move default stress and shorten a sound: trajek/-te + trap (soe tr%ap // move default stress: trapsoetjies/-e + traw (a trav' // trawant/e/trawal + &) treding tre@d@N // betreding/uittreding + @) treer tr'e@r // this slb always takes stress; many words + tref (afs trEf_ // fix e sound and insert short pause: trefafstand/-e + + trek tr&k + trekker tr&k@r // voortrekkerleier/Voortrekkerstraat/salaristrekkersvergadering + @) trise (_ tr'is@ // aktrise and similar + _) trom (b tr%Om // move default stress: tromboon/trombone/trombose and compounds + _) trom (pet tr%Om // move default stress: trompet/-tte/-tter and compounds + tro (tseer tr%O // stress: trotseer/getrotseer + tro (tsering tr%O // move default stress + tru (spieë try // fix u sound: truspieël/-tjie/-s + ttel t@l // many compounds of bottel/skottelgoed + tuiglik t'Yyx2l@k // stress: werktuiglik/sintuiglik/-e/-heid + tuimel tYym@l // tuimelend/tuimelaar/tuimelraam and compounds + tuin (ier t%Yyn // move default stress: tuinier and compounds + tussen tWs@n // tussenin/tussenbeide/tussenganger + tuur t'yr + parti) tuur ty:r // compounds ending with partituur take default stress: musiekpartituur + s) tuur ty:r // "uur" in stuur takes default stress: weggestuur + @) ty (dig t'eI // gelyktydig/vroegtydig + + +.group te + te (_ t@ //fix ligte, berigte and others te (aa t@ // beroerteaanval/geboorteaanwas/lenteaand... + teater t%iA:t@r // fix stress and e sound: teater and compounds + tea (tra t%i%a // fix stress and vowel sounds: teatraal/teatrale + teen (argu t''e@n // forse stress on 1st slb.: teenargument/-e/-asie + @C) te (gn t& //tegniek/iese and friends _) tekere t@ke@r@ // move default stress and correct e sounds - tele (C t%&l@ // telefoneer/telekommunikasie, etc. - @C) te (nk t& ++ //tenk and friends - @C) te (C t@ /// - @C) te (lbord t& // krieket-/tennistelbord, etc. + _) teks (tu t%Eks // move default stress: tekstuur/teksture + _) tele (C t%&l@ // telefoneer/telekommunikasie, etc. + @C) te (nk t& ++ //tenk and friends + @C) te (C t@ /// + te (kkie+ tE // fix e sound: tekkie/-s/staptekkies and similar + @C) te (lbord t& // krieket-/tennistelbord, etc. @C) te (k_ t& // tydsbestek/uitstek ap) teke te@k@ // apteke/apteker and compounds te (oC t%i% // teologie/-loog/-logies/teorie/teoreties - @C) t (eny t // to enable rule: @C) eny (_ @n'eI - tempera ,tEmp@-r%a //temperatuur, temperament etc. + tempera ,tEmp@-r%a //temperatuur, temperament etc. teks (+ tEks // compounds with teks - adver) t (e t' // advertensie/afdeling/agent - t (ema++ t // compounds with tema tent (_ tEnt //suurstoftent and others te (oo t@ // geboorteoorskot/kosteoorweging/siekteoorsaak/terroristeoorlog _) teraarde t%&r?A:rd@ // move default stress and fix e sounds: teraardebestelling/-s n) terie t@r'i // galanterie/infanterie and compounds + wa) te (ring t@ //water exception to rest + Ca) te (ring t'e@ //opdatering formatering etc. _) tering te@r@N // tering and compounds - tesou (rie t%Es%u //tesourie and compounds + tesou (rie t%Es%u //tesourie and compounds moles) tering te@r@N // molestering/kindermolestering _) ter (l t@r // move default stress: terloops/-e @) term (_ t&r@ // correct pronunciation of e @) terme (_ t&rm@ // correct pronunciation of 1st e - tern (K t'&:r@-n //lantern ekstern etc. + sin) te (ti te@ //sintetiseer, compounds and derivitives + tern (K t'&:r@-n //lantern ekstern etc. tern (e_ t'&rn // interne/eksterne _) ter (nA t@r // terneergedruk/ternouernood te (rrA t@ // terras/terrein/terreur and compounds + terra (c t&ra // fix stress and e sound: terracotta and compounds terror (is t%Er%ur // terroris/-te/-isme/-istiese _) ter (s t%&r // tersake/terselfdertyd/tersluiks/terstond/tersyde - tese (_ t'e@s@ //sintese, and others + tese (_ t'e@s@ //sintese, and others tesi (s te@s@ // tesis/-se and compounds A) teur t'Y@r // outeur/ouditeur/operateur k) teur t'Y@r // akteur/inspekteur - tabak tab'ak; teen (stryd t%e@n // move default stress: teenstrydig/-e/-heid teen (woor t%e@n // teenwoordig/heid/verteenwoordiging _) te (we t@ // move default stress and fix 1st e sound: teweeg/tewerkstelling _) tewens te@v@ns // fix both e sounds tevore t@f'o@r@ // tevore/vantevore - tia (_ Sja - @) tief (_ t'if // alternatief/aktief/instinktief/(ak)kumulatief - @) tiewe (_ t'iv@ // alternatiewe/aktiewe/instinktiewe/(ak)kumulatiewe - ti (ra t%i // move default stress tiran tirade - tj tS - tj (ie c - _) tj (ie tS - ui) tj tj // uitjaag/uitjou/uitjubel - ui) tjie ci // beskuitjie/fluitjie/ruitjie/uitjie, etc. - @) teken te@k@n + @) tek (en te@k teken (A te@k@n // compounds of betekenis/tekening tekor t@k'Or // deelteken/koppelteken/litteken/handtekening/ondertekende - _) th (@@ t - _) th _^_EN // if only one vowel character - @) th (_N _^_EN tenaar t@nA:r tes (_ t@s - &) tel (_S3 t@l - ttel t@l // many compounds of bottel/skottelgoed + &) tel (_ t@l teleur t@lY@r // teleur/teleurstelling/teleurgesteld &) tels (_S4 t@ls - sleu) tel t@l //sleutel in compounds - tel t&l + sleu) tel t@l //sleutel in compounds + te (l t& teltjie t@lki @) tel (o t@l // hartelose/besluiteloos/gedagtelose - wa) tert t@rt + &) tert (A t@rt // fix e sound: agtertoe/foltertuig/gietertuit/kilometertoelae/lastertaal/letterteken + &) tert (r t@rt // fix e sound: pleistertroffel/venstertralie/ystertralies/ystertrap + &s) tert (aan t&:rt // fix e sound: swa(w)elstertaandpak/-ke + &s) tert (e_ t&:rt // fix e sound: swa(w)elsterte/vissterte + wa) tert t@rt &) tert t&rt &) tertjie t@rki @) ter (tyd t@r // mettertyd/pinkstertyd/toentertyd - _) toege (@P5 t'ux2@ - _) tege (CA t@x2@ // tegemoet/tegemoetkom/tegemoetkomende/tegemoetgekom/tegelyk _) terug (@P5 t@-r'Wx2 _) terugge (@P7 t@-r'Wx2@ @@ -1838,42 +2406,19 @@ C) ensie (_ @) enswaar (dig @ns tera (pA tEra' // terapie/terapeutterapeuties _) tereg t@r&x2 // teregwysing/teregstelling/tereghelp/tereg _) tever (@ t@f@r - tevrede t@fr'e@d@ - as) terende (_ t'e@r@nd@ //kontrasterende - ek) terende (_ t'e@r@nd@ //reflekterende respekterende - - n) terende (_ t'e@r@nd@ //konfronterende mensonterende - pe) terende (_ t'e@r@nd@ //kompeterende - i) terende (_ t'e@r@nd@ //presipiterende moniterende - ul) terende (_ t'e@r@nd@ //konsulterende resulterende - ver) terende (_ t'e@r@nd@ //verterende in compounds - - @) tion (_ _^_EN //words ending in tion is English - @) tions (_ _^_EN //words ending in tions is English - toegank t%ux2'aNk // toeganklik/heid - toenemen tun'e@m@n //toenemend/e/er - toereike t%ureIk@ // toereikend/heid - toereken (b t%ur'e@k@n // ontoerekenbaar/heid/ontoerekenbaarheid - toneel t%une@l - toege (wing t'ux2e@ // exception to _) toege (@P5 tux2@ - toer (@ t%ur // move default stress: toeris/-te/compounds of toernooi - toere tu:r@ // restore default stress - toe (vallig t%u // exception to default stress rule - tra (dis tr%a// shorten and unstress 1st slb: tradisie/tradisioneel - trag (ed tr%ax2 // move default stress: tragedie and compounds - traw (a trav' // trawant/e/trawal - &) treding tre@d@N // betreding/uittreding - @) treer tr'e@r // this slb always takes stress; many words + tevrede t@fr'e@d@ + as) terende (_ t'e@r@nd@ //kontrasterende + ek) terende (_ t'e@r@nd@ //reflekterende respekterende + k) te (ring t'e@ //selektering, reflektering etc. + + n) terende (_ t'e@r@nd@ //konfronterende mensonterende + pe) terende (_ t'e@r@nd@ //kompeterende + i) terende (_ t'e@r@nd@ //presipiterende moniterende + ul) terende (_ t'e@r@nd@ //konsulterende resulterende + ver) terende (_ t'e@r@nd@ //verterende in compounds + C) te (tjie ti // fix e sound: holtetjie/groentetjies/laagtetjie, etc. + tewe (_ te@v@ // fix e sound: (agter/voor)stewe/tewe and compounds - trek tr&k - trekker tr&k@r // voortrekkerleier/Voortrekkerstraat/salaristrekkersvergadering - @) trise (_ tr'is@ // aktrise and similar - tro (tseer tr%O // stress: trotseer/getrotseer - tro (tsering tr%O // move default stress - tuimel tYym@l // tuimelend/tuimelaar/tuimelraam and compounds - tussen tWs@n // tussenin/tussenbeide/tussenganger - tuur t'yr - @) ty (dig t'eI // gelyktydig/vroegtydig .group u @@ -1882,21 +2427,28 @@ C) ensie (_ @) enswaar (dig @ns u (CA y uu y ui Yy + uiwe Yyv@ //druiwesap and many others uie (C Yy@ // graansuierdiens/kruiersloon/kuiergas/luierbroekie/sluierdoek/suierklep/getuienis uy Yy uit (bund %Yyt // move default stress: uitbundig and derivitives + uit (dagen %Yy // move default stress: uitdagend/-e uit (druk %Yyt // move default stress uit (druk_N Yyt uit (drukking_ Yyt // but default stress: uit (drukkings Yyt // and compounds starting with uitdrukkings uitgee (+ 'Yytx2e@ // se rule: _) uitge (@P5 Yytx2@ - uitstaande %YytstA:nd@ // move default stress + uitsonderli (k %YytsOn@rl@ // move default stress: uitsonderlik/-e vs. uitsonder + uit (sorteer ''Yyt // remove stress from -eer and place on 1st slb + uitspreekl %Yytspre@kl // fix stress and avoid -lik suffix: onuitspreeklik/-e + uitstaan (C %YytstA:n // move default stress: uitstaande/onuitstaanbaar/-bare uit (steken %Yyt // move default stress uit (spatt %Yyt // move default stress _) uitge (@P5 'Yytx2@ // words beginning with uitge have stress on 1st slb uitgewer 'Yytx2,e@v@r uitgewerk Yytx2@v&rk // uitgewerk and derivitives; see rule: uitgewer + uitgewerp Yytx2@v&rp // fix vowel sounds, see rule: uitgewer + uitke (n YytkE // mix e sound: uitken C) uiwer (A Yyv@r // huiwerend/suiweringsaanleg and similar compounds ulti (ma %Wlt%i // move default stress: ultimatum/-s u (ra %y // uraan and compounds/uranus @@ -1916,9 +2468,14 @@ C) ensie (_ @) enswaar (dig @ns v (v @) vaardig f'A:rd@x2 // diensvaardig/hulpvaardig/onboetvaardig/strydvaardig uit) vaardig fA:rd@x2 // but uitvaardig + vagina vax2ina // fix v sound and shorten a sound: vagina/-s + vagin (A@ v%ax2%in // move default stress: vaginale and similar vakansie f@k'ansi + _) van (@ f%an // (on)vanpas/vanjaar/vandag/vanaand/vanoggend and many similar + _) vang (@ faN // vangwa, etc.; see rule: _) van (@ f%an vangen f'aN@n // gevangene/gevangenis/bevangenheid - van (pas f%an // fix stress: onvanpas/-te + vari (A v%ar%i // fix v sound and stress: variasie/-s/varieer + vati (kaan f%at%i // fix stress and shorten a sound: vatikaan and derivitives and compounds @) ve (_ _^_EN //words ending in ve is English veel (jar f%e@l // move default stress: veeljarig and derivitives A) ves (_ _^_EN // words ending in ves after vowel are English @@ -1926,9 +2483,17 @@ C) ensie (_ @) enswaar (dig @ns ve (l f& // maagvel, stress on 1st slb @) vel (A fe@l // aanbeveling/aanbevelingsbrief vele f'e@l@ + ven (dusie f@n // fix stress and e sound: vendusie and compounds ven (ster fe~n // nasalise ven (yn f@n // venyn/venynig ver f@r + veranda v@randa // fix stress and e sound: veranda and compounds + vere (sto fe@r@ // avoid ver prefix: verestoffer/-s and compounds + vi (o f%i // move default stress: viool and compounds/viole + vio (letK f%i%u // move default stress: violet/-te/-kleurige, etc. + _) vi (ri v@ // fix stress and v and i sounds: viriel/-eviriliteit + virtu v@rtS%y //virtueel virtuose etc. fix v and t sounds and assure lack of stress + ver (kyker f'&:r //verkyker and compounds _) ver (@P3 f@r verant (w f@r%ant // (on)verantwoordelik/-heid/verantwoording verende f'e@r@nd@ @@ -1942,8 +2507,11 @@ C) ensie (_ @) enswaar (dig @ns ver (fris f@r // verfris and derivitives; see rule: verf (C f&rf verfyn f@rf'eIn verf (@ f&rf // verfkwas/-voorraad/-emmer and similar + _) verf (o f@rf // verfoei(lik)/verfomfaai/verfoes, etc.; see rule: verf + verf (rom f@rf // verfrommel/-de/-ing; see rule: verf verf f'&rf _) vergesog f'&:r;x2@sOx2 + _) verlangs f&:rlaNs // fix stress and e sound: verlangs/-e veronderste (l f@rOn@rst'& // stress: veronderstel/-ling _) verse (b f'&:rs@ C) verse (_ f&rs@ @@ -1951,9 +2519,11 @@ C) ensie (_ @) enswaar (dig @ns _) veronge (@P7 f@r'O:Nx2@ verbete f@rb'e@t@ // verbete/verbetenheid verte (l f@rt& // oorvertelling/rondvertel and similar + verter (A f@rte@r // spysvertering and compounds/spysverterende ver (velA f@r // vervelig/verveling (see: _) ver (@P3 f@r vi (cto@ v%i // fix v and i sounds: victoriaans/-e video v'idi;u //video and compounds + vier (kantig f%i:r // move default stress: vierkantig/-e vs. vierkant ville _^_EN vis (A fIs // visarend/walvisolie @@ -1962,40 +2532,49 @@ C) ensie (_ @) enswaar (dig @ns A) vis (asie vis // improvisasie A) vis (e@ vis' // v and i sounds: improviseer/reviseer/improviserend vis (ie vis // v and i sounds: visie/televisie + visite f@sit@ // fix stress and vowel sounds: visite/-kaartjie/-s + vita (mi v%it%a // move default stress: vitamine/-s/vitamientablet, etc. vis (uA v%iZ //visuele, visueel etc. vis (um vis // v and i sounds: visum _) vasge (@P5 f'asx2@ + vleuel flY@@l // fix last e sound in vleuel in words like vleuelklavier/tweevleuelig, etc. @) voerig f'ur@x2 // breedvoerig/uitvoeriger volke f'Olk@ // volke/-re: exception to: vo (lC f%O volk (ing fOlk // bevolking: exception to: vo (lC f%O volk (s fOlk // volksliedere/volksbeweging/volksleier and similar - vo (lle_ fO // exception to: vo (lC f%O + vo (lle_ fO // exception to: vo (lC f%O + volle (dig f%Ole@ // fix stress and e sound: (on)volledig/-e/-heid... vo (ller fO // exception to: vo (lC f%O + volles (_ fOl@s // fix stress and e sound: volles/passievolles, etc. vol (hou_ fOl // exception to: vo (lC f%O vol (maan fOl // exception to: vo (lC f%O + vol (r fOl // volrond/-rooi/-ryp: exception to: vo (lC f%O vol (ste_ fOl // exception to: vo (lC f%O + voltyds fOlteIts // voltyds/-e: exception to: vo (lC f%O volop f'Ol_Op // volop/volopbetaalde volume v%Olym@ // move default stress and fix o sound: volume and compounds volwasse fOlv'as@ // (on)volwassene/s/(on)volwassenheid vo (lC f%O // volledig/volmaakte/voltooi vol (g fOl // volgeling/volgende/volgorde - voren f'o@r@n // alvorens/vorendag/vorentoe + voren f'o@r@n // alvorens/vorentoe voog (dy f%o@x2 // fix stress: voogdy and compounds voorbar fo@rb'A:r // move default stress: voorbarig and derivitives _) voorbe (@P6 f'o@rb@ _) voor (bee+ fo@r // voorbeeld _) voorge (@P6 f'o@rx2@ - voorspe (l fo@rsp'& // voorspel/voorspelling/voorspelbaar/onvoorspelbaar + voorspe (l fo@rsp'& // voorspel/voorspelling/voorspelbaar/onvoorspelbaar voor (sk fo@r // voorskiet/voorskot/voorskrif/voorskryf voorstedeli (k f%o@rste@d@l@ // move default stress: voorstedelik/-e vs voorstede voor (trek fo@r // voortrek/voortrekker and compounds voort (v@@ f%o@rt // voortvarend/voortvlugtige _) vooruit fo@r'Yyt // vooruit/vooruitsig/vooruitbeplanning vooruit (strew fo@rYyt' // change stress + voorwaard (_ f%o@rvA:rd // stress: (on)voorwaardelik vorm fOr@m - vreemde fr'e@md@ // vreemde/s/vreemdeling + vreemde fre@md@ // vreemde/s/vreemdeling + vreesaan (ja fr%e@s?%A:n // fix stress: vreesaanjaend/-e/vreesaanjagend/-e vriendi (n frind'I // vriendin/vriendinne/vriendinnetjies vrygewig freIx2'e@v@x2 // vrygewig/-e|-heid vry (wil fr%eI // vrywillig/-lik|-heid @@ -2011,26 +2590,43 @@ C) ensie (_ @) enswaar (dig @ns nd) w v // aandwandeling/brandweer/eindwedstryd/grondwet/grondwal k) w w s) w w + s) w (eek v // fix w sound: feesweek/kersweek/paasweek/vandeesweek/werksweek + s) w (il v // fix w sound: groepswil/hemelswil/liefdeswil/korswil + s) w (yf v // fix w sound: viswyf/ganswyfie/mannetjieswyfie ens) w v + los) w v // fix w sound: (los)wikkel/woel/wriemel + mis) w v // fix w sound: miswaas/misweer/miswurm ooC) w v // booswig/grootwild/ooswaarts/ out) w v // houtwerk/soutwater and similar + yd) w v // fix w sound: sluittydwerk/(wa)wydwakker weer (lê v%e@r // move default stress weer (leg w%e@r // move default stress: (on)weerlegbaar @) weg (_ v&x2 // blindweg/botweg and many similar spoor) weg v&x2 // fix e sound: spoorwegaanleg/-aansluiting/-amptenaar/-eiendom/-inkomste/-ongeluk... + welbehaaglik v%&lb@hA:x2l@k // move default stress: welbehaaglik/-e/-er/-ste + @) wendig v'End@x2 // inwendig/noodwendig/uitwendig ge) were ve@r@ // fix e sound in compounds ending in gewere werk (stelli v%&rk // fix stress: bewerkstellig and derivitives - w (ese_ v //words ending in wese + t) werk v&rk // fix w sound: geutwerk/gietwerk/netwerk + werwel v&rv@l // fix w and 2nd e sound: werwel and many compounds + w (ese_ v //words ending in wese t) w w it) w v // inkuitwisser/witwyn/uitwoed/witwatersrand @) wa (_N vA: // words ending in -wa: afleweringswa @) w (aen v // strydwaens/afleweringswaentjie - @s) w (And v // kranswand/kuswind/meswond - @s) w (An_ v // plurals of the above in -de: de treate + @s) w (And v // kranswand/kuswind/meswond + @s) w (An_ v // plurals of the above in -de: de treate + _) wan (o van? // wanorde/wanopvatting wapen vA:p@n // fix problems with compounds and derivitives of wapen: ontwapening/wapengeweld //wapenopleiding + @k) ware vA:r@ // breekware/blikware/lakware @s) ware vA:r@ // kruideniersware/bronsware/glasware/kombuisware bes) ware wA:r@ // geloofsbesware/gewetensbesware + @C) w (arm v // fix w sound: snikwarm/te + @k) water vA:t@r // drinkwater/kalkwater/reukwater + wat (wond v%at // move default stress: watwonders/-e + _) wa (wy vA: // fix stress and a sound: // wawyd/wawydwakker, etc. + weer (kaats v%e@r // move default stress: weerkaats/-in @) wekkend v'Ek@nt // stress on wekkend at end compounds @) wekkende v'Ek@nd@ // stress on wekkende at end compounds _) we (ll@@ v%& // wellewend/welluidend/wellustig, but wellig/wellus @@ -2051,12 +2647,14 @@ C) ensie (_ @) enswaar (dig @ns weer (hou w%e@r // exception to default stress rule weer (spre ve@r' // weerspreek/weersprekende/weerspreking weer (staan v%e@r // weerstaan/onweerstaanbaar - C) wering (_ ve@r@N //borswering, diefwering etc. + C) wering (_ ve@r@N //borswering, diefwering etc. werp v&rp @) wesigheid v'e@s@x2eIt // aanwesigheid/afwesigheid weten (C ve@t@n // wetenskap/-lik/-e and compounds/compounds of geweten- wêrel (d v'&:r@l + wh _^_EN // words containing wh are English + _) wig vIx2 // fix stress: gewig/-tig/-e wiking vikiN // fix i sounds wn _^_EN // names containing town/Brackendowns/Brown @@ -2064,10 +2662,13 @@ C) ensie (_ @) enswaar (dig @ns wood _^_EN @) ws (_N _^_EN @) w (_N _^_EN - @) werste vIrst@ + @) werste vIrst@ + k) w (oA v // fix w sound: dankwoord/werkwoord/skoonmaakwoede/spreekwoord + @C) w (oCC v // fix w sound: kubiekwortel/steekwond/onafhanklikwording/republiekwording/varkwors + woe (styn v%u // move default stress: woestyn and compounds wolke vOlk@ // nimbuswolke/wolkekrabber - woorde vo@rd@ - + woorde vo@rd@ + w (yser v //padwyser and many others with wyser in compounds nt) w (A v .group x @@ -2080,31 +2681,38 @@ C) ensie (_ @) enswaar (dig @ns .group z z z z (z - + t) z s // fix s sound: britz/fritz/hertz and similar .group + @) 'tjie %ici // foto'tjie/ma'tjie, etc. + K) ék (_ '&k // fix e sound and stress: ék/gék ə @ // char.replacement for 'n - _C) è (_ E // dè/nè + _C) è (_ E // dè/nè ê e: + l) êer &:@r // fix ê sound: lêer and compounds ê (r &: - ®e 3: - ge) ë (rf & // oorgeëf/-de + êr (_ ''&:r // stress at end of wrds ending in êr: arbitrêr/dissiplinêr, etc. + êre (_ ''&:r@ // stress of penultimate slb of wrds ending in êre: elementêre/dissiplinêre + sk) êr (+ &:r // but wrds containing skêr follow normal stress: skaapskêr + îe 3: + ge) ë (rf & // oorgeëf/-de + ë (teit @ // fix stress and e sound: variëteit and compounds ïgnoreer ix2nur'e@r // geïgnoreer ï (n @ // geïnteresseerd be) ï (nC 'I // beïndruk/beïnvloed - ïsol %is%ul // geïsoleer/-d + ïsol %is%ul // geïsoleer/-d ô O: - ûe W@ // brûe/rû - + ûe W@ // brûe/rû + // punctuation ! _:eItrup_: !) ! $ dOl@r % p@rs'Ent & _|amp&rsant - £ p@Unt - € Y@ru + £ p@Unt + € Y@ru / stre@p @ beI_: \\ trystre@p @@ -2120,8 +2728,8 @@ C) ensie (_ @) enswaar (dig @ns ** **) * (_ _:: - + plus - _) ++ (_ pluspl'us + + pl'Ws + _) ++ (_ plWspl'Ws \+\+\+) + // ignore + after the first 3 __) - (_D minWs diff -pruN 1.26-1/dictsource/cs_list 1.29-0ubuntu2/dictsource/cs_list --- 1.26-1/dictsource/cs_list 2007-05-14 16:57:16.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/cs_list 2007-07-14 22:11:47.000000000 +0100 @@ -2,148 +2,134 @@ // This file is UTF-8 encoded // Letters -_a a: -á dl'oUhe:,a: -b be: -c tse: -č tSe: -ch xa: -d de: -ď Je: -e e: -é dl'oUhe:,e: -ě ije -f ef -g ge: -h ha: -_i i: -í dl'oUhe:,i: -j je: -_k ka: -l el -ľ el^ -ĺ dl'oUhe:,el -m em -n en -ň en^ -_o o: -ó dl'oUhe:,o: -ô uo: -p pe: -q kve: -r eR -ř eR^ -_s es -š eS -t te: -ť ce: -u u: -ú dl'oUhe:,u: -ů 'u:s_kR'oUZkem -_v ve: -w dv'ojve: -x iks -y ipsilon -ý dl'oUe:,ipsilon -_z zet -ž Zet - -: dv'ojtetSka -% pRotsento -+ plus -€ eURo -@ zavina:tS -& ampr-sent -# gR^i:Zek -/ lomeno -\\ beksleS -! vigR^itSn^i:k -° stupen^ -× kRa:t -÷ Jeleno -§ paRagRaf -~ tilda -^ zdR^i:Ska -© k'opiRajt - -_$ dola:R -_' apostRof -_" uvozovki -_, tSa:Rka -_- mi:nus -_; zdR^edn^i:k -_= Rovno -_* hvjezJitSka -_? otazn^i:k -__ pottr-Zen^i: -_` 'obRa:ts,ena:||tS'a:Rka -_( za:voRka -_) za:vorkazavR^i:t -_[ hR'anata:||z'a:voRka -_] hR'anata:||z'avR^i:t -_{ sl'oZena:||z'a:voRka -_} sl'oZena:||z'avR^i:t -_< menSi: -_> vjetSi: -_| sv'isla:||tS'a:Ra -_?? simbol -_?A znak +_a a: +á dl'oUhe:,a: +b be: +c tse: +č tSe: +ch xa: +d de: +ď Je: +e e: +é dl'oUhe:,e: +ě ije +f ef +g ge: +h ha: +_i i: +í dl'oUhe:,i: +j je: +_k ka: +l el +ľ el^ +ĺ dl'oUhe:,el +m em +n en +ň en^ +_o o: +ó dl'oUhe:,o: +ô uo: +p pe: +q kve: +r eR +ř eR^ +_s es +š eS +t te: +ť ce: +u u: +ú dl'oUhe:,u: +ů 'u:s_kR'oUZkem +_v ve: +w dv'ojve: +x iks +y ipsilon +ý dl'oUe:,ipsilon +_z zet +ž Zet + + +_#9 t'ap +_#32 m'ezeRa // space + +_$ dola:R +_' apostRof +_" uvozovki +_, tSa:Rka +_- mi:nus +_; zdR^edn^i:k +_= Rovno +_* hvjezJitSka +_? otazn^i:k +__ pottr-Zen^i: +_` 'obRa:ts,ena:||tS'a:Rka +_( za:voRka +_) za:vorkazavR^i:t +_[ hR'anata:||z'a:voRka +_] hR'anata:||z'avR^i:t +_{ sl'oZena:||z'a:voRka +_} sl'oZena:||z'avR^i:t +_< menSi: +_> vjetSi: +_| sv'isla:||tS'a:Ra +_?? simbol +_?A znak // Numbers -_0 n'ula -_1 j'eden -_2 dv'a -_2f dvj'e -_3 tR^/i -_4 tSt'iR^i -_5 p'jet -_6 S'est -_7 s'edum -_8 'osum -_9 d'evjet -_10 d'eset -_11 j'edena:tst -_12 dv'ana:tst -_13 tR^/'ina:tst -_14 tSt'r-na:tst -_15 p'atna:tst -_16 S'estna:tst -_17 s'edumna:tst -_18 'osumna:tst -_19 d'evatena:tst -_2X dv'atset -_3X tR^/'itset -_4X tSt'iR^itset -_5X p'adesa:t -_6X S'edesa:t -_7X s'edumdesa:t -_8X 'osumdesa:t -_9X d'evadesa:t -_0C s'et -_1C st'o -_2C dvj'esc'e -_3C tR^/'ist'a -_4C tStiR^ist'a - -_1M1 c'isi:ts -_0MA1 c'isi:tse -_0M1 c'isi:ts - -_1M2 m'ilio:n -_0MA2 m'ilio:ni -_0M2 m'ilio:nu: - -_1M3 m'iliaRda -_0MA3 m'iliaRdi -_0M3 m'iliaRd - -_1M4 b'ilio:n -_0MA4 b'ilio:ni -_0M4 b'ilio:nu: +_0 n'ula +_1 j'eden +_2 dv'a +_2f dvj'e +_3 tR^/i +_4 tSt'iR^i +_5 p'jet +_6 S'est +_7 s'edum +_8 'osum +_9 d'evjet +_10 d'eset +_11 j'edena:tst +_12 dv'ana:tst +_13 tR^/'ina:tst +_14 tSt'r-na:tst +_15 p'atna:tst +_16 S'estna:tst +_17 s'edumna:tst +_18 'osumna:tst +_19 d'evatena:tst +_2X dv'atset +_3X tR^/'itset +_4X tSt'iR^itset +_5X p'adesa:t +_6X S'edesa:t +_7X s'edumdesa:t +_8X 'osumdesa:t +_9X d'evadesa:t +_0C s'et +_1C st'o +_2C dvj'esc'e +_3C tR^/'ist'a +_4C tStiR^ist'a + +_1M1 c'isi:ts +_0MA1 c'isi:tse +_0M1 c'isi:ts + +_1M2 m'ilio:n +_0MA2 m'ilio:ni +_0M2 m'ilio:nu: + +_1M3 m'iliaRda +_0MA3 m'iliaRdi +_0M3 m'iliaRd + +_1M4 b'ilio:n +_0MA4 b'ilio:ni +_0M4 b'ilio:nu: -_dpt _:tSa:Rka_ -_. tetSka +_dpt _:tSa:Rka_ +_. tetSka // Pronouns diff -pruN 1.26-1/dictsource/cs_rules 1.29-0ubuntu2/dictsource/cs_rules --- 1.26-1/dictsource/cs_rules 2007-05-13 11:44:12.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/cs_rules 2007-07-14 22:11:43.000000000 +0100 @@ -632,7 +632,24 @@ _flegma) ti ti ŕ r- ü i - $ dola:R + $ dola:R + : dv'ojtetSka + % pRotsento + + plus + € eURo + @ zavina:tS + & ampr-sent + # gR^i:Zek + / lomeno + \\ beksleS + ! vigR^itSn^i:k + ° stupen^ + × kRa:t + ÷ Jeleno + § paRagRaf + ~ tilda + ^ zdR^i:Ska + © k'opiRajt . tetSka . (. _: diff -pruN 1.26-1/dictsource/de_list 1.29-0ubuntu2/dictsource/de_list --- 1.26-1/dictsource/de_list 2007-06-04 23:04:00.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/de_list 2007-08-16 18:52:12.000000000 +0100 @@ -5,16 +5,48 @@ // 1. Change ['i:] to [=I@] at end of word -// Letters -//======== +// Characters +//=========== // If a letter has a "word" pronunciation which is different from its // "letter" name, then include the letter name here, with the letter // prefixed by a _ character. +// Include a _ before a character if it's name should only be +// spoken when "speak punctuation" option is on. + _. pUnkt _, kOma +_| paIp +_: d'Op@lp,UNkt +_; St@-*'ICpUNkt +__ ,Unt3St@-*'IC +_- b'IndEst@-*,IC +_! 'aUs_|@-*,u:fe:ts,aIC@n +_? f@-*'Age:ts,aIC@n +_' 'apOst@-*,Of +_" 'anf,y:*UNsts,aIC@n +_/ S@-*'Egst@-*IC +_( kl'am3||_|'aUf +_) kl'am3||ts'u: +_{ g@Sv'aIft@kl'am3||_|'aUf +_} g@Sv'aIft@kl'am3||ts'u: +_[ 'EkIg@kl'am3||_|'aUf +_] 'ECIg@kl'am3||ts'u: +_< klaIn3 +_> g@-*Ws3 +_` g@-*A:v +_^ sI*kUmflEks +_— g@d'ank@nSt@-*,IC + +_#9 t,abu:l'Ato:* +_#32 l'e:*ts'aIC@n + +// Not Roman numbers +v faU +x Iks + // Numbers //======== _0 'nUl @@ -27,7 +59,7 @@ _5 'fynf _6 'zEks _7 'zi:b@n _8 '_axt -_9 'nOIn +_9 'nOYn _10 'tse:n _11 '_Elf _12 'tsvWlf @@ -37,7 +69,7 @@ _15 'fynftse:n _16 'zEktse:n _17 'zi:btse:n _18 '_axttse:n -_19 'nOIntse:n +_19 'nOYntse:n _2X 'tsvantsIC _3X 'd@-*aItsIC _4X 'fi:*tsIC @@ -45,7 +77,7 @@ _5X 'fynftsIC _6X 'zEktsIC _7X 'zi:btsIC _8X '_axttsIC -_9X 'nOIntsIC +_9X 'nOYntsIC _0C 'hUnd3t _0M1 'taUz@nt _1M1 'taUz@nt // no '1' before thousand @@ -67,12 +99,12 @@ bd band bde bEnd@ bzw b@tsi:hUNsvaIz@ chr k@-*Istu:s -dm d'OItSm,A:*k $capital $only $abbrev +dm d'OYtSm,A:*k $capital $only $abbrev dr dOkt'o:* evtl e:vEntu:'El od o:d3 fr f@-*aU -frl f@-*OIlaIn +frl f@-*OYlaIn hr hE* hrsg hE*'aUsge:b3 inkl Inklu:s'i:v@ @@ -91,7 +123,7 @@ die %di: das %das den %de:n dem %de:m -des %dEz +des %dEs derselb $2 desselb dEss'Elb @@ -120,20 +152,21 @@ deren ,dE*@n $brk ab ap $u+ $brk an an $u+ $brk am am $u+ $brk -auf aUf $u+ $brk +auf aUf $u+ $pause aus ,aUs $brk $strend bei baI $u+ $pause $only +beim baIm $u+ $brk bis bIs $u+ $pause da $u+ durch $u+ $pause -für fy:* $u+ $pause +für fy:* $u+ $pause $only gegen ge:g@n $u+ $pause gegend ge:g@nt hin hIn in In $u+ $brk -(in die) %Ind%i: -(in den) %Ind%e:n -(in der) %Ind%E* +//(in die) %Ind%i: +//(in den) %Ind%e:n +//(in der) %Ind%E* im Im $u+ $brk ins Ins $u+ $brk mit mIt $u+ $pause @@ -141,17 +174,17 @@ nach nax $u+ $brk ob ,Ob $pause $strend $only pro ,p@-*o: $pause von fOn $u+ $brk -(von dem) %fOn%de:m $brk +//(von dem) %fOn%de:m $brk vom fOm $u+ $brk vor ,fO* $strend zu tsu: $u+ $brk -zum tsUm $u+ $brk -zur tsu:* $u+ $brk +zum tsUm $u+ $pause +zur tsu:* $u+ $pause über ,yb3 $pause $strend unter ,Unt3 $pause $strend um Um $u+ $brk -(um die) %Umd%i: $brk -(um den) %Umd%e:m $brk +//(um die) %Umd%i: $brk +//(um den) %Umd%e:m $brk während $pause // misc @@ -161,7 +194,7 @@ noch $pause (noch nicht) n'Ox||n,ICt $brk (nicht mehr) n'ICt||,me:* (nicht mehr) n,ICt||m'e:* $atend -(nicht nur) nICt||nu:* $pause +(nicht nur) n'ICt||n'u:* $pause (gar nicht) g,A:*n'ICt // should these be in the Rules because they can be a prefix in a @@ -261,10 +294,6 @@ ist %Ist sind %zInt seit %zaIt $only -gehen ge:@n $only -geht ge:t $only -gehe ge:@ $only - habe %hA:b@ $only habst %habst $only hast %hast $only @@ -326,6 +355,7 @@ browser _^_EN byte _^_EN camcorder _^_EN chart _^_EN +chat _^_EN coach _^_EN coke _^_EN computer _^_EN @@ -370,6 +400,7 @@ pidgin _^_EN plot _^_EN poster _^_EN receiver _^_EN +research _^_EN remake _^_EN roadie _^_EN roastbeef _^_EN @@ -407,21 +438,38 @@ word _^_EN // Main exceptions list //===================== abort ab'O*t +absentier apzEnt'i:* +abstinent $3 +achsig 'aksIC2 +akazie $alt allein $2 andre and@-*@ // andere anomalie $2 -akazie $alt +antik ant'i:k +archaik a*k'A:Ik arie $alt +arpeggier a*pEdZ'i:* +arrangier a*aNZ'i:@ arterie $alt -außerdem aUs3de:m - +asphalt $2 +ausgeschamt aUsg@SA:mt +außerdem aUs3d'e:m +aventurin avEntu:*'i:n +ave A:ve: +avenue av@n'y: + +balkan $1 +balkon $2 +bandagier bandaZ'i:@ beben be:b@n beere be:*@ bestie bEstI@ best bEst beten be:t@n +bizarr $2 bronchie $alt +changier SaNZ'i:* ciao tSaU coup ku: @@ -429,24 +477,40 @@ dahlie $alt deshalb $2 dezember $2 diadem di:ad'e:m -duett du:'Et - +dient di:nt direkt $2 +dividend di:vi:d'Ent +dragier d@-*aZ'i:* dritte d@-*It@ +duett du:'Et +ebendaher e:b@ndah'e:r +ebendahin e:b@ndah'In einander aIn'and3 +einerlei aIn@*laI einig aInIC $only einige aInIg@ $u+ einiges aInIg@s $u+ +enagier EngaZ'i:* endivie $alt -erde E*d@ -erst E*st - +endlich EntlIC +episkopal e:pIsko:p'A:l +erde e:*d@ +erst e:*st +ersten e:*st@n +erstmal e:*stma:l +extravagant $1 +extrem Ekstr'e:m + +feuerrot $3 +friedvoll f@-*'i:tf,Ol +furchen fU*C@n furie $alt geben ge:b@n -geber ge:b3 +gebt ge:bt gegenüber ge:g@n'y:b3 +geglichen g@glIC@n gemein g@maIn genial ge:nI'al geranie ge:*'A:nI@ @@ -458,55 +522,95 @@ glorie $alt grazie $alt handy handI +häuschen hOYsC@n +hausier haUz'i:* heimat haImat +herberg hE*bE*g historie $alt hm h@m +horsam ho:zA:m hostie $alt +illegitim Ile:gi:t'i:m +illiberal Ili:b@*'A:l +illoyal IlOajA:l immobilie $alt +indem Ind'e:m +inden Ind'e:n +inder Ind3 +indes Ind'Es +indessen Ind'Es@n injurie $alt +inka INkA: +inkaisch INkA:IS +inkonstant $1 insbesondere $3 interess Int@*'Es +intern Int'E*n januar janu:A:* kamelie $alt kastanie $alt kid kId -kommend kOm'End komödie $alt +konkret k%ONk@-*e:t +konservativ $1 +konstatier kOnStat'i:* +konsul $1 kurie $alt +lakaienhaft l%akaInhaft lappalie $alt lilie $alt linie $alt +logier lo:Z'i:* luetisch lu:'e:tIS machen max@n marginalie $alt materie $alt +menagier me:naZ'i:* menuette mEnu:'Et +minut $2 mikrofiche maIk@-*o:fIS miteinander $1 mitte mIt@ +modell mo:d'El +monoton $3 +monsun $2 +montag mo:ntA:k +mors mO*s mumie $alt +nebulos $3 +negligent ne:gli:dZ'Ent + oberen o:b@*@n oboe o:bo:@ orgie $alt ok o:k'e: +paradies $3 +passage pas'aZ@ +perplex $2 petersilie $alt pinie $alt +planet plan'Et +pochier pOS'i:* +pochs pOxs präsident $3 prämie $alt -problem p@-*Obl'e:m +privatisier p@-*i:vati:z'i:* +problematisier p@-*o:ble:m'a:tIzi:* reliquie $alt rupie $alt sabbat zabat sagt zA:gt +salopp $2 +schult Su:lt selbst zElpst serie se:*I;@ service sE*vIs @@ -514,20 +618,35 @@ sofort $2 sogar $2 soweit $2 sowohl $2 +sparsam SpA:*zA:m +spinozaisch spi:n'o:tsaIS +stalagmit stalagm'It system z%IstEm tag tA:g +telegen te:le:g'e:n the D@ // English theater te:'A:t3 +train t@-*e:n +turin $2 tuerei tu:*aI +umweg $1 unten Unt@n +wasserung vas@*UN // because -ung isn't marked as a suffix +weiterung vaIt@*UN +weither vaIth'E* +weitum vaIt_|'Um woher vo:h'e:r verein fE*'aIn +vielbesprochen $3 vielleicht $2 -vorbei fO*b'aI +vorbei fo:*b'aI +vorher fo:*h'e:* +vorherig fo:*h'e:*IC +vorig fo:*IC //wahrscheinlich $2 warum vA:*'Um diff -pruN 1.26-1/dictsource/de_rules 1.29-0ubuntu2/dictsource/de_rules --- 1.26-1/dictsource/de_rules 2007-06-04 22:55:23.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/de_rules 2007-07-14 22:12:50.000000000 +0100 @@ -1,8 +1,29 @@ + +// *************************************************************************** +// * Copyright (C) 2006 to 2007 by Jonathan Duddington * +// * email: jonsd@users.sourceforge.net * +// * * +// * This program is free software; you can redistribute it and/or modify * +// * it under the terms of the GNU General Public License as published by * +// * the Free Software Foundation; either version 3 of the License, or * +// * (at your option) any later version. * +// * * +// * This program is distributed in the hope that it will be useful, * +// * but WITHOUT ANY WARRANTY; without even the implied warranty of * +// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +// * GNU General Public License for more details. * +// * * +// * You should have received a copy of the GNU General Public License * +// * along with this program; if not, write see: * +// * . * +// ***************************************************************************/ + + // This file is UTF-8 encoded .group a _) a (_ A: - a A: + a A aa A: ah (+ A: ael A:El @@ -18,36 +39,99 @@ ay aI au aU - _) ab (C@P2 'ap - _) ab (arP2 'ap + ab (t_ A:p + ag (t_ A:k + + _) ab (C@P2 _!'ap + _) ab (arP2 _!'ap + _) ab (nor %ap + _) ab (or ap_| + _) ab (sor %ap + _) ab (str %ap + _) ab (sur %ap _) abb (a %ab _) abb (rev ab + _) abd (+ apd _) abend A:b@nt + _) aberr ab_|E* _) ab (er@P2 'ap - _) abge (@ 'abg@ - _) ab (i ab - _) abzu 'abtsu: - _) an (@P2 'an + _) ab (i ap + _) ab (j ap + _) ab (se ap + _) ab (so %ap + _) ab (sz ap + _) abzu 'aptsu: + _) ac (et ats + _) ad (ju at + _) an (@P2 _!'an + _) an (a %an + _) a (natioP1 'A: + _) anath anat _) an (der an + _) angli (@ aNgli: + _) anglo (@ ,aNglo: + _) anheim (C@P6 anh'aIm + _) animal ,ani:mA:l + _) anim ,ani:m + _) ani (s %ani: _) anti (@P4 ,antI _) an (tw an - _) auf (@P3 'aUf - _) aus (@P3 'aUs - + _) auf (@P3 _!'aUf + _) aus (@P3 _!'aUs + _) aus (ku aUs + + a (_ A: + a (C_ A: + @) a (bl_ 'A: + @) a (bel_ 'A: + s) a (g A: + @l) a (g A: + schl) ag (ge A:k + scl) a (g A: + spr) a (ch A: + s) a (m_ A: + s) a (mkeit A: + gr) a (mm_ 'a + a (isier a + _) achs (@P4 'aks + _) achs (el 'aks + j) ag (d A:k _) air _^_EN - aktie aktI@ - @A) al (_ 'al - @) an (_ 'an + ai (sch A:I + tr) ain En + akqu %akv + @A) al (_ 'A:l + g) al (_ 'A:l + k) al (_ 'A:l + n) al (_ 'A:l + &kan) al (_ ,A:l + &sign) al (_ ,A:l + r) al (_ 'A:l + t) al (_ 'A:l + @) an (_ 'A:n + ein) an (der 'an @) ant (_ 'ant _) anthropo ,ant@-*o:p%o: _) anti (@P4 ,anti: - anier (_ 'A:ni:3 - arier (_ 'A:*i:3 - adier (_ 'A:di:3 + anier (_N 'A:ni:3 + _) an (ten an + _) an (th an + _) appe (ll@ ,apE + _) archa (i %a*CA + arier (_N 'A:*i:3 + @l) ar (_ 'A:* + @t) ar (_ 'A:* + a (rch_ 'A: @) at (_ 'A:t @) atisch (_S6 'A:tIS @) atisieren (_S9 A:tIs'i:*@n a (tion a + _) au (Ceinand aU + _) aufent aUf@nt + austra (l %aUst@-*A + _) authen aUtEn + ay (_ EI + p) ay EI .group b _) b (_ be: @@ -60,12 +144,23 @@ _) be (@P2 b@ &Cen) be (C@ b@ + ungs) be (C@ b@ _) b (eHC b _) be (C% bE _) bei (P3 b'aI _) bei (de baI + _) bei (ne baI + _) bei (ß baI _) beo (b b,@o: + _) ba (lA b%a + _) ba (ll@ b%a + &) bar (_S3 bA:* + &) bare (_S4 bA:*@ + &) barem (_S5 bA:*@m + &) baren (_S5 bA:*@n + &) barer (_S5 bA:*3 + &) bares (_S5 bA:*@s _) b (ebC b _) b (ecC b _) b (eet b @@ -74,6 +169,7 @@ _) b (esen b _) b (ess b _) b (esten b + bestia bEsti:'A: _) b (eug b _) b (eul b _) b (eut b @@ -85,6 +181,7 @@ _) blue _^_EN board _^_EN _) boom _^_EN + bo (sh bo: .group c _) c (_ se: @@ -95,30 +192,32 @@ a) ch x o) ch x u) ch x + fu) ch (s k äu) ch C eu) ch C C) chen (_$4 C@n - ä) chen (_$4 C@n - e) chen (_$4 C@n - i) chen (_$4 C@n - ü) chen (_$4 C@n + ä) chen (_ C@n + e) chen (_ C@n + ü) chen (_ C@n _) chr k@-* - chs ks + chs ks (_ ck k _) c (el S _) cey tsaI - chat _^_EN chef SEf _) c (ent ts _) ch (il S - chip _^_EN + chip (_ _^_EN _) ch (ol k _) ch (or k bre) ch (en x + chro k@-*o: nä) chs (t Cs + c (ie s + pla) c (ie ts coat (_ _^_EN _) code ko:t _) cow _^_EN @@ -131,16 +230,38 @@ d) d d (_N t d (h t - d (s_ t + ds (_ ts dt t ddt t + _) darüber (@P7 da*'y:b@* + _) darum (@P5 da*'Um + _) darunter (@P8 da*'Unt@* + _) daten (@P5 d'at@n _) deal _^_EN + _) deme de:mE + demo (g de:mo: + demo (k de:mo: design _^_EN dge (_ _^_EN _) dia d,i:a + _) diver d%i:vE* + _) dort (C@P4 d'O*t drive _^_EN _) drug _^_EN + _) durch (@P5 d'U*C + _) durch (b d%U*C + _) durch (f d%U*C + _) durch (kr d%U*C + _) durch (la d%U*C + _) durchque d%U*Ckve: + _) durch (schau d%U*C + _) durch (st d%U*C + _) durch (su d%U*C + _) durch (tre d%U*C + _) durch (w d%U*C + _) durch (wachP5 d'U*C + _) durchweg dUrCve:k .group e @@ -155,62 +276,126 @@ e (x E ei aI - eu OI + eu OY ey (_ e: + eb (t_ e:p + eg (t_ e:k + ell (_ 'El + ll) e (l e: &) e (_S1 @ @t) e (_S1 @ &) e (BB_ E2 e (gt_+ e: &) el (_ @l &) eln (_S1 n - &) em (_S2 @m + &) elnd (_S2 nt + &) e (lt_ @ + &) em (_NS2 @m + &) em (_ 'e:m + _) end (C@P3 'Ent + _) endo (@ ,Endo: @) en (_S2 @n + &) end (_NS3 @nt + &) ende (_S4 @nd@ + &) endem (_S5 @nd@m + &) enden (_S5 @nd@n + &) ender (_S5 @nd3 + &) endes (_S5 @nd@s + &) end (_ @nd + ier) end (_NS3 @nt + ier) end (_ @nd + @) ent (_ 'Ent + @) entlich @ntl%IC + @m) ent (_ 'Ent + @m) ente (_ 'Ent@ @) er (C 3 @) er (r E* + @) er (ti E* @) er (nC E* - @) er (_S2 3 + @) er (_S2 3 &) ere (_S3 @*@ &) erem (_S4 @*@m &) eren (_S4 @*@n &) erer (_S4 @*3 &) eres (_S4 @*@s &) er (C_ @* - &) er (n_ @r + er (d_ e:* + &) er (n_ @* &) er (r_ E w) er (k_ E* + &) er (nd_ @* + &) erin (_ @*In + &) erisch (_ @*IS @) es (_S2 @s - &) et (_ @t - @) ent (_ 'Ent - @m) ent (_ 'Ent - @m) ente (_ 'Ent@ - &) est (_ @st + &) et (_S2 @t + &) est (_S3 @st + &) este (_S4 @st@ + &) estem (_S5 @st@m + &) esten (_S5 @st@n + &) ester (_S5 @st3 + &) estes (_S5 @st@s &) en (@ E2n // [E2] can reduce to [@] // &) er (C@ E2* &) el (@ E2l + m) e (nt E @) ei (_ 'aI + @@) erisch @*IS &) erung (_ =@*UN - _) ein (@P3 'aIn + _) e (ff %E + l) e (g_ 'e: + _) eil (aP3 'aIl + _) eil (fP3 'aIl + _) ein (@P3 _!'aIn ein (and _|%aIn + _) eine (r@ aIn@ _) einig aInIg + _) eisen (@P5 'aIz@n + _) e (lek %e: + _) elektro (@P7 e:l'Ekt@-*o: + _) elen e:lEn + mod) e (l@ E + s) e (lig e: _) emp (@P3 _|%Emp + _) emph (@ %Emf + _) emp (ir %Emp + _) ene (rg %e:nE + @) en (i e:n + @) e (nsi E _) ent (@P3 _|%Ent _) enten Ent@n _) ent (er Ent + t) en (t En + qu) en (tA En + &) en (tum @n + &) e (nz_ 'E + _) epi (@ ,e:pi: + _) epi (sk e:pI _) er (@P2 _|%E* + _) er (gie E* + &) er (ig_ @* + &) er (igst @* + _) er (beK E* _) er (HC E* // lC, mC, nC, rC _) ergeb (nis E*g'e:b _) er (stC E* _) er (ste E* _) er (ste@@P2 _|%E* + @) er (v E* + mod) er (n E* _) entert _^_EN + er (dig e:* _) erob (er %E*o:b + @) esen (_ e:z@n + @) ett (_ 'Et @) eur (_ 'Y:* + euse (_ 'Y:z@ + eusen (_ 'Y:z@n .group f @@ -218,23 +403,36 @@ f f f) f - _) fest (P4 f'Est + _) faks (i f%akz + _) farb (C@P4 f'a*p + _) farb (l@P4 f'a*b + _) fein (@P4 f'aIn + _) fest (@P4 f'Est _) flug fl'u:g + foto fo:to: _) free _^_EN - + _) feudal f%OYdA:l + _) feuer (@ fOY@* + _) frev f@-*e:f + _) froh (@P4 f@-*'o: + _) frohlock f@-*o:l'Ok + _) fung (A fUNg .group g _) g (_ ge: g g - g) g + g (g g (_N k g (h k gd (_N kt gt (_N kt + gtet (_ kt@t + gtest kt@st _) g (eHC g // hC, lC, mC, nC, rC _) ge (@P2 g@ - C) ge (C@ g@ + ungs) ge (C@ g@ + _) ge (beX ge: g (ei+ g _) gn (A g@-n @@ -245,10 +443,17 @@ gegen (_ ge:g@n gegn ge:gn gehen ge:@n + _) geh (eX ge: general ge:nE*'al + general (is ge:n@*al _) g (ener g _) g (eo+ g + _) ge (orP2 g@ + ge (rman gE + ge (rät g@ @) ght (_ _^_EN + graph g@-*Af + graph (_ g@-*'A:f green _^_EN guide _^_EN @@ -257,35 +462,52 @@ _) h (_ hA: h h h) h + ch) h h - _) herauf (P6 hE*'aUf _) herab (P5 hE*'ab + _) heran (P5 hE*'an + _) herauf (P6 hE*'aUf _) heraus (P6 hE*'aUs _) herbei (P6 hE*'baI + _) herein (P6 hE*'aIn + _) herüber (P7 hE*'y:b3 _) herum (P5 hE*'Um + _) herunter (P8 hE*'Unt3 _) hervor (P6 hE*f'Or _) hier (@ h%i:* + _) hilf (@P4 h'Ilf + _) hilfs (@P5 h'Ilfs + _) hilfe (@P5 h'Ilf@ + _) hinab (P5 hIn'ab + _) hinan (P5 hIn'an _) hinauf (P6 hIn'aUf _) hinaus (P6 hIn'aUs _) hinein (P6 hIn'aIn + _) hinunter (P8 hIn'Unt3 _) hinweg (P6 hInv'e:g _) hinzu (P5 hInts'u: + _) hinge (@P5 h'Ing@ + _) hinter (@P6 h,Int3 _) haupt (@@P5 h'aUpt + _) haus (@P4 h'aUs // @) heit (_S4 haIt + _) hero h%e:*o: + _) herz (er@P4 h'E*ts _) high _^_EN _) hinter (@ h,Int3 + _) hoch (@P4 h'o:x + hoch ho:x + homogen h,o:mo:ge:n _) hyper _^_EN .group i _) i ( i: i i: - ie i: ih (+ i: - ieh i: i (C% I i (CC I @@ -295,49 +517,103 @@ @) i (ng I &CC) i (_ =i: - @) i (at_ I - &) ie (ll_ i:,E - &) ier (_ 'i:3 - r) ien (@ IEn - &) ien (_S1 n - &n) ien (_ I@n - &) iens (_ =I;@ns - &) ient (_ =I;@nt - sch) ie (n i: - ieren 'i:*@n - @) iert (_ 'i:*t - ierungs 'i:*UNs - ierung 'i:*UN + @) i (bl_ 'i: + @) i (bel_ 'i: + ib (t_ i:p + @) i (at_ I + i (d_ 'i: + i (erin =i: ig (C IC ig (m Ig ig (n Ig ig (l Ig ig (r Ig - ig (_N IC + ig (ung Ig + ig (end_ Ig + igh aI + igtet Ikt@t + igtest Ikt@st + &) ig (_N IC &) ig (_ Ig // -ig + inflexions - @) ik (_ 'i:k + @) igst (_ ICst + @) igste (_ ICst@ + @) igstem (_ ICst@m + @) igsten (_ ICst@n + @) igster (_ ICst3 + @) igstes (_ ICst@s + + i (i i:_! + + s) ik (_ 'i:k + @r) ik (_ Ik + br) ik (_ 'i:k + @t) ik (_ =i:k + polit) ik 'i:k @) ik (el_ 'i:k - @) ie (_ 'i: - - bakter) ie =I@ - famil) ie =I@ - fer) ie (n =I@ - fol) ie (_ =I@ - formal) ie =I@ - stud) ie (_ =I@ - igh aI + _) illeg ,Ile:g + _) i (llu %I + _) i (mag I + r) i (na_ 'i: @) ing (_N _^_EN + _) in (k %In + _) inter Int@* + &) in (_ i2n + l) in (_ 'i:n + s) in (_ 'i:n @) ion (_ j'o:n - @) ional (_ jo:n,al + @) io (n Io: + io Io: @) is (_ Is &) isch (_ =IS + is (mus_ 'Is @) ist (_ 'Ist @) it (_N 'It @) ite (_ 'i:t@ @) ität (_S4 i:t'E:t + &) ium (_ =i:Um + @s) i (v_ 'i: + @t) i (v_ 'i: + + +.group ie + ie i: + ieh i: + @) ie (_ 'i: + + &) ie (ll_ I'E + &) ie (r_ 'i: + u) ie (r_ _|'i: + &) ie (rlich 'i: + d) ienst i:nst + r) ien (@ IEn + &) ien (_ =I@n + &b) ien (_ =i:@n + g) ien (_ 'i:@n + m) ien (_ 'i:@n + ph) ien (_ 'i:@n + &n) ien (_ I@n + p) ien (_ 'i:@n + &r) ien (_ =i:@n + s) ien (_ 'i:@n + t) ien (_ 'i:@n + &) iens (_ =I;@ns + ient (_ I'Ent + &) ienz (_ I'Ents + sch) ie (n i: + @) ie (reX 'i: + ierungs 'i:*UNs + ierung 'i:*UN + bakter) ie =I@ + famil) ie =I@ + fer) ie (n =I@ + fol) ie (_ =I@ + formal) ie =I@ + stud) ie (_ =I@ + + .group j _) j (_ jOt j j @@ -348,21 +624,52 @@ k) k // @) keit (_$4 kaIt +// @) keiten (_$6 kaIt@n kolleg k%Ole:g + _) komme (C@ k%OmE _) ko (mp k%O _) ko (mpost kO + _) ko (n@ k%O + _) ko (nter kO .group l _) l (_ El l l l) l - lin (_ l'i:n + lady _^_EN + _) land (C@P4 l'ant + _) landes (@P6 l'and@s + _) lang (C@P4 l'aN + _) lang (t@ l'aN + langsam l'aNzA:m + _) leb (C le:p + _) leb (C@@P3 'le:p + _) leben (dig le:b'En + _) lehr (CP4 l'e:* _) leit (@P4 l'aIt + _) lern (@@P4 l'E*n + _) lexi (@ lEksi: @) lich (_$4 lIC - lady _^_EN + @) liche (_$5 lIC@ + @) lichem (_$6 lIC@m + @) lichen (_$6 lIC@n + @) licher (_$6 lIC3 + @) liches (_$6 lIC@s + @) lichere (_$7 lIC@*@ + @) licherem (_$8 lIC@*@m + @) licheren (_$8 lIC@*@n + @) licherer (_$8 lIC@*@3 + @) licheres (_$8 lIC@*@s + @) lichste (_$7 lICst@ + @) lichstem (_$8 lICst@m + @) lichsten (_$8 lICst@n + @) lichster (_$8 lICst@r + @) lichstes (_$8 lICst@s + @) lichkeit (_$8 lICk%aIt + @) lichung (_$7 lIC%UN @) lo (gisch l'o: .group m @@ -371,11 +678,20 @@ m) m marine mA:*'i:n@ - A) meter (_ me:t3 + _) meß (@P3 m'Es + _) met (all m%e:t + _) meth m%e:t + meter m'e:t3 + _) metro (@P5 m,e:t@-*o: _) micro _^_EN + _) miet (C@P4 m'i:t + _) mikro (@P5 m,i:k@-*o: _) mit (P3 m'It mitt (eC mIt mitt (l mIt + _) mo (rb m%O + _) mono (@ m,o:no: + _) motor m%o:to:* _) ms _^_EN musik m%u:zi:k @@ -386,11 +702,21 @@ ng N // ng (A Ng // ng (l Ng + o) ng (e ng + o) ng (A Ng + u) ng (i Ng ng (r Ng nk Nk nk (A nk + fu) nk Nk nce (_ _^_EN + _) ne (b ne: + nebeneina (nd n,e:b@n_|aIn'a + _) ne (g ne: + neglig ne:gli:Z + neglige ne:gli:Z + &in) nen (_S3 @n &) ness _^_EN news _^_EN nieder ni:d3 @@ -401,6 +727,7 @@ oh (+ o: oo o: oe Y: + ou u: o (C% O o (CC O @@ -408,11 +735,28 @@ o (x O &CC) o (_ =o: + ob (t_ o:p + og (t_ o:k + _) ober (@P4 _|,o:b3 _) ober (ste o:b3 - - @A) on (_ 'o:n + _) ob (jek %Op + _) obst (reP4 'o:pst + @) o (g_ 'o: + t) ogen (_ o:g'e:n + @) o (gin_ 'o: + o (l_ 'o: + o (lsam o: + o (m_ 'o: + @A) o (n_ 'o: @) oo (_ u: + r) oo (m u: + z) oo (m u: + &t) or (_ =o:* + &) oren (_ 'o:*@n + oso (_ 'o:zo: + st) o (ss o: + .group p @@ -422,15 +766,30 @@ pf pF ph f - _) pay _^_EN + _) para (@ p,a*a + passagie pasaZ'i: + _) peri p,e:*i: + _) perio p,e:*Io: + _) periphe p,e:*i:fe: + _) personen (@P8 pE*s'o:n@n philie f'i:li: _) pro (@ %p@-*o: _) po (e p%o: _) poe (sc pY: + _) poly (@P4 p,o:ly: partei p%a*taI + _) perfe (k p%E*fE + _) polik p'o:li:k + _) po (lit p%o: pool _^_EN - power _^_EN + power paU@* + _) preß (@P4 p@-*'Es + _) prinzipien (@P9 p@-*Ints'i:pI@ + _) privat (@P6 p@-*i:v'A:t + problem p@-*%o:ble:m + _) psycho (@P6 ps,y:Co: + _) psycho (ti psy:C'o: _) pu (e p%u: .group q @@ -446,21 +805,26 @@ _) r @-* _) rh @-* + rangier @-*A:NZ'i:* + _) re (d re: + .group s _) s (_ Es s s s (A z - s (_$1 s + s (_NS1 s + s (_ z // suffix has been removed A) s (_N s A) s (_ z ss s sst (@ sSt - p) s (a s sch S sch (en_ sC _) sh S sh (K S + sou (nd saU + p) s (a s p) s (i s t) s (i s k) s (i s @@ -469,6 +833,12 @@ _ge) sp Sp _ver) sp Sp &C) st (_$2 st + &C) ste (_S3 st@ + &C) stem (_S4 st@m + &C) sten (_S4 st@n + &C) ster (_S4 st3 + &C) stes (_S4 st@s + _) st St _be) st St _ge) st St @@ -477,11 +847,17 @@ _) safe _^_EN &) schaft (_S6 Saft schein (lich S'aIn + _) schul (@P5 S'u:l + _) schul (d S'Ul + schwer Sve:* + _) sechs (P5 z'Eks _) selbst (@@P6 z'Elpst shop _^_EN _) sky _^_EN soldat z%OldA:t + so (rt_ s_|O + sound _^_EN speed _^_EN _) street _^_EN @@ -496,21 +872,48 @@ K) th t tz ts - &B) te (_$2 t@ &t) te (_ @ -// &B) ten (_$3 t@n // &t) ten (_ @n -// &B) tet (_$3 t@t + + ier) t (_S1 t + ier) te (_S2 t@ + ier) tem (_S3 t@m + ier) ten (_S3 t@n + ier) ter (_S3 t3 + ier) tes (_S3 t@s + ier) tet (_S3 t@t + ier) tere (_S4 t@*@ + ier) terem (_S5 t@*@m + ier) teren (_S5 t@*@n + ier) terer (_S5 t@*3 + ier) teres (_S5 t@*@s + ier) tst (_S3 tst + ier) tste (_S4 tst@ + ier) tstem (_S5 tst@m + ier) tsten (_S5 tst@n + ier) tster (_S5 tst3 + ier) tstes (_S5 tst@s + ier) test (_S4 t@st + ier) teste (_S5 t@st@ + ier) testem (_S6 t@st@m + ier) testen (_S6 t@st@n + ier) tester (_S6 t@st3 + ier) testes (_S6 t@st@s tch tS + t (chen_ t _) teen _^_EN + _) tele (@ t,e:le: thrill _^_EN + _pa) th t + the (era te: + _) tief (@P4 t'i:f @) tient (_ tsI'Ent + @) tion tsI,o:n @) tion (_ tsI'o:n - @) ti (v_ t'i: _) trail _^_EN - _) train _^_EN _) tranqu _^_EN + traver t@-*%avE* _) tw _^_EN .group u @@ -527,20 +930,48 @@ u (x U @) u (ng U + ub (t_ u:p + ug (t_ u:k + + _) um (@P2 Um + _) umbe (@P4 'Umb@ + _) umge (@P4 'Umg@ + _) um (orgP2 'Um + _) um (stAP2 'Um @) u (m_ U rt) u (m_ u: _) un Un - _) un (C@P2 'Un - _) unbe (@P4 _|,Unb@ - _) unge (@P4 _|,Ung@ - _) unver (@P5 _|,UnfE* - _) un (iv u:n + _) un (@P2 _|'Un + _) unab (@P4 _|'Un_|ap + _) unan (@P4 _|'Un_|an + _) unauf (@P5 _|'Un_|aUf + _) unaus (@P5 _|'Un_|aUs + _) unbe (@P4 _|'Unb@ + _) unein (@P5 _|'Un_|aIn + _) unge (@P4 _|'Ung@ + _) unver (@P5 _|'UnfE* + _) un (i u:n + _) un (in@P2 _|'Un + _) unum (@P4 _|'Un_|Um _) under _^_EN - _) unter (@P5 _|%Unt3 + _) unter (@P5 _|,Unt3 + + rep) u (bl u: + s) u (ch u: &) uela (_ u:,e:la @) uerisch (_ 'u:*IS + _) ultra (@P5 ,Ultra + um (_ Um + t) um (_ u:m + &) ungs (A %UNs_| // upto "ungs" is a prefix? + _) u (rk u: + _) u (rl u: + _) u (rv u: + us (_ Us + _d) u (sch u: _) user _^_EN + Al) u (t_ u: _) ueber (@P5 _|,y:b3 @@ -549,21 +980,46 @@ _) v (_ faU v v v) v + v (_N f - _) v f _) vie fi: - _) vi (et v,i: _) vi (CC vI _) vi vi: + _) v v + _) v (ater f + _) v (ie f + _) v (iet v + _) v (iz f + v (oll f + v (olk f + v (ölC f + _) v (on f + + _) vehe ve:he: _) ver (@P3 f%E* - _) vor (@P3 'fO* + _) ver (bal v%E* + _) ver (tik vE* + @) versich fE*z,IC + @) vergess fE*g,Es + _) viel (@P4 f'i:l + _) vier (g@P4 f'i:* + _) viet vIEt + _) voll (C@P4 f'Ol + _) voll (br f%Ol + _) voll (end f%Ol_| + _) voll (ko f%Ol + _) voll (stre f%Ol + _) voll (z f%Ol + _) vorder fO*d@* + -) vorha (nd fo:*h'a _) vor (ne 'fO* - _) vorbei (@P6 fO*'baI - - voraus fO*'aUs - vorüber fO*'yb3 + _) vor (@P3 'fo:* + _) voraus (@P6 fo:*'aUs + _) vorbei (@P6 fo:*'baI + _) vorher (@P6 fo:*h'e:* + _) vorüber (@P7 fo:*'yb3 .group w _) w (_ ve: @@ -572,6 +1028,11 @@ @) wert (_ vE*t _) wh _^_EN &) ware (_ _^_EN + _) wasch (@P5 v'aS + _) wasser (@P6 v'as@* + _) weg (C@P3 v'e:k + _) weit (C@P4 v'aIt + _) weiter (@P6 v'aIt@* _) wo (hin v%o: _) wohl (@P4 v'o:l work _^_EN @@ -588,7 +1049,8 @@ y y: y (CC y y (x y - y (A j + _) y (A j + A) y (A j @) y (_ I t) y (_ _^_EN @@ -596,25 +1058,43 @@ _) z (_ tsEt z ts z) z - ziell tsj'El - _) zer (@ %tsE* + _) zentral (@P7 tsEnt@-*'A:l + _) zentral (i tsEnt@-*al + _) zer (@P3 tsE* + _) zere (b tse:*e: + _) zere (m tse:*e: + ziell tsj'El + _) zie (ge@P3 ts'aI + _) zeit (@P4 ts'aIt + _) ziel (@P4 ts'i:l + _) zier (@P4 ts'i:* + _) zigaretten (@P10 tsi:ga*'Et@n + _) zigeu tsi:g'OY _) zu (C@P2 ts%u: + _) zu (nC tsU + _) zurück (@P6 tsu:*'yk + _) zyklo (@P5 ,tsy:klo: + zylin ts%i:lIn .group ä ä E: äh (+ e: + äu OY ä (C% E ä (CC E ä (sch E - äu OI + äb (t_ E:p + äg (t_ E:k + t) ät (_ 'E:t .group ö ö Y: öh (+ Y: + ö (_ 'Y: ö (C% W ö (CC W ö (sch W @@ -628,7 +1108,12 @@ ü (sch y ü (x y + üb (t_ y:p + üg (t_ y:k + _) über (@P4 _|,y:b3 + _) über (be@P4 _!'y:b3 + _) über (gangs y:b3 .group ß _) ß (_ EstsEt @@ -636,13 +1121,36 @@ .group - , (D kOma - / slaS - % p@-*o:ts'Ent - $ dOl@ - € OI*o: - £ paUnd + é e: + ée 'e: + é (_ 'e: + æ E + ø W + ç s + č tS + š S + ž Z + + , (D kOma + $ dOl'A: + € OY*o: + £ paUnd + % p@-*o:ts'Ent + & Unt + @ kl'ame:*,af@ + # nUm3 + + plUs + = glaIC + ~ tIld@ + \ bEkslES + . pUnkt . (. _: \.) . + + * StE*n + *) * (* + ** + **) * (_ _:: + diff -pruN 1.26-1/dictsource/dict_log 1.29-0ubuntu2/dictsource/dict_log --- 1.26-1/dictsource/dict_log 2007-06-08 11:16:42.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/dict_log 2007-08-27 12:16:43.000000000 +0100 @@ -1,14 +1,14 @@ Using phonemetable: 'af' Compiling: '/home/jsd1/speechdata/dictsource/af_list' - 480 entries + 536 entries Compiling: '/home/jsd1/speechdata/dictsource/af_rules' - 1930 rules, 28 groups + 2518 rules, 40 groups Using phonemetable: 'cs' Compiling: '/home/jsd1/speechdata/dictsource/cs_list' - 333 entries + 318 entries Compiling: '/home/jsd1/speechdata/dictsource/cs_rules' - 514 rules, 48 groups + 531 rules, 48 groups Using phonemetable: 'cy' Compiling: '/home/jsd1/speechdata/dictsource/cy_list' @@ -18,21 +18,21 @@ Compiling: '/home/jsd1/speechdata/dictso Using phonemetable: 'de' Compiling: '/home/jsd1/speechdata/dictsource/de_list' - 441 entries + 548 entries Compiling: '/home/jsd1/speechdata/dictsource/de_rules' - 504 rules, 31 groups + 968 rules, 32 groups Using phonemetable: 'el' Compiling: '/home/jsd1/speechdata/dictsource/el_list' 184 entries Compiling: '/home/jsd1/speechdata/dictsource/el_rules' - 194 rules, 52 groups + 195 rules, 52 groups Using phonemetable: 'en' Compiling: '/home/jsd1/speechdata/dictsource/en_list' - 2526 entries + 2542 entries Compiling: '/home/jsd1/speechdata/dictsource/en_rules' - 4946 rules, 95 groups + 4935 rules, 95 groups Using phonemetable: 'eo' Compiling: '/home/jsd1/speechdata/dictsource/eo_list' @@ -42,7 +42,7 @@ Compiling: '/home/jsd1/speechdata/dictso Using phonemetable: 'es' Compiling: '/home/jsd1/speechdata/dictsource/es_list' - 229 entries + 234 entries Compiling: '/home/jsd1/speechdata/dictsource/es_rules' 132 rules, 27 groups @@ -54,33 +54,33 @@ Compiling: '/home/jsd1/speechdata/dictso Using phonemetable: 'fr' Compiling: '/home/jsd1/speechdata/dictsource/fr_list' - 460 entries + 466 entries Compiling: '/home/jsd1/speechdata/dictsource/fr_rules' - 568 rules, 31 groups + 587 rules, 31 groups Using phonemetable: 'hi' Compiling: '/home/jsd1/speechdata/dictsource/hi_list' 224 entries Compiling: '/home/jsd1/speechdata/dictsource/hi_rules' - 281 rules, 112 groups + 289 rules, 112 groups Using phonemetable: 'hr' Compiling: '/home/jsd1/speechdata/dictsource/hr_list' - 515 entries + 501 entries Compiling: '/home/jsd1/speechdata/dictsource/hr_rules' 112 rules, 34 groups Using phonemetable: 'hu' Compiling: '/home/jsd1/speechdata/dictsource/hu_list' - 179 entries + 246 entries Compiling: '/home/jsd1/speechdata/dictsource/hu_rules' - 190 rules, 37 groups + 212 rules, 37 groups Using phonemetable: 'it' Compiling: '/home/jsd1/speechdata/dictsource/it_list' - 306 entries + 309 entries Compiling: '/home/jsd1/speechdata/dictsource/it_rules' - 266 rules, 27 groups + 281 rules, 27 groups Using phonemetable: 'nl' Compiling: '/home/jsd1/speechdata/dictsource/nl_list' @@ -102,7 +102,7 @@ Compiling: '/home/jsd1/speechdata/dictso Using phonemetable: 'ru' Compiling: '/home/jsd1/speechdata/dictsource/ru_list' - 114 entries + 121 entries Compiling: '/home/jsd1/speechdata/dictsource/ru_rules' 534 rules, 60 groups @@ -114,9 +114,9 @@ Compiling: '/home/jsd1/speechdata/dictso Using phonemetable: 'sv' Compiling: '/home/jsd1/speechdata/dictsource/sv_list' - 228 entries + 263 entries Compiling: '/home/jsd1/speechdata/dictsource/sv_rules' - 322 rules, 30 groups + 493 rules, 30 groups Using phonemetable: 'sw' Compiling: '/home/jsd1/speechdata/dictsource/sw_list' @@ -130,21 +130,21 @@ Compiling: '/home/jsd1/speechdata/dictso Compiling: '/home/jsd1/speechdata/dictsource/vi_rules' 353 rules, 95 groups -Using phonemetable: 'zh_yue' +Using phonemetable: 'zhy' Compiling: '/home/jsd1/speechdata/dictsource/zhy_rules' 81 rules, 27 groups Using phonemetable: 'pt' Compiling: '/home/jsd1/speechdata/dictsource/pt_list' - 612 entries + 630 entries Compiling: '/home/jsd1/speechdata/dictsource/pt_rules' - 483 rules, 38 groups + 534 rules, 38 groups Using phonemetable: 'ro' Compiling: '/home/jsd1/speechdata/dictsource/ro_list' - 738 entries + 1680 entries Compiling: '/home/jsd1/speechdata/dictsource/ro_rules' - 249 rules, 32 groups + 347 rules, 32 groups Using phonemetable: 'is' Compiling: '/home/jsd1/speechdata/dictsource/is_list' @@ -152,3 +152,15 @@ Compiling: '/home/jsd1/speechdata/dictso Compiling: '/home/jsd1/speechdata/dictsource/is_rules' 201 rules, 37 groups +Using phonemetable: 'la' +Compiling: '/home/jsd1/speechdata/dictsource/la_list' + 215 entries +Compiling: '/home/jsd1/speechdata/dictsource/la_rules' + 113 rules, 31 groups + +Using phonemetable: 'mk' +Compiling: '/home/jsd1/speechdata/dictsource/mk_list' + 218 entries +Compiling: '/home/jsd1/speechdata/dictsource/mk_rules' + 150 rules, 65 groups + diff -pruN 1.26-1/dictsource/dict_phonemes 1.29-0ubuntu2/dictsource/dict_phonemes --- 1.26-1/dictsource/dict_phonemes 2007-06-08 11:16:42.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/dict_phonemes 2007-08-27 12:16:43.000000000 +0100 @@ -3,15 +3,16 @@ Phonemes which are used in the *_rules a Dictionary af_dict -& 3: @ @- @L @U a A: -aI AI aU A~ E e: e@ eI -e~ I i iu O O: o@ OI -oI o~ u uI W y Y@ Yy +& &: 3: @ @- @L @U a +A: aI AI aU A~ E e: e@ +eI e~ I i iu O O: o@ +OI oI o~ u uI W y Y@ +Yy - : ; b c d dZ f g h j k l m n N -p r s S t tS v w -x x2 z Z +p r r- s S t tS v +w x2 z Z Dictionary cs_dict @@ -41,14 +42,15 @@ x z Dictionary de_dict -3 @ @- a A: aI aU E -E2 E: e: I i: O o: OI -U u: W y y: Y: - -* ; b C d D f g -h j k l m n N p -pF r s S t tS ts v -x z +3 @ @- a A A: aI aU +E E2 E: e: EI I i2 i: +O o: OY U u: W y y: +Y: + +* : ; b C C2 d D +dZ f g h j k l m +n N p pF r s S t +tS ts v x z Z Dictionary el_dict @@ -115,12 +117,12 @@ Dictionary fr_dict @ @- a A A~ e E E~ i o O O~ u W w^i W~ -y Y y" +y Y -(i) : ; b c d dZ f -g h j k l L l/ m -n N n^ p r R s S -t t2 tS v w z Z z2 +: ; b c d dZ f g +h j k l L m n N +n^ p r R s S t t2 +tS v w z Z z2 Dictionary hi_dict @@ -128,7 +130,7 @@ Dictionary hi_dict @ @- @2 @3 a a: aI aU e E e: E: E~ i I i: l- o O o: O: o~ O~ r- -U u: V +U u: u~ V - : b c ch d d. f g h H j J k kh l @@ -141,8 +143,8 @@ Dictionary hr_dict & @ @- @2 a A a: aI aU E e e: E~ i I i: -l- o o: oU r- u U u: -y +l- O o o: oU r- u U +u: y * b d dZ dZ; f g h j k l l^ m n N n^ @@ -152,24 +154,24 @@ tS; v x z Z Dictionary hu_dict -A a: E e e: i i: o -o: u u: y Y y: Y: +A a: E e: i i: o o: +u u: Y y y: Y: -* : b c C d dZ f -g h j J k l m n -N n^ p r R s S s2 -t tS ts v z Z z2 +: b c C d dZ f g +h j J k l m n N +n^ p R R2 s S s2 t +tS ts v z Z Dictionary it_dict @- a a/ aI aU e E i -o O oI U u +o O oI u -* : b d dZ f g j -k l l^ m n N n^ p -r R s S t tS ts v -w w2 z +* : b d dZ f g h +j k l l^ m n N n^ +p r R s S t tS ts +v w w2 z Dictionary nl_dict @@ -212,14 +214,15 @@ z Z Z; Dictionary ru_dict 8 @- A a E e E# E2 -E3 i I I# I2 I3 ja ju -o O u u" u# V V# y -Y +E3 i I I# I2 I3 I^ ja +ju o O u u" u# V V# +y Y * ; b d d; dZ; f g -j k l l^ m n n^ p -r s S s; S; t t; ts -ts; tS; v x z Z z; Z; +j k l l^ m m; n n^ +p r R s S s; S; t +t; ts ts; tS; v x z Z +z; Z; Dictionary sk_dict @@ -228,11 +231,10 @@ Dictionary sk_dict l- l: o o: oU r- r: u u: -* b c d d; dZ f g -h j k l l^ m n N -n^ p r R R^ R^/ s S -t t; tS ts v w x z -Z +* b d d; dZ f g h +j k l l^ m n N n^ +p r R R^ R^/ s S t +t; tS ts v w x z Z Dictionary sv_dict @@ -241,9 +243,10 @@ Dictionary sv_dict I i: O o: U u- u: W y y: Y: -: ; b d f g h j -k l m n N p r s -S s. S; sx t v w z +: ; b B d f g h +j k l m n N p R +s S s. S; sx t v w +z Dictionary sw_dict @@ -285,8 +288,8 @@ Dictionary pt_dict & &/ &U~ &~ @ @- a A aI aU e E eI EI eU EU -e~ i i/ iU o O oI OI -o~ U u uI u~ y +i i/ iU i~ o O oI OI +o~ u U uI u~ y * : ; b C d dZ f g h j k l l^ m n @@ -305,9 +308,9 @@ y Y yI yU * *; b b; c C d d; dZ f f; g h j k l l; m m; n N n; p p; -r s S s; S; t t; tS -ts ts; v v; w z Z z; -Z; +r s S S; t T t; tS +ts ts; v v; w w2 x z +Z z; Z; Dictionary is_dict @@ -321,3 +324,26 @@ f g h j J k l l# m m# n N n# N# n^ n^# p Q r R r# R2 s S t T tl# v x z + + +Dictionary la_dict + +@- a a: aI aU E e: EU +I i: O o: OI U u: y +y: + +* : ; b d f g +h j k l m n N p +r R s t w z + + +Dictionary mk_dict + +& @ @- @2 a A a: E +e e: E~ i I i: l- o +o: oU r- u u: y + +* b d dZ dZ; f g h +j k k^ l l^ m n N +n^ p r R s S t tS +ts tS; v x z Z diff -pruN 1.26-1/dictsource/el_rules 1.29-0ubuntu2/dictsource/el_rules --- 1.26-1/dictsource/el_rules 2007-05-21 19:00:43.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/el_rules 2007-06-11 22:45:35.000000000 +0100 @@ -3,12 +3,15 @@ // This file is UTF-8 encoded // all words lower case +// Alphabet // Α α, Β β, Γ γ, Δ δ, Ε ε, Ζ ζ, Η η, Θ θ, Ι ι, Κ κ, Λ λ, Μ μ, Ν ν, Ξ ξ, // Ο ο, Π π, Ρ ρ, Σ σ ς (word-final form), Τ τ, Υ υ, Φ φ, Χ χ, Ψ ψ, Ω ω. // Letter group B: θ κ ξ π ς σ τ φ χ (voiceless consonants) // Letter group Y: ε η ι υ έ ή ί ύ (front vowels). +.L01 αι ε ι η υ οι ει αί έ ί ή ύ οί εί + .group α α a @@ -32,13 +35,14 @@ A) γγ Ng A) γκ Ng γ (χ N + γ (L01 j γαι (A j γε (A j - γει (A j - γη (A j γι (A j + γη (A j γυ (A j γοι (A j + γει (A j .group δ δ D diff -pruN 1.26-1/dictsource/en_list 1.29-0ubuntu2/dictsource/en_list --- 1.26-1/dictsource/en_list 2007-06-08 09:09:21.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/en_list 2007-08-27 10:30:12.000000000 +0100 @@ -11,12 +11,11 @@ // Conditional rules // ?2 Use long 'a' in 'bath' // ?3 General American -// ?4 Not General American +// ?!3 Not General American // ?5 split [3:] er [3:], ir [IR], ur [VR] // ?6 'one' = [wVn], 'of' = [Vv] // ?7 Scottish - // letter names, as they are spoken as a single character in text // precede by _ to distinguish from pronunciation as a language word @@ -55,6 +54,8 @@ é i:a2k'ju:t _cap k,ap@-t@L _?A lEt3 _?? sImb@L +_#9 tab +_#32 speIs _! Ekskl@m'eIS@n _" kwoUts @@ -133,9 +134,9 @@ _0C h'Vndr@d _0M1 T'aUz@nd _0M2 m'Ili@n _0M3 b'Ili@n -_0and @n -?3 _0and +?!3 _0and @n _dpt pOInt +_roman roUm@n_ // ABBREVIATIONS @@ -158,6 +159,7 @@ edt $abbrev eg fO@Egz'aamp@L est $abbrev etc Et'sEtr@ +eu $abbrev eur jU@ hmm h@m (http ://) eItSti:ti:'pi:_ @@ -170,7 +172,9 @@ ltd lImItId mc m@k oem $abbrev ok $abbrev +omg $abbrev os $abbrev +otoh $abbrev riscos rIskoUEs sae $abbrev st s@nt @@ -182,14 +186,11 @@ ui $abbrev uk $abbrev url $abbrev usa $abbrev +utc $abbrev u.s ju:'Es wwii dVb@Lju:dVb@Lju:t'u: xy $abbrev -ii tu: $abbrev // roman numerals -iii Tri: $abbrev -iv fo@ $abbrev - nd $only rd $only @@ -317,10 +318,10 @@ allover O:l'oUv3 alm A:m almost O:lmoUst allspice $1 -alternate Olt'3:n@t $only -alternate Olt3neIt $verb -alternately Olt'3:n@tlI2 $verbf -alternative Olt'3:n@tIv +alternate O:lt'3:n@t $only +alternate O:lt3neIt $verb +alternately O:lt'3:n@tlI2 $verbf +alternative O:lt'3:n@tIv altogether ,O:lt@gED3 always O:lweIz aluminium aljUm'Ini@m @@ -334,7 +335,6 @@ amoral eIm'0r@L amount a2maUnt amply amplI2 $verbf anal eIn@L -analogous a2nal@g@s analog an@l0g analogue an@l0g analyses a2nal@si:z @@ -588,7 +588,7 @@ codify koUdIfaI cognac k0njak coincide koUIns'aId college k0lIdZ -colon koUl0n +colon koUl@n color kVl3 colored kVl3d colonel k3:n@L @@ -690,12 +690,14 @@ deficit dEfIsIt definitive dI2fInItIv deity deI@tI2 deja deIZA: $only +deli dElI2 deliberate dI2lIb@r@t delicate dElIk@t delimit dI2lImIt // delimited demolish dI2m0lIS demon di:m@n demo dEmoU +demonstrative $2 denouement deIn'u:mO~ denier dI2naI3 deny dI2naI @@ -834,30 +836,32 @@ famine famIn farewell $2 fasten faas@n fathom faD@m -favorite feIv@-rIt // sp. +favorite feIv@-rIt // sp. favourite feIv@-rIt -favorites feIv@-rIts // sp. +favorites feIv@-rIts // sp. favourites feIv@-rIts feisty faIstI2 feline fi:laIn feminine fEm@nIn fete feIt fetus fi:t@s -fi f,aI // as in "hi-fi" +fi f,aI // as in "hi-fi" fiasco fi:'askoU fiery faI@rI2 finale fIn'A:lI2 finance faInans $only finance $verb +finess fI2nEs // for finessed finesse fI2nEs finite faInaIt fishnet fISnEt fiord fi:O@d -fix fIks // for fixer +fix fIks // for fixer +flagellum fla2dZEl@m flexible flEksIb@L flier flaI3 flourish flVrI2S -focus foUk@s // ed,ing +focus foUk@s // ed,ing foothold fUthoUld forage f0rIdZ force fo@s @@ -868,11 +872,11 @@ forestall fo@st'O:l foretell fo@t'El forever $2 forewarn $2 -formid fO@m'Id // formidable +formid fO@m'Id // formidable foyer fOIeI freelance fri:laans frigate frIg@t -fringer frIndZ3 // infringer +fringer frIndZ3 // infringer fringing frIndZIN frontend fr'Vnt,End frontpage fr'Vntp,eIdZ @@ -914,7 +918,7 @@ gourmet gU@meI graduate gradju:@t graduate gradju:eIt $verb graffiti gra2fi:tI2 -gredient gri:di@nt // ingredient +gredient gri:di@nt // ingredient grenade gr@neId grosvenor groUv@n3 groupie gru:pI @@ -935,6 +939,7 @@ hatred heItrId hazardous haz3d@s hedgehog hEdZh0g hehe hi:h'i: +heifer hEf@ helium hi:li@m helix hi:lIks hello h@loU @@ -947,6 +952,7 @@ herod hEr@d heroe hi@oU heroic hI2roUIk heroin hEroUIn +heroism hEroUIz@m heroine hEroUIn herpes h3:pi:z hideout haIdaUt @@ -959,6 +965,7 @@ holster hoUlst3 holy hoUlI2 homepage hoUmpeIdZ hominem h0mInEm +hopi hoUpi: horizontal $3 hospitable h0sp'It@b@L hostage h0stIdZ @@ -1006,7 +1013,7 @@ inference Inf@r@ns influenza Influ:'Enz@ infrastructure $1 ingenuity IndZIn'ju:I2tI2 -inherit I2nhErIt // inherited +inherit I2nhErIt // inherited innard In3d inner In3 inning InIN @@ -1015,7 +1022,7 @@ insert Ins3:t $onlys insert Ins'3:t $verb insightful $2 inspire Insp'aI@ -instal I2nstO:l // instalment +instal I2nstO:l // instalment installation Inst@l'eIS@n instinctive $2 insult $2 @@ -1027,12 +1034,12 @@ intern Int3:n interrogatory $3 inventory Inv@ntrI2 interface $1 -intermin I2nt3:mIn // interminable +intermin I2nt3:mIn // interminable internet Int3nEt interrupt $1 $onlys interrupt $3 $verb interval Int3v@L -interven Int3v'i:n // for intervening +interven Int3v'i:n // for intervening intro $1 iris aIrIs irony aIr@nI2 @@ -1169,6 +1176,7 @@ miaow mi:'aU mica maIk@ microorganism maIkroU'O@g@nIz@m midday m,Idd'eI +mideast mI2di:st midterm m'Idt,3:m mildew mIldju: mileage maIlI2dZ @@ -1456,7 +1464,7 @@ rapport rap'o@ rarest re@r@st rascal raask@L ratatouille rat@t'u:I2 -rather rA:D3 +?!3 rather rA:D3 ratio reISI2oU rationale raS@n'al ravine r@vi:n @@ -1517,6 +1525,7 @@ replay ri:pleI reply rI2plaI // for replied repost r,i:p'oUst reprisal rI2praIz@L +reputable rEpju:t@b@L reputation rEpju:t'eIS@n requiem rEkwIEm rescue 'rEskju: @@ -1582,6 +1591,7 @@ scaring ske@rIN scenic si:nIk scald sk0ld sclera skli@r@ +scythe saID seabed si:bEd sealion si:laI@n seance seI0ns @@ -1660,6 +1670,7 @@ stagnate $2 stampede $2 strychnine str'Ikni:n slavish sleIvIS +?3 status stat@s sterile stEraIl stomata stoUm@t@ stonily stoUnIlI2 @@ -1797,6 +1808,7 @@ uni ju:nI2 uninterest Vn'Int@r@st university ju:nIv'3:sItI2 unite ju:n'aIt +unless Vnl'Es unread Vnr'Ed $only unsure VnS'U@ untidy Vnt'aIdI2 @@ -1877,6 +1889,7 @@ wicked wIkId wilderness wIld3nEs winding waIndI2N // verb wind waInd $verb +(wind up) w'aInd||'Vp winded wIndId winged wINd wither wID3 // not with+er @@ -1908,371 +1921,372 @@ zulu zu:lu: // place names -Altrincham O:ltrIN@m -Anglesey aNg@LsI2 -Argyle A@g'aIl -Argyll A@g;aIl -Bacup beIk@p -Berwick bErIk -Betws bEtUs -Cambridge keImbrIdZ -Cheadle tSi:d@L -Cheshire tSES3 -Chiswick tSIzIk -Dolgellau d0lg'EClaI -Dover doUv3 -Dumfries dVmfr'i:s -Dyfed d'VvId -Edinburgh EdInb%Vr@ -Ely i:lI2 -Exeter EksIt3 -Exmoor EksmU@ -Fylde faIld -Glasgow glaazgoU -Glenrothes gl,Enr'0TI2s -Greenwich grEnItS -Harwich harIdZ -Hasting heIstI2N -Kirkcaldy kIRk'0dI2 -Leven li:v@n -Lincoln lInk@n -Malvern mO:lv3n -Morecambe mo@k@m -Norfolk nO@f@k -Norwich n0rItS -Plymouth plIm@T -Regis ri:dZI2s -Rhyl rIl -Salisbury sO:lsbrI2 -Southend sA:f'End -Suffolk sVf@k -Walsall wO:lsO:l -Watford w0tf@d -Welwyn wElIn -Wirral wIr@L - - -Ababa aba2b@ -Accra akra2 -Addis adIs -Adelaide ad@leId -Aegean $2 -Afghan afgan -Aires aIrIz -Alamo al@moU -Albuquerque alb@k'3:kI -Algiers $2 -Amman a2m'A:n -Andes andi:z -Angeles andZ@li:z -Antarctica $2 -Antigua ant'i:g@ -Antilles ant'Ili:z -Apennine ap@naIn -Armageddon A@ma2g'Ed@n -Arkansas A@k@nsO: -Athens aTInz -Bahrain $2 -Belgrade $2 -Barents bar@nt|s -Bangledesh baNgl@d'ES -Beijing $2 -Beirut beIr'u:t -Belize bEl'i:z -Bengal b,Eng'O:l -Benin bEnIn -Berlin b3:l'In -Bhutan bu:t'an -Bogata b0ga2t'A: -Bucharest bu:k@r'Est -Budapest bu:d@p'Est -Buenos bweIn0s -Burundi bUr'UndI -Brazil braz'Il -Cadiz $2 -Cairo kaIroU -Calcutta $2 -Canada kan@d@ -Carolina kar@l'aIn@ -Caribbean kar@b'i@n -Chicago SIk'A:goU -Chile tSIlI2 -Ceylon $2 -Cologne k@loUn -Congo $1 -Copenhagen koUp@nh'eIg@n -Cruz kru:z -Cyprus saIpr@s -Dahomey $2 -Damascus da2mask@s -Danish deInIS -Delhi dElI2 -Djibouti dZIb'u:tI -Egyptian IdZ'IpS@n -Eire e@r@ -Geneva dZ@ni:v@ -Harare h@rA:rI -Hanoi han'OI -Hawaii h@w'aIi: -Hawaiian h@w'aI@n -Hebrew hi:bru: -Hebrides hEbr@di:z -Honduras h0nd'jU@ra2s -Houston hju:st@n -Idaho $1 -Illinois Il@n'OI -Indochina IndoUtS'aIn@ -Israeli Izr'eIlI2 -Istanbul ,Ist,anb'Ul -Italia It'alI2@ // Italian(s) -Jakarta $2 -Jerusalem dZ@ru:s@l@m -Johannesburg $2 -Kalgoorlie kalgU@lI2 -Karachi k@rA@tSI2 -Kiev ki:Ev -Khmer kmi@ -Korea kOr'i:@ -Korean kOr'i:@n -Kuala kwA:la2 -Lagos leIg0s -Leone li:'oUn -Lesotho l@s'u:tu: -Liberia laIb'i@ri:@ -Lima li:ma2 -Luxembourg lVks@mb3:g -?5 Luxembourg lVks@mbVRg -Madagascar mad@g'ask3 -Madras m@draas -Madrid m@drId -Malawi ma2lA:wI2 -Maldives mO:ld'i:v -Mali mA:lI2 -Manhatten $2 -Massachusetts $3 -Maya maI@ -Mayan maI@n +Altrincham O:ltrIN@m +Anglesey aNg@LsI2 +Argyle A@g'aIl +Argyll A@g;aIl +Bacup beIk@p +Berwick bErIk +Betws bEtUs +Cambridge keImbrIdZ +Cheadle tSi:d@L +Cheshire tSES3 +Chiswick tSIzIk +Dolgellau d0lg'EClaI +Dover doUv3 +Dumfries dVmfr'i:s +Dyfed d'VvId +Edinburgh EdInb%Vr@ +Ely i:lI2 +Exeter EksIt3 +Exmoor EksmU@ +Fylde faIld +Glasgow glaazgoU +Glenrothes gl,Enr'0TI2s +Greenwich grEnItS +Harwich harIdZ +Hasting heIstI2N +Kirkcaldy kIRk'0dI2 +Leven li:v@n +Lincoln lInk@n +Malvern mO:lv3n +Morecambe mo@k@m +Norfolk nO@f@k +Norwich n0rItS +Plymouth plIm@T +Regis ri:dZI2s +Rhyl rIl +Salisbury sO:lsbrI2 +Southend sA:f'End +Suffolk sVf@k +Walsall wO:lsO:l +Watford w0tf@d +Welwyn wElIn +Wirral wIr@L + + +Ababa aba2b@ +Accra akra2 +Addis adIs +Adelaide ad@leId +Aegean $2 +Afghan afgan +Aires aIrIz +Alamo al@moU +Albuquerque alb@k'3:kI +Algiers $2 +Amman a2m'A:n +Andes andi:z +Angeles andZ@li:z +Antarctica $2 +Antigua ant'i:g@ +Antilles ant'Ili:z +Apennine ap@naIn +Armageddon A@ma2g'Ed@n +Arkansas A@k@nsO: +Athens aTInz +Bahrain $2 +Belgrade $2 +Barents bar@nt|s +Bangledesh baNgl@d'ES +Beijing $2 +Beirut beIr'u:t +Belize bEl'i:z +Bengal b,Eng'O:l +Benin bEnIn +Berlin b3:l'In +Bhutan bu:t'an +Bogata b0ga2t'A: +Bucharest bu:k@r'Est +Budapest bu:d@p'Est +Buenos bweIn0s +Burundi bUr'UndI +Brazil braz'Il +Cadiz $2 +Cairo kaIroU +Calcutta $2 +Canada kan@d@ +Carolina kar@l'aIn@ +Caribbean kar@b'i@n +Chicago SIk'A:goU +Chile tSIlI2 +Ceylon $2 +Cologne k@loUn +Congo $1 +Copenhagen koUp@nh'eIg@n +Cruz kru:z +Cyprus saIpr@s +Dahomey $2 +Damascus da2mask@s +Danish deInIS +Delhi dElI2 +Djibouti dZIb'u:tI +Egyptian IdZ'IpS@n +Eire e@r@ +Geneva dZ@ni:v@ +Harare h@rA:rI +Hanoi han'OI +Hawaii h@w'aIi: +Hawaiian h@w'aI@n +Hebrew hi:bru: +Hebrides hEbr@di:z +Honduras h0nd'jU@ra2s +Houston hju:st@n +Idaho $1 +Illinois Il@n'OI +Indochina IndoUtS'aIn@ +Israeli Izr'eIlI2 +Istanbul ,Ist,anb'Ul +Italia It'alI2@ // Italian(s) +Jakarta $2 +Jerusalem dZ@ru:s@l@m +Johannesburg $2 +Kalgoorlie kalgU@lI2 +Karachi k@rA@tSI2 +Kiev ki:Ev +Khmer kmi@ +Korea kOr'i:@ +Korean kOr'i:@n +Kuala kwA:la2 +Lagos leIg0s +Leone li:'oUn +Lesotho l@s'u:tu: +Liberia laIb'i@ri:@ +Lima li:ma2 +Luxembourg lVks@mb3:g +?5 Luxembourg lVks@mbVRg +Madagascar mad@g'ask3 +Madras m@draas +Madrid m@drId +Malawi ma2lA:wI2 +Maldives mO:ld'i:v +Mali mA:lI2 +Manhatten $2 +Massachusetts $3 +Maya maI@ +Mayan maI@n Melbourne mElb3n -Memphis mEmfIs -Mexico $1 -Milan $2 -Mindanao mInd@n'aU -Minneapolis mIni:'ap@lI2s -Missouri mIs'U@rI -Montreal m0ntrI'O:l -Morocco m@r0koU -Munich mju:nIk -Nairobi naIr'oUbI -Nauru naUru: -Nepal nEp'O:l -Noumea nu:m'eI@ -Oahu oU'A:hu: -Ohio oUh'aIoU -Oman oUm'an -Oregon 0rIg@n -Pacific pa2sIfIk -Palestine pal@staIn -Palestinian pal@st'Ini:@n -Panama pan@mA: -Paris parIs -Peking pi:k'IN -Peru p@ru: -Phillipine fIlIpi:n -Philipine fIlIpi:n // misspell -Poland poUl@nd -Polish poUlIS $capital $only -Portuguese po@tju:g'i:z -Prague prA:g -Pyrenees pIr@n'i:z -Qatar katA@ -Quebec kwI2bEk -Rico ri:koU -Saigon saIg'0n -Santiago santI'A:goU -Savannah $2 -Savoy sa2vOI -Seattle si:'at@L -Seychelle seIS'El -Slovak sloUvak -Seoul soUl -(sri lanka) sr,i:||l'anka2 -Sudan su:d'an -Suez su:Iz -Sulawesi su:la2w'eIsI -Suriname sU@rIn'am -Taipei t,aIp'eI -Taiwan taI'wan -(tel aviv) t,El||a2v'i:v -Tibet tIb'Et -Totonto t@r0ntoU -Timor ti:mo@ -Tokyo toUkIoU -Toulouse tu:l'u:z -Tripoli trIp@lI2 -Ukraine ju:kr'eIn -Ural ju:@r@L -Utah ju:tA: -Utrecht ju:trECt -Vancouver $2 -Vegas veIg@s -Vienna vI'En@ -Winnipeg wInI2pEg -Wisconsin wIsk'0nsIn -Wyoming waI'oUmI2N -Xhosa kO:s@ -zaire zaI'i@ -zimbabwe zI2mbA:bwI2 - -Aaron e@r@n -Abe eIb -Abu abu: -Abraham eIbr@ham -Ada eId@ $onlys -Adrian eIdri@n -Agnes agn@s -Ahab eIhab -Ahmed axmEd -Alan al@n -Alec alIk -Alex alIks -Alfred alfrId -Alice alIs -Allen al@n -Alison alIs@n -Amanda $2 -Amy eImI2 -Andre 0ndreI -Anthony ant@nI2 -Anton ant0n -Ares e@ri:z -Astley astlI2 -Barbara bA@b@r@ -Boris b0rIs -Brien braI@n -Carol kar@l -Calliope ka2laI@pI -Canberra kanb@r@ -Cassandra k@sandr@ -Cassey keIsI2 -Catherine kaTrIn -Chris krIs -Connor k0n3 -Daphne dafnI2 -Darryl dar@L -Davie deIvI2 -Davis deIvIs -Denise d@ni:s -Derek dErIk -Dinah daIn@ -Dominic d0mInIk -Donald d0n@Ld -Dougall du:g@L -Dylan dIl@n -Edith i:dIT -Elizabeth I2lIz@b@T -Emma Em@ -Evan Ev@n -Gary garI2 -Geraint gEraInt -Gilbert gIlb3t -Giles gaIlz -Glynn glIn -Graeme greI@m -Graham greI@m -Hadrian heIdri:@n -Hugh hju: -Hughes hju:z -Huw hju: -Iain i:@n -Ian i:@n -Igor i:go@ -Imogen Im@dZ@n -Irene aIri:n -Isaac aIs@k -Isabel Iz@bEl -Isiah aIz'aI@ -Ivan aIv@n -Jacob dZeIk@b -Jamie dZeImI2 -Jesus dZi:z@s -José hoUs'eI -Jose hoUs'eI -Juan hwA:n -Judy dZu:dI2 -Karen kar@n -Karene ka2ri:n -Katherine kaTrIn -Kieran ki@r@n -Laurence l0r@ns -Lawrence l0r@ns -Lenore lEn'o@ -Leroy li:rOI -Liam li:@m -Louis lu:I -Louise lu:w'i:z -Mahmoud maxm'u:d -Malcolm malk@m -Maria ma2ri:@ -Marie ma2ri: -Margaret mA@gr@t -Marilyn mar@lIn -Matilda ma2tIld@ -Matthew maTju: -Maurice m0rIs -Mavis meIvIs -Melissa $2 -Miami maI'amI -Michael maIk@L -Michelle mI2SEl -Miguel mi:Q'El -Mohammad moUh'amId -Muhammad moUh'amId -Moira mOIr@ -Neville nEvIl -Nicholas nIk@l@s -Nicosia nIk@s'i:@ -Nigel naIdZ@L -Nguyen nu:jEn -Omar oUmA@ -Oscar 0sk3 -Ottawa 0ta2w@ -Pamela pam@l@ -Pandora $2 -Penelope p@nEl@pI2 -Phoebe fi:bi: -Rachel reItS@L -Rica ri:ka2 -Robert r0b3t -Roderick r0drIk -Samantha s@manT@ -Sarah se@r@ -Seamus SeIm@s -Sean SO:n -Sheila Si:l@ -Sonia s0nj@ -Sophie soUfI2 -Stephen sti:v@n -Stewart stju:3t -Stuart stju:3t -Theresa t@ri:z@ -Thomas t0m@s -Tina ti:n@ -Tracy treIsI2 -Tricia trIS@ -Wally w0lI2 -Yvonne $2 -Zoe zoUI - -Andromeda andr'0mId@ -Buchannan bju:k'an@n -Campbell kamb@l -Disney dIznI2 -Patel p@t'El -Prentice prEntIs -Reuter rOIt3 -Ubuntu u:b'u:ntu: -Yaesu jeIsu: -zhivago ZI2vA:goU +Memphis mEmfIs +Mexico $1 +Miami maI'amI +Milan $2 +Mindanao mInd@n'aU +Minneapolis mIni:'ap@lI2s +Missouri mIs'U@rI +Montreal m0ntrI'O:l +Morocco m@r0koU +Munich mju:nIk +Nairobi naIr'oUbI +Nauru naUru: +Nebraska $2 +Nepal nEp'O:l +Noumea nu:m'eI@ +Oahu oU'A:hu: +Ohio oUh'aIoU +Oman oUm'an +Oregon 0rIg@n +Pacific pa2sIfIk +Palestine pal@staIn +Palestinian pal@st'Ini:@n +Panama pan@mA: +Paris parIs +Peking pi:k'IN +Peru p@ru: +Phillipine fIlIpi:n +Philipine fIlIpi:n // misspell +Poland poUl@nd +Polish poUlIS $capital $only +Portuguese po@tju:g'i:z +Prague prA:g +Pyrenees pIr@n'i:z +Qatar katA@ +Quebec kwI2bEk +Saigon saIg'0n +Santiago santI'A:goU +Savannah $2 +Savoy sa2vOI +Seattle si:'at@L +Seychelle seIS'El +Slovak sloUvak +Seoul soUl +(sri lanka) sr,i:||l'anka2 +Sudan su:d'an +Suez su:Iz +Sulawesi su:la2w'eIsI +Suriname sU@rIn'am +Taipei t,aIp'eI +Taiwan taI'wan +(tel aviv) t,El||a2v'i:v +Tibet tIb'Et +Totonto t@r0ntoU +Timor ti:mo@ +Tokyo toUkIoU +Toulouse tu:l'u:z +Tripoli trIp@lI2 +Ukraine ju:kr'eIn +Ural ju:@r@L +Utah ju:tA: +Utrecht ju:trECt +Vancouver $2 +Vegas veIg@s +Vienna vI'En@ +Winnipeg wInI2pEg +Wisconsin wIsk'0nsIn +Wyoming waI'oUmI2N +Xhosa kO:s@ +zaire zaI'i@ +zimbabwe zI2mbA:bwI2 + +Aaron e@r@n +Abe eIb +Abu abu: +Abraham eIbr@ham +Ada eId@ $onlys +Adrian eIdri@n +Agnes agn@s +Ahab eIhab +Ahmed axmEd +Alan al@n +Alec alIk +Alex alIks +Alfred alfrId +Alice alIs +Allen al@n +Alison alIs@n +Amanda $2 +Amy eImI2 +Andre 0ndreI +Anthony ant@nI2 +Anton ant0n +Ares e@ri:z +Astley astlI2 +Barbara bA@b@r@ +Boris b0rIs +Brien braI@n +Carol kar@l +Calliope ka2laI@pI +Canberra kanb@r@ +Cassandra k@sandr@ +Cassey keIsI2 +Catherine kaTrIn +Chris krIs +Connor k0n3 +Daphne dafnI2 +Darryl dar@L +Davie deIvI2 +Davis deIvIs +Denise d@ni:s +Derek dErIk +Dinah daIn@ +Dominic d0mInIk +Donald d0n@Ld +Dougall du:g@L +Dylan dIl@n +Edith i:dIT +Elizabeth I2lIz@b@T +Emma Em@ +Evan Ev@n +Gary garI2 +Geraint gEraInt +Gilbert gIlb3t +Giles gaIlz +Glynn glIn +Graeme greI@m +Graham greI@m +Hadrian heIdri:@n +Hugh hju: +Hughes hju:z +Huw hju: +Iain i:@n +Ian i:@n +Igor i:go@ +Imogen Im@dZ@n +Irene aIri:n +Isaac aIs@k +Isabel Iz@bEl +Isiah aIz'aI@ +Ivan aIv@n +Jacob dZeIk@b +Jamie dZeImI2 +Jesus dZi:z@s +José hoUs'eI +Jose hoUs'eI +Juan hwA:n +Judy dZu:dI2 +Karen kar@n +Karene ka2ri:n +Katherine kaTrIn +Kieran ki@r@n +Laurence l0r@ns +Lawrence l0r@ns +Lenore lEn'o@ +Leroy li:rOI +Liam li:@m +Louis lu:I +Louise lu:w'i:z +Mahmoud maxm'u:d +Malcolm malk@m +Maria ma2ri:@ +Marie ma2ri: +Margaret mA@gr@t +Marilyn mar@lIn +Matilda ma2tIld@ +Matthew maTju: +Maurice m0rIs +Mavis meIvIs +Melissa $2 +Michael maIk@L +Michelle mI2SEl +Miguel mi:Q'El +Mohammad moUh'amId +Muhammad moUh'amId +Moira mOIr@ +Neville nEvIl +Nicholas nIk@l@s +Nicosia nIk@s'i:@ +Nigel naIdZ@L +Nguyen nu:jEn +Omar oUmA@ +Oscar 0sk3 +Ottawa 0ta2w@ +Pamela pam@l@ +Pandora $2 +Penelope p@nEl@pI2 +Phoebe fi:bi: +Rachel reItS@L +Rhys ri:s +Robert r0b3t +Roderick r0drIk +Samantha s@manT@ +Sarah se@r@ +Seamus SeIm@s +Sean SO:n +Sebastian $2 +Sheila Si:l@ +Sonia s0nj@ +Sophie soUfI2 +Stephen sti:v@n +Stewart stju:3t +Stuart stju:3t +Theresa t@ri:z@ +Thomas t0m@s +Tina ti:n@ +Tracy treIsI2 +Tricia trIS@ +Wally w0lI2 +Yvonne $2 +Zoe zoUI + +Andromeda andr'0mId@ +Buchannan bju:k'an@n +Campbell kamb@l +Disney dIznI2 +Patel p@t'El +Prentice prEntIs +Reuter rOIt3 +Ubuntu u:b'u:ntu: +Yaesu jeIsu: +zhivago ZI2vA:goU @@ -2511,7 +2525,7 @@ became bI,keIm $strend2 we're %wi@ you're %jO@ -?7 you're %jU@ +?6 you're %jU@ they're %DeI3 it'd %It@d that'd %Dat@d @@ -2562,7 +2576,7 @@ its %Its $nounf our %aU@ $nounf $only ?3 our %aU3 $nounf $only your %jO@ $nounf $only -?7 your %jU@ $nounf $only +?6 your %jU@ $nounf $only their %De@ $nounf $only theirs De@z @@ -2682,3 +2696,4 @@ like laIk $strend2 // General American // ?3 status statVs + diff -pruN 1.26-1/dictsource/en_rules 1.29-0ubuntu2/dictsource/en_rules --- 1.26-1/dictsource/en_rules 2007-06-04 15:49:26.000000000 +0100 +++ 1.29-0ubuntu2/dictsource/en_rules 2007-08-27 09:40:45.000000000 +0100 @@ -1,11 +1,11 @@ // *************************************************************************** -// * Copyright (C) 2005,2006 by Jonathan Duddington * -// * jonsd@users.sourceforge.net * +// * Copyright (C) 2005 to 2007 by Jonathan Duddington * +// * email: jonsd@users.sourceforge.net * // * * // * 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 * +// * the Free Software Foundation; either version 3 of the License, or * // * (at your option) any later version. * // * * // * This program is distributed in the hope that it will be useful, * @@ -14,9 +14,8 @@ // * 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., * -// * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * +// * along with this program; if not, see: * +// * . * // ***************************************************************************/ // This file is UTF-8 encoded @@ -24,5037 +23,5028 @@ // Conditional rules // ?2 Use long 'a' in 'bath' // ?3 General American -// ?4 Not General American +// ?!3 Not General American // ?5 split [3:] er [3:], ir [IR], ur [VR] // ?6 'one' = [wVn], 'of' = [Vv] // ?7 Scottish .group a - _) a (_ a2 - _) a (- 'eI - _) a (_D ,eI - _) a's (_ eIz - D_) a (_ eI - a a - _C) a (_ A: - _CC) a (_ A: - a (Be# eI - a (BeCo_ a - a (BerC a - a (BerA a - @) a (Bia 'eI - @) a (Biu 'eI - a (Bet a - a (Bing E - _C) a (By_ eI - _CC) a (By_ eI - a (Ca_ 'A: - a (Cable 'eI - a (Cably 'eI - a (Cability eI - a (Cible 'eI - n) a (Cal eI - _) a (ve a - _) any EnI2 - _) a (von eI - &) a (_ @ - &b) a (_ =@ - grandC) a (_ A: - aa A: - aar 'A@ - a (Bo_ 'A: - _C) a (ble eI - _CC) a (ble eI - CCC) a (ble eI - _en) a (bl 'eI - _dis) a (ble 'eI - _un) a (ble 'eI - r) a (ciA eI - _r) a (cis eI - ae i: - ae (val 'i: - aea i@ - @) aed (_$2 d - _) ae (on i: - _) aer (o e@ - ae (l eI - h) ae (m i: - h) aemorrh Em@r - aer e@ - _c) aer %e@ - r) aer 'A@ - _) aero e@roU - aero (plan e@r@ - aero (sol e@r@ - m) ae (st aI - ah (_ A: - ah (C A: - &) ah (_ @ - m) a (hog @ - m) a (jes a - m) a (jesti @ - m) a (jor_ eI - _) a (k@ a2 - @) a (ki_ 'a - n) aked eIkId - @) ak (ia ak - aku (_ 'A:ku: - ao eI0 - ao (_ =aU - m) ao aU - t) ao aU - aor eI'o@ - g) ao (l eI@ - m) ao (ri aU - _) a (qu %a - aqu (a akw - aqua (t @kwa - aque (o eIkwI - aqui akwI - squ) a (sh 0 - a (sion eI - er) a (sur eI - l) a (th aa - a (the_+ eI - p) a (tien eI - a (tion 'eI - @) a (tious 'eI - _r) a (tion a - irr) a (tio a - n) a (tional a - n) a (tur eI - n) a (tura a - sign) a (ture I - st) a (tus eI - _) aw (a+ a2w - _) aw (ok a2w - aw O: - aw (AB aw - awal O:l - awe (B O: - awe (_ O: - _) awe O: - _) aw (f O: - _) aw (k O: - @) awi (_ 'A:wI - a (way_ @ - _) a (wh@ a2 - _) a (x a - _) a (x+ a - C) a (x+ a - ay eI - _) ay aI - _) ayle eI@L - _) ayr e@ - g) a (zeC% @ - h) a (z eI - h) a (zar 'a - l) a (z eI - r) a (z eI - @) a (zi_ 'A: - br) a (zil a - bl) a (zon eI - r) a (zor eI - sw) a (B 0 - sw) a (m_ a - sw) a (nk a - sw) a (th eI - sw) a (z A: - w) a (Be# eI - w) a (b 0 - w) a (d 0 - ow) a (d @ - w) a (s 0 - w) a (tc 0 - w) a (ter O: - _) a (viat eI - w) ay eI - @k) aze (_ 'A:zI2 - a (zy eI - a (zide 'eI - a (zz_ 'a + _) a (_ a2 + _) a (- 'eI + _) a (-half a2 + _) a (_D ,eI + _) a's (_ eIz + D_) a (_ eI + a a + XC) a (_ A: + a (Be# eI + a (BeCo_ a + a (BerC a + a (BerA a + @) a (Bia 'eI + @) a (Biu 'eI + a (Bet a + a (Bing E + XC) a (By_ eI + a (Ca_ 'A: + a (Cable 'eI + a (Cably 'eI + a (Cability eI + a (Cible 'eI + n) a (Cal eI + _) a (ve a + _) any EnI2 + _) a (von eI + &) a (_ @ + &b) a (_ =@ + grandC) a (_ A: + aa A: + aa (a a: + aa) aa a: + aar 'A@ + a (Bo_ 'A: + XC) a (ble eI + CCC) a (ble eI + _en) a (bl 'eI + _dis) a (ble 'eI + _un) a (ble 'eI + r) a (ciA eI + _r) a (cis eI + ae i: + ae (val 'i: + aea i@ + @) aed (_$2 d + _) ae (on i: + _) aer (o e@ + ae (l eI + h) ae (m i: + h) aemorrh Em@r + aer e@ + _c) aer %e@ + r) aer 'A@ + _) aero e@roU + aero (plan e@r@ + aero (sol e@r@ + m) ae (st aI + ah (_ A: + ah (C A: + &) ah (_ @ + m) a (hog @ + m) a (jes a + m) a (jesti @ + m) a (jor_ eI + _) a (k@ a2 + @) a (ki_ 'a + n) aked eIkId + @) ak (ia ak + aku (_ 'A:ku: + ao eI0 + ao (_ =aU + m) ao aU + t) ao aU + aor eI'o@ + g) ao (l eI@ + m) ao (ri aU + _) a (qu %a + aqu (a akw + aqua (t @kwa + aque (o eIkwI + aqui akwI + squ) a (sh 0 + a (sion eI + er) a (sur eI + l) a (th aa + a (the_+ eI + p) a (tien eI + a (tion 'eI + @) a (tious 'eI + _r) a (tion a + irr) a (tio a + n) a (tional a + n) a (tur eI + n) a (tura a + sign) a (ture I + st) a (tus eI + _) aw (a+ a2w + _) aw (ok a2w + aw O: + aw (AB aw + awal O:l + awe (B O: + awe (_ O: + _) awe O: + _) aw (f O: + _) aw (k O: + @) awi (_ 'A:wI + a (way_ @ + _) a (wh@ a2 + _) a (x a + _) a (x+ a + C) a (x+ a + ay eI + _) ay aI + _) ayle eI@L + _) ayr e@ + g) a (zeC% @ + h) a (z eI + h) a (zar 'a + l) a (z eI + r) a (z eI + @) a (zi_ 'A: + br) a (zil a + bl) a (zon eI + r) a (zor eI + sw) a (B 0 + sw) a (m_ a + sw) a (nk a + sw) a (th eI + sw) a (z A: + w) a (Be# eI + w) a (b 0 + w) a (d 0 + ow) a (d @ + w) a (s 0 + w) a (tc 0 + w) a (ter O: + _) a (viat eI + w) ay eI + @k) aze (_ 'A:zI2 + a (zy eI + a (zide 'eI + a (zz_ 'a .group ab - _) ab (@ a2b - ab (acA ab - @) abad (_ =a2bad - ab (att ab - _) abb ab - _) abbo ab@ - _) abb (rev a2b - _) ab (d ab - _) ab (duc a2b - - _) abel eIb@L - _) ab (er@ ,ab - C) aber (@ ab@ - _) aber (r a2bE - _) ab (i ab - _) ab (ide a2b - st) ab (il eIb - C) ab (ilit+ @b - ab (ject ab - ab (lativ ab - able eIb@L - abling 'eIblIN - ably eIblI2 - ab (neg ab - ab (olit ,ab - _) ab (ori ,ab - l) ab (our eIb - _) above (@P5 a2b,Vv - _) ab (ram eIb - _) ab (ra ab - _) ab (rad a2b - ab (ras a2b - ab (rog ab - ab (ruc ab - ab (sce ab - ab (sei ab - absen (t ,abs@n - ab (solu ab - ab (sti ab - ab (ular 'ab - b) ab (y eIb - b) ab (yl ab - &) able (_$4iev @b@L // suffix - &c) able (_ @b@L - @ct) able (_ =@b@L - &) ability ($7iev @b'IlItI2 // suffix - &) abilities ($9iev @b'IlItIz // suffix - &) ably (_$4iefv @blI2 - &c) ably (_$4fv @blI2 + _) ab (@ a2b + ab (acA ab + @) abad (_ =a2bad + ab (att ab + _) abb ab + _) abbo ab@ + _) abb (rev a2b + _) ab (d ab + _) ab (duc a2b + + _) abel eIb@L + _) ab (er@ ,ab + C) aber (@ ab@ + _) aber (r a2bE + _) ab (i ab + _) ab (ide a2b + st) ab (il eIb + C) ab (ilit+ @b + ab (ject ab + ab (lativ ab + able eIb@L + abling 'eIblIN + ably eIblI2 + ab (neg ab + ab (olit ,ab + _) ab (ori ,ab + l) ab (our eIb + _) above (@P5 a2b,Vv + _) ab (ram eIb + _) ab (ra ab + _) ab (rad a2b + ab (ras a2b + ab (rog ab + ab (ruc ab + ab (sce ab + ab (sei ab + absen (t ,abs@n + ab (solu ab + ab (sti ab + ab (ular 'ab + b) ab (y eIb + b) ab (yl ab + &) able (_$4iev @b@L // suffix + &c) able (_ @b@L + @ct) able (_ =@b@L + &) ability ($7iev @b'IlItI2 // suffix + &) abilities ($9iev @b'IlItIz // suffix + &) ably (_$4iefv @blI2 + &c) ably (_$4fv @blI2 .group ac - _) ac (@ a2k - _) acc (@ a2k - _) acc (e a2ks - _) acqu a2kw - aca (dem ak@ - aca (demy a2ka - v) ac (a eIk - ac (a_ 'ak - ac (cent ak - ac (centu %ak - ac (cid ak - acc (ol ak - accou (t a2ku: - accu (ra akjU - accus (A a2kju:z - ace (_ eIs - _) ac (e a2s - acean (_ 'eIS@n - pl) ac (at a2k - pl) ac (eb @s - _pl) ac (ent @s - ac (erb as - _) ac (erbi a2s - _) ace (t asI - _) ace (ti a2si: - _) ache (+ eIk - d) ache (_ eIk - h) ache (_ eIk - r) ache (_ eIk - rt) ache (_ eIk - d) aches (_ eIks - h) aches (_ eIks - r) aches (_ eIks - rt) aches (_ eIks - tr) ach (e @k - _) ach a2tS - achia 'eIS@ - f) ac (ilit @s - _m) ace (d asI - m) achi (n @Si: - m) achina (t aSI2neI - ach (rom ak - ac (id_ as - _) ac (i a2s - acious 'eIS@s - _) ack (_ ak - _) ac (o ak - ac (on ak - ac (orn eIk - acme akmI2 - acne aknI2 - acou (st a2ku: - ac (quie ,a - _) acre eIk@ - ac (rid ak - ac (ro ak - m) acro (@ akr@ - _) ac (t ak - ac (tory 'ak - actu (A aktSu: - ac (ture 'ak - ac (um ak - ac (up ak - ac (ular 'ak - urf) ac (e_ Is - @n) ac (e_ Is - sol) ac (e_ Is - al) ac (e_ Is - im) ac (e_ Is - rr) ac (e_ Is - _b) ac (o eIk - y) ach (t 0 - &) ac (y_ @s + _) ac (@ a2k + _) acc (@ a2k + _) acc (e a2ks + _) acqu a2kw + aca (dem ak@ + aca (demy a2ka + v) ac (a eIk + ac (a_ 'ak + ac (cent ak + ac (centu %ak + ac (cid ak + acc (ol ak + accou (t a2ku: + accu (ra akjU + accus (A a2kju:z + ace (_ eIs + _) ac (e a2s + acean (_ 'eIS@n + pl) ac (at a2k + pl) ac (eb @s + _pl) ac (ent @s + ac (erb as + _) ac (erbi a2s + _) ace (t asI + _) ace (ti a2si: + _) ache (+ eIk + d) ache (_ eIk + h) ache (_ eIk + r) ache (_ eIk + rt) ache (_ eIk + d) aches (_ eIks + h) aches (_ eIks + r) aches (_ eIks + rt) aches (_ eIks + tr) ach (e @k + _) ach a2tS + achia 'eIS@ + f) ac (ilit @s + _m) ace (d asI + m) achi (n @Si: + m) achina (t aSI2neI + ach (rom ak + ac (id_ as + _) ac (i a2s + acious 'eIS@s + _) ack (_ ak + _) ac (o ak + ac (on ak + ac (orn eIk + acme akmI2 + acne aknI2 + acou (st a2ku: + ac (quie ,a + _) acre eIk@ + ac (rid ak + ac (ro ak + m) acro (@ akr@ + _) ac (t ak + ac (tory 'ak + actu (A aktSu: + ac (ture 'ak + ac (um ak + ac (up ak + ac (ular 'ak + urf) ac (e_ Is + @n) ac (e_ Is + sol) ac (e_ Is + al) ac (e_ Is + im) ac (e_ Is + rr) ac (e_ Is + _b) ac (o eIk + y) ach (t 0 + &) ac (y_ @s .group ad - _) ad (@ a2d - _) add (@ a2d - _) adj a2dZ - cr) ad eId - ad (ag ad - ad (am ad - add (er ad - adequa adIkw@ - add (itiv ad - _) add (l ad - ad (en ad - l) ad (en eId - c) ad (enc eId - ad (eq ad - _) ad (i ad - gl) ad (i ad - adjec adZEk - ad (le eId - ad (junct_ ad - ad (jutan a - ad (man_ ad - ad (min_ ad - ad (mira ad - ado (les ad@ - ad (ol ad - ad (on ad - _) ad (ri@ ad - ad (ula ad - ad (ult_ ad - _) ad (um ad - ad (vent ad - ad (ventu a2d - ad (ver ad - adver (s adv'3: - ad (versa a2d - ad (vert_ ad - ad (vert a2d - ad (vo ad - hex) ad (e ad - torn) ad eId - _r) ad (A eId - b) ad (os_ eId - ad (iA eId - s) ad (is eId - _tr) ad (it a2d - qu) ad 0d - l) ad (y eId - mal) ad (y @d - r) ad (ic ad + _) ad (@ a2d + _) add (@ a2d + _) adj a2dZ + cr) ad eId + ad (ag ad + ad (am ad + add (er ad + adequa adIkw@ + add (itiv ad + _) add (l ad + ad (en ad + l) ad (en eId + c) ad (enc eId + ad (eq ad + _) ad (i ad + gl) ad (i ad + adjec adZEk + ad (le eId + ad (junct_ ad + ad (jutan a + ad (man_ ad + ad (min_ ad + ad (mira ad + ado (les ad@ + ad (ol ad + ad (on ad + _) ad (ri@ ad + ad (ula ad + ad (ult_ ad + _) ad (um ad + ad (vent ad + ad (ventu a2d + ad (ver ad + adver (s adv'3: + ad (versa a2d + ad (vert_ ad + ad (vert a2d + ad (vo ad + hex) ad (e ad + torn) ad eId + _r) ad (A eId + b) ad (os_ eId + ad (iA eId + s) ad (is eId + _tr) ad (it a2d + qu) ad 0d + l) ad (y eId + mal) ad (y @d + r) ad (ic ad .group af - _) af (@ a2f - _) aff (@ a2f - af (ea a2f - st) aff aaf - aff (ab af - aff (er af - _) affia a2faI@ - aff (lu af - w) aff 0f - _) af (g af - afore a2fo@ - af (ri af - afro afroU - af (t+ aaf - @) af (ter 'aaf + _) af (@ a2f + _) aff (@ a2f + af (ea a2f + st) aff aaf + aff (ab af + aff (er af + _) affia a2faI@ + aff (lu af + w) aff 0f + _) af (g af + afore a2fo@ + af (ri af + afro afroU + af (t+ aaf + @) af (ter 'aaf .group ag - _) ag (e eIdZ - _) agg (@ a2g - _) agg (rav ag - _) agg (reg ag - @) age (_ IdZ - @) ager (_ IdZ3 - c) age (_ eIdZ - _) age (i eIdZ - _) age (l eIdZ - _) ag (is eIdZ - &h) agen (_ A:g@n - ag (end a2dZ - agg (res a2g - agg (riev a2g - _) ag (o_ a2g - ag (ree a2g - _) ag (ron a2g - ag (o_ eIg - fl) age (_ A:Z - teen) ag (e eIdZ - _tr) ag adZ - bc) age eIdZ - dc) age eIdZ - ng) ag (e_ 'eIdZ - Cp) age (_ eIdZ - pp) age (_ IdZ - _ant) ag 'ag - enr) ag (e_ 'eIdZ - outr) ag (e_ eIdZ - der) ag (e_ eIdZ - st) ag (e eIdZ - mont) ag (e_ A:Z - @) age (ment IdZ - g) age (ment 'eIdZ - m) ag (enta @dZ - agh (_ A: - agio (_ 'A:dZIoU - _) ag (l@ a2g - &) ag (on_ @g - dr) agon ag@n - w) agon ag@n - agon (al 'ag@n - fl) ag (ran eIg - fr) ag (r eIg - v) ag (ra eIg - ague eIg - ag (a_ 'A:g - agi (_ 'A:gI - @) agua (_ 'agju:@ + _) ag (e eIdZ + _) agg (@ a2g + _) agg (rav ag + _) agg (reg ag + @) age (_ IdZ + @) ager (_ IdZ3 + c) age (_ eIdZ + _) age (i eIdZ + _) age (l eIdZ + _) ag (is eIdZ + &h) agen (_ A:g@n + ag (end a2dZ + agg (res a2g + agg (riev a2g + _) ag (o_ a2g + ag (ree a2g + _) ag (ron a2g + ag (o_ eIg + fl) age (_ A:Z + teen) ag (e eIdZ + _tr) ag adZ + bc) age eIdZ + dc) age eIdZ + ng) ag (e_ 'eIdZ + Cp) age (_ eIdZ + pp) age (_ IdZ + _ant) ag 'ag + enr) ag (e_ 'eIdZ + outr) ag (e_ eIdZ + der) ag (e_ eIdZ + st) ag (e eIdZ + mont) ag (e_ A:Z + @) age (ment IdZ + g) age (ment 'eIdZ + m) ag (enta @dZ + agh (_ A: + agio (_ 'A:dZIoU + _) ag (l@ a2g + &) ag (on_ @g + dr) agon ag@n + w) agon ag@n + agon (al 'ag@n + fl) ag (ran eIg + fr) ag (r eIg + v) ag (ra eIg + ague eIg + ag (a_ 'A:g + agi (_ 'A:gI + @) agua (_ 'agju:@ .group ai - _) ai eI - _) air e@ - ai eI - ai (_ aI - aic (_ 'eIIk - aic (al 'eIIk - ai (i aI - @) ai (Ca_ 'eI - aig (n 'eI - curt) ai (l 'eI - ent) ai (l 'eI - air e@ - aire (_ e@ - s) ai (d E - n) ai (v aI'i: - pt) ai I - apl) ai I - ount) ai I - berl) ai I - barg) ai I - cert) ai @ - curt) ai @ - brit) ai @ - vill) ai @ - ft) ai @ - d) ain (_ 'eIn - d) ained (_ 'eInd - aire 'e@ - aise (_ 'eIz + _) ai eI + _) air e@ + ai eI + ai (_ aI + aic (_ 'eIIk + aic (al 'eIIk + ai (i aI + @) ai (Ca_ 'eI + aig (n 'eI + curt) ai (l 'eI + ent) ai (l 'eI + air e@ + aire (_ e@ + s) ai (d E + n) ai (v aI'i: + pt) ai I + apl) ai I + ount) ai I + berl) ai I + barg) ai I + cert) ai @ + curt) ai @ + brit) ai @ + vill) ai @ + ft) ai @ + d) ain (_ 'eIn + d) ained (_ 'eInd + aire 'e@ + aise (_ 'eIz .group al - _) al (@ a2l - _) alaba al@b'a - @) aland (_ =@la2nd - _) al (ast al - m) alay @l'eI - _) al (b al - _) alber (tA alb'3: - _) al (c al - alco (h alk@ - _) al (d O:l - alde (hy 'aldI - ale (_ eIl - ale (h eIl - k) alei (d @laI - aleph alEf - _) al (ex al - _) alexan alIgz'aan - _) alfa alf@ - _) al (g al - &) al (iBe @l - &) al (iBati @l - al (ia eIl - ret) al (ia al - v) al (ia al - al (ien eIl - _) al (i al - _) al (ig a2l - _) ali (Be a2laI - &) ali (sC_ @lI - &) al (isCic @l - _) al (k al - _) all (@ a2l - _) all (C@P3 O:l - _) all (a al - _) all (eg al - alle (ge a2lE - all (egr a2l - all (el al - all (er al - alley alI2 - _) all (i al - _) all (ian a2l - _) all (iter a2l - _) all (o al - _) allo (ca al@ - _) all (ot a2l - all (otr al - _) all (ow a2l - _) ally alaI - _) al (m 0l - al (mig %0l - _) al (ms A: - &) alo (_ @loU - _) al (p al - alpha alf@ - alp (ho alp - _) al (r %O:l - also 0lsoU - _) al (t O:l - &) al (ty_ @L - _) alti altI - al (ternato Ol - al (to al - al (um_ al - st) al (w O:l - _) alw Olw - _) al (v al - _) al (y al - alz alt|s - &) al (_ @L - &) ally (_$2 lI2 - @@ic) ally (_$4 lI2 - inst) al (_ O:l - &) al (d @L - b) al (d O:l - b) al (k O:l - f) al (k 0l - b) all (_ O:l - &b) all (er_ O:l - _c) al (e al - _sc) al (A eIl - c) al (f A: -?3 c) al (f a - h) al (f A: -?3 h) al (f a - s) al (f 0l - @) algia (_ 'aldZ@ - g) al (i_ 'A:l - al (ity 'al - s) al (iva @l - p) al (et al - qu) al (@ 0l - b) al (m A: - c) al (m A: - p) al (m A: - ps) al (m A: - qu) al (m A: - equ) al @l - equ) al (it 0l - ch) al (k O: - t) al (k O: - w) al (C 0l - w) al (k O: - all (_ O:l - aller (_ O:l3 - allers (_ O:l3z - c) all (in O:l - f) all O:l - f) all (a al - f) all (ib al - _C) all (ow al - h) all (w O:l - sm) all O:l - st) all O:l - t) all O:l - t) all (A al - t) all (y al - t) all (e O:l - thr) all O:l - Av) al (en @l - w) all (A 0l - w) alle O:l - w) all (et 0l - w) all O:l - w) all (a 0l - al (tAr 0l - _h) al (o eIl - al (ong a2l - &) alry (_ @LrI2 - _) al (s al - f) al (s 0l - _C) al (tA 0l - al (t_ 0l - _h) al (t 0l - s) al (t 0l - s) al (ut @l - s) al (uta al - h) al (v A: -?3 h) al (v a - m) al (no %al + _) al (@ a2l + _) alaba al@b'a + @) aland (_ =@la2nd + _) al (ast al + m) alay @l'eI + _) al (b al + _) alber (tA alb'3: + _) al (c al + alco (h alk@ + _) al (d O:l + alde (hy 'aldI + ale (_ eIl + ale (h eIl + k) alei (d @laI + aleph alEf + _) al (ex al + _) alexan alIgz'aan + _) alfa alf@ + _) al (g al + &) al (iBe @l + &) al (iBati @l + al (ia eIl + ret) al (ia al + v) al (ia al + al (ien eIl + _) al (i al + _) al (ig a2l + _) ali (Be a2laI + &) ali (sC_ @lI + &) al (isCic @l + _) al (k al + _) all (@ a2l + _) all (C@P3 O:l + _) all (a al + _) all (eg al + alle (ge a2lE + all (egr a2l + all (el al + all (er al + alley alI2 + _) all (i al + _) all (ian a2l + _) all (iter a2l + _) all (o al + _) allo (ca al@ + _) all (ot a2l + all (otr al + _) all (ow a2l + _) ally alaI + _) al (m 0l + al (mig %0l + _) al (ms A: + &) alo (_ @loU + _) al (p al + alpha alf@ + alp (ho alp + _) al (r %O:l + also 0lsoU + _) al (t O:l + &) al (ty_ @L + _) alti altI + al (ternato Ol + al (to al + al (um_ al + st) al (w O:l + _) alw Olw + _) al (v al + _) al (y al + alz alt|s + &) al (_ @L + &) ally (_$2 lI2 + @@ic) ally (_$4 lI2 + inst) al (_ O:l + &) al (d @L + b) al (d O:l + b) al (k O:l + f) al (k 0l + b) all (_ O:l + &b) all (er_ O:l + _c) al (e al + _sc) al (A eIl + c) al (f A: +?3 c) al (f a + h) al (f A: +?3 h) al (f a + s) al (f 0l + @) algia (_ 'aldZ@ + g) al (i_ 'A:l + al (ity 'al + s) al (iva @l + p) al (et al + qu) al (@ 0l + b) al (m A: + c) al (m A: + p) al (m A: + ps) al (m A: + qu) al (m A: + equ) al @l + equ) al (it 0l + ch) al (k O: + t) al (k O: + w) al (C 0l + w) al (k O: + all (_ O:l + aller (_ O:l3 + allers (_ O:l3z + c) all (in O:l + f) all O:l + f) all (a al + f) all (ib al + _C) all (ow al + h) all (C O:l + sm) all O:l + st) all O:l + t) all O:l + t) all (A al + t) all (y al + t) all (e O:l + thr) all O:l + Av) al (en @l + w) all (A 0l + w) alle O:l + w) all (et 0l + w) all O:l + w) all (a 0l + al (tAr 0l + _h) al (o eIl + al (ong a2l + &) alry (_ @LrI2 + _) al (s al + f) al (s 0l + _C) al (tA 0l + al (t_ 0l + _h) al (t 0l + s) al (t 0l + s) al (ut @l + s) al (uta al + h) al (v A: +?3 h) al (v a + m) al (no %al .group am - _) am (_ %am - D_) am (_ ,eI'Em - D__) am (_ ,eI'Em - C) am (d aam - C) am (pl aam - l) am (pl am - &) am (o_ @m - &d) am (_ @m - @erd) am (_ am - &h) am (_ @m - &s) am (_ @m - @r) am (a 'A:m - _) am (al a2m - amateur am@t3 - amaz a2meIz - amaz (o am@z - ambi (d ambI - ch) am (b eIm - As) ame (_ 'A:mE - &) am (ent @m - amer (ic @mEr - c) am (el am - am (i_ 'A:m - ami (g a2mi: - _d) am (i eIm - und) am (en @m - _) am (en a2m - ame (nab a2mi: - l) ame (nt %amE - amm (end a2m - amoeb a2mi:b - f) am (ous eIm - &) am (ent @m - &) ame (nta @m'E - _) ame (nt a2mE - amphib amf'Ib - ampton 'ampt@n - _) am (id a2m - &) amine (_ =a2mi:n - _) am (ino a2m - _) am (iss a2m - am (use a2m + _) am (_ %am + D_) am (_ ,eI'Em + D__) am (_ ,eI'Em + C) am (d aam + C) am (pl aam + l) am (pl am + &) am (o_ @m + &d) am (_ @m + @erd) am (_ am + &h) am (_ @m + &s) am (_ @m + @r) am (a 'A:m + _) am (al a2m + amateur am@t3 + amaz a2meIz + amaz (o am@z + ambi (d ambI + ch) am (b eIm + As) ame (_ 'A:mE + &) am (ent @m + amer (ic @mEr + c) am (el am + am (i_ 'A:m + ami (g a2mi: + _d) am (i eIm + und) am (en @m + _) am (en a2m + ame (nab a2mi: + l) ame (nt %amE + amm (end a2m + amoeb a2mi:b + f) am (ous eIm + &) am (ent @m + &) ame (nta @m'E + _) ame (nt a2mE + amphib amf'Ib + ampton 'ampt@n + _) am (id a2m + &) amine (_ =a2mi:n + _) am (ino a2m + _) am (iss a2m + am (use a2m .group an - @) ana (_ 'A:n@ -?2 C) an (c aan - c) an (c an - f) an (c an - n) an (c an - p) an (c an -?2 @m) an (d aan -?2 sl) an (d aan -?2 C) an (t aan - an (ath a2n - ann (eal a2n - ann (ih a2n - ann (oun a2n - ann (oy a2n - ann (ui a2n - ann (ul a2n - ann (un a2n - an (alog a2n - _) an (em a2n - _) ane (mi a2ni: - _) anna an@ - _) an (oi a2n - _) an (om a2n - anomal a2n0m@L - &) an (_ @n - @u) an (_$1 n - @i) an (_$1 n - Cc) an (_ an - l) an (_ an - ll) an (_ @n - &m) an (_ @n - p) an (_ an - r) an (_ an - @@r) an (_ @n - st) an (_ an - m) an (_ an - hum) an (_ @n - &) an (t_ @n - pl) an (t_ an - &) an (ce_ @n - fin) an (c 'an -?2 h) an (ce_ aan -?2 z) an (ce_ aan - &) an (cy @n - adv) an (c an - _) an (cie eIn - &l) an (d @n - usb) an (d @n - @) an (Ca_ 'an - ando (_ 'andoU - @) andu (_ ,and'u: - anean (_ 'eIni@n - @) aneous 'eIni@s - p) an (el an - &) an (ese @n - an (gul 'an - &) ani (_ 'A:nI2 - an (ia 'eIn - z) ania a2n'i@ - _l) an (ia an - sp) an (ia an - m) anipu @nIpjU - w) an (t_ 0n - &) an (y_ @n - &) an (ies_ @n - ang (el_ eIndZ - ang (el andZ - ch) ang (e eIndZ - ch) anging eIndZIN - d) ang (er eIndZ - r) ang (e eIndZ - r) anging eIndZIN - r) anged ($1 d - perm) an @n - ang (er aNg - m) anoeu (v @nu: - _qu) an 0n - _w) an 0n - _tr) an (s %an - tr) ansfer %ansf3: - tr) an (si an - tr) ansis anz'Is - tr) an (som an - ante (lo antI2 - ante (nn ant'E - _) anti (@P4 ,antI2 // prefix - ant (iq ant - anti (ci ant'I - anti (bo antI2 - an (za 'an + @) ana (_ 'A:n@ +?2 C) an (c aan + c) an (c an + f) an (c an + n) an (c an + p) an (c an +?2 @m) an (d aan +?2 sl) an (d aan +?2 C) an (t aan + an (ath a2n + ann (eal a2n + ann (ih a2n + ann (oun a2n + ann (oy a2n + ann (ui a2n + ann (ul a2n + ann (un a2n + an (alog a2n + _) an (em a2n + _) ane (mi a2ni: + _) anna an@ + _) an (oi a2n + _) an (om a2n + anomal a2n0m@L + &) an (_ @n + @u) an (_$1 n + @i) an (_$1 n + Cc) an (_ an + l) an (_ an + ll) an (_ @n + &m) an (_ @n + p) an (_ an + r) an (_ an + @@r) an (_ @n + st) an (_ an + m) an (_ an + hum) an (_ @n + &) an (t_ @n + pl) an (t_ an + &) an (ce_ @n + fin) an (c 'an +?2 h) an (ce_ aan +?2 z) an (ce_ aan + &) an (cy @n + adv) an (c an + _) an (cie eIn + &l) an (d @n + usb) an (d @n + @) an (Ca_ 'an + ando (_ 'andoU + @) andu (_ ,and'u: + anean (_ 'eIni@n + @) aneous 'eIni@s + p) an (el an + &) an (ese @n + an (gul 'an + &) ani (_ 'A:nI2 + an (ia 'eIn + z) ania a2n'i@ + _l) an (ia an + sp) an (ia an + m) anipu @nIpjU + w) an (t_ 0n + &) an (y_ @n + &) an (ies_ @n + ang (el_ eIndZ + ang (el andZ + ch) ang (e eIndZ + ch) anging eIndZIN + d) ang (er eIndZ + r) ang (e eIndZ + r) anging eIndZIN + r) anged ($1 d + perm) an @n + ang (er aNg + m) anoeu (v @nu: + _qu) an 0n + _w) an 0n + _tr) an (s %an + tr) ansfer %ansf3: + tr) an (si an + tr) ansis anz'Is + tr) an (som an + ante (lo antI2 + ante (nn ant'E + _) anti (@P4 ,antI2 // prefix + ant (iq ant + anti (ci ant'I + anti (bo antI2 + an (za 'an .group ap - _) ap (@ a2p - _) aph (@ a2f - ap (ath ap - _) ap (e eIp - aper (ie a2pi@ - _) aperi (t a2pEr@ - _) aper (t ap@ - _) aph (id eIf - _) aph (o af - &gr) aph (er =@f - aphro afr@ - &gr) aph (y =@f - ap (ia eIp - ap (ic ap - ap (is eIp - _p) ap (is eIp - ap (og ap - ap (oli ap - _) app (@ a2p - app (ara ap - app (eti ap - app (le ap - app (lic ap - app (licab a2p - appre (h ,aprI - apres apreI - _) apprec (i a2pri:S - _) ap (ri eIp - ap (ro eIp - _) ap (s ap - _) ap (t ap - c) ap (ac @p - tr) ape (z @pi: - tr) ape (zo apI - app (ear a2p - ap (el_ ap - p) ap (er eIp - m) ap (le eIp - st) ap (le eIp - c) ap (on eIp - _v) ap (o eIp + _) ap (@ a2p + _) aph (@ a2f + ap (ath ap + _) ap (e eIp + aper (ie a2pi@ + _) aperi (t a2pEr@ + _) aper (t ap@ + _) aph (id eIf + _) aph (o af + &gr) aph (er =@f + aphro afr@ + &gr) aph (y =@f + ap (ia eIp + ap (ic ap + ap (is eIp + _p) ap (is eIp + ap (og ap + ap (oli ap + _) app (@ a2p + app (ara ap + app (eti ap + app (le ap + app (lic ap + app (licab a2p + appre (h ,aprI + apres apreI + _) apprec (i a2pri:S + _) ap (ri eIp + ap (ro eIp + _) ap (s ap + _) ap (t ap + c) ap (ac @p + tr) ape (z @pi: + tr) ape (zo apI + app (ear a2p + ap (el_ ap + p) ap (er eIp + m) ap (le eIp + st) ap (le eIp + c) ap (on eIp + _v) ap (o eIp .group ar - ar A@ - ar (A A:r - ar (_ A@ - ar (o ar - _) ar (A ar - _) ar (os a2r - _) ar (ou a2r - ar (a ar - ar (a_ 'A:r - ar (r a - arr (_ A@ - _) arr (@ a2r - _) arr (ant ar - _) arr (o ar - ar (i_ 'A:r - @) ar (io_ 'A:r - c) ar (i ar - ar (ious e@ - cl) ar (i ar - aring e@r-I2N - g) aring @r-I2N - &d) ar (_ 3 - &g) ar (_ 3 - &l) ar (_ 3 - &m) ar (_ 3 - _p) ara ar@ - qu) ar (a 0r - _p) ara (de @reI - &t) ar (_ 3 - st) ar (_ A@ - guit) ar (_ A@ - _t) ar (_ A@ - &) ar (dis 3 - &) ar (diz 3 - &d) ar (d_ 3 - gg) ar (d_ 3 - &h) ar (d_ 3 - &k) ar (d_ 3 - &st) ar (d_ 3 - &w) ar (d_ 3 - aw) ar (d O@ - eot) ar (d_ A@ - &z) ar (d_ 3 - h) ar (ass @r - &m) aran @ran - sep) ar (at @r - w) ar (e e@ - k) ar (y ar - c) arbo (h ,A@boU - _) arch (@P4 ,A@tS // prefix - _) archai A@k'eII - _) arche (o A@kI - _) arch (er A@tS - _) archi (CA A@kI - -) archiv (+ A@kaIv - @) arch (y A@k - @) arch (i A@k - an) arch 3k - mon) arch 3k - &) ar (dy_ 3 - h) ar (dy_ A@ - are e@ - area e@ri@ - ar (en ar - p) are (nth @rE - c) ar (eer ar - c) are (C@ e@ - p) are (nt e@r@ - pp) ar (enC ar - sp) ar (enC ar - ar' (nt A@ - are (t ar@ - ar (iaC_ 'e@ - ar (ia_ 'e@ - arily (_ 'Er@lI2 - ch) ar (it ar - m) ar (i @r - m) ar (ig ar - m) ar (inaC ar - m) ar (iner ar - m) ar (io ar - htm) ar e@ - &) arise (_ @raIz - log) ar (i @r - m) ar (it ar - p) ar (i ar - p) ar (in e@ - &) ar (in_ @r - v) ar (iA e@r - @) ar (ity ar - ar (ium 'e@r - arom (at a2roUm - arre (_ A@ - arred (_ A@d - arring (_ A@I2N - qu) ar (r 0 - p) ar (ticu 3 - qu) ar (t O@ - ar (til %A@ - ary (_ @rI2 - _C) ary e@rI2 - _CC) ary e@rI2 - w) ar O@ - wh) ar O@ - w) ar (r 0 - w) ar (i e@ - w) ar (y e@ - w) ar (r 0 - w) ar (d 3 - w) arw (i 0r - rew) ar (d O@ - tow) ar (d o@ - _w) ar (d O@ - sw) ar (d O@ - chw) ar (d O@ + ar A@ + ar (A A:r + ar (_ A@ + ar (o ar + _) ar (A ar + _) ar (os a2r + _) ar (ou a2r + ar (a ar + ar (a_ 'A:r + ar (r a + arr (_ A@ + _) arr (@ a2r + _) arr (ant ar + _) arr (o ar + ar (i_ 'A:r + @) ar (io_ 'A:r + c) ar (i ar + ar (ious e@ + cl) ar (i ar + aring e@r-I2N + g) aring @r-I2N + &d) ar (_ 3 + &g) ar (_ 3 + &l) ar (_ 3 + &m) ar (_ 3 + _p) ara ar@ + qu) ar (a 0r + _p) ara (de @reI + &t) ar (_ 3 + st) ar (_ A@ + guit) ar (_ A@ + _t) ar (_ A@ + &) ar (dis 3 + &) ar (diz 3 + &d) ar (d_ 3 + gg) ar (d_ 3 + &h) ar (d_ 3 + &k) ar (d_ 3 + &st) ar (d_ 3 + &w) ar (d_ 3 + aw) ar (d O@ + eot) ar (d_ A@ + &z) ar (d_ 3 + h) ar (ass @r + &m) aran @ran + sep) ar (at @r + w) ar (e e@ + k) ar (y ar + c) arbo (h ,A@boU + _) arch (@P4 ,A@tS // prefix + _) archai A@k'eII + _) arche (o A@kI + _) arch (er A@tS + _) archi (CA A@kI + -) archiv (+ A@kaIv + @) arch (y A@k + @) arch (i A@k + an) arch 3k + mon) arch 3k + &) ar (dy_ 3 + h) ar (dy_ A@ + are e@ + area e@ri@ + ar (en ar + p) are (nth @rE + c) ar (eer ar + c) are (C@ e@ + p) are (nt e@r@ + pp) ar (enC ar + sp) ar (enC ar + ar' (nt A@ + are (t ar@ + ar (iaC_ 'e@ + ar (ia_ 'e@ + arily (_ 'Er@lI2 + ch) ar (it ar + m) ar (i @r + m) ar (ig ar + m) ar (inaC ar + m) ar (iner ar + m) ar (io ar + htm) ar e@ + &) arise (_ @raIz + log) ar (i @r + m) ar (it ar + p) ar (i ar + p) ar (in e@ + &) ar (in_ @r + v) ar (iA e@r + @) ar (ity ar + ar (ium 'e@r + arom (at a2roUm + arre (_ A@ + arred (_ A@d + arring (_ A@I2N + qu) ar (r 0 + p) ar (ticu 3 + qu) ar (t O@ + ar (til %A@ + ary (_ @rI2 + XC) ary e@rI2 + w) ar O@ + wh) ar O@ + w) ar (r 0 + w) ar (i e@ + w) ar (y e@ + w) ar (r 0 + w) ar (d 3 + w) arw (i 0r + rew) ar (d O@ + tow) ar (d o@ + _w) ar (d O@ + sw) ar (d O@ + chw) ar (d O@ .group as - _) as (@ a2s - _) ass (@ a2s - c) ass (_ @s - tl) ass (_ @s - omp) ass (_ @s - sp) ass (_ @s - rr) ass @s - &v) ass (_ @s - ascii askI - f) asc (ia eIS - f) asci (s aSI - _) as (e as - as (exu %eIs - _) ash aS - _) ash (a a2S - _) ash (o a2S - _) asia eIS@ - as (k aas - _) as (o eIs - C) as (p aas - w) as (p 0s - C) as (pe aas - _) as (per a2s - _) as (pe as - as (pha as - as (pi as - _) as (pire a2s - Cl) ass aas - Cr) ass aas - p) ass aas - _) p) ass (o as - p) assion aS@n - cl) ass (iC as - ass (ag as - &v) ass (_ @s - ass (et as - ass (on as - ass (u @S - ass (ump a2s - assur @SjU@ - C) as (t aas - as (ter aas - as (tern a2s - as (thm as - as (tral as - as (tro aas - as (trolog a2s - as (trono a2s - ass (ym as - purch) as (e Is - ph) ase (_ eIz - r) ase (_ eIz - asey (_ @sI2 - b) as (i eIs - b) as (il az - as (sist a2 - j) as (on eIs - m) as (on eIs - m) as (oni as - h) as (te eIs - p) as (te_ eIs - t) as (t eIs - nt) as (t as - cat) as (t as - as (ive 'eIs - as (ymp as - &) asy (_ @sI2 - w) ast (e eIst + _) as (@ a2s + _) ass (@ a2s + c) ass (_ @s + tl) ass (_ @s + omp) ass (_ @s + sp) ass (_ @s + rr) ass @s + &v) ass (_ @s + ascii askI + f) asc (ia eIS + f) asci (s aSI + _) as (e as + as (exu %eIs + _) ash aS + _) ash (a a2S + _) ash (o a2S + _) asia eIS@ + as (k aas + _) as (o eIs + C) as (p aas + w) as (p 0s + C) as (pe aas + _) as (per a2s + _) as (pe as + as (pha as + as (pi as + _) as (pire a2s + Cl) ass aas + Cr) ass aas + p) ass aas + _) p) ass (o as + p) assion aS@n + cl) ass (iC as + ass (ag as + &v) ass (_ @s + ass (et as + ass (on as + ass (u @S + ass (ump a2s + assur @SjU@ + C) as (t aas + as (ter aas + as (tern a2s + as (thm as + as (tral as + as (tro aas + as (trolog a2s + as (trono a2s + ass (ym as + purch) as (e Is + ph) ase (_ eIz + r) ase (_ eIz + &) asey (_ @sI2 + b) as (i eIs + b) as (il az + as (sist a2 + j) as (on eIs + m) as (on eIs + m) as (oni as + h) as (te eIs + p) as (te_ eIs + t) as (t eIs + nt) as (t as + cat) as (t as + as (ive 'eIs + as (ymp as + &) asy (_ @sI2 + w) ast (e eIst .group at - pal) ate (_ @t - consul) ate (_ @t - macul) ate (_ @t - tim) ate (_ @t - tim) ated (_ eItI2d - tim) ating (_ eItIN - din) ate (_ @t - ion) ate (_ @t - nion) ate (_ eIt - der) ate (_ @t - mper) ate (_ @t - _it_separ) ate (_ @t - par) ates (_ eIt|s - @) ated (++_ eItId - _s) atel (l at@ - @) ati (_ 'A:tI - at (im_ 'eIt - @) ating (++_ eItIN - &) at (ive @t -// &) ately (_ @tlI2 - ul) at (ory 'eIt - sen) at @t - pl) at (ea at - &) at (eer_ @t - g) at (eau at - fr) at (ern a2t - c) atego atIg@ - c) atego (ric atIg'0 - at (ia eIS - &) atism @tIz@m - st) at (ist @t - w) at (t 0t - athed (_ eIDd - athei eITI2I - @) athy =@TI2 - @) ath (is =@T - _) at (lan a2t - at (omi a2t - _) ato (n a2toU - _) ato (na %eItoU - atron (_ eItr@n - _) at (roc a2t - @) atry (_ =@trI2 - _) att (@ a2t - att (ic at - att (it at - _vers) at @t - bl) at (A eIt - clim) at (e @t - c) at (eC at - c) at (er_ eIt - m) ater (n @t3: - m) at (eri @t - d) ata eIt@ - f) at (al eIt - str) at (eg at - m) at (er at - p) at (ern @t - f) ath (er A:D - b) ath aaT - b) ath (e eID - p) ath aaT - ath (lon aT - n) at (ive eIt - _c) ati (on ataI - at (or_ eIt - @) at (or_ 'eIt - @@) at (or_ eIt - @) at (ra_ 'A:t - at (um 'A:t - d) at (um_ 'eIt - m) at (um_ 'eIt - c) atur @tSU@ - m) atur @tSU@ - l) ature (_ @tS3 + pal) ate (_ @t + consul) ate (_ @t + macul) ate (_ @t + tim) ate (_ @t + tim) ated (_ eItI2d + tim) ating (_ eItIN + din) ate (_ @t + ion) ate (_ @t + nion) ate (_ eIt + der) ate (_ @t + mper) ate (_ @t + _it_separ) ate (_ @t + par) ates (_ eIt|s + @) ated (++_ eItId + _s) atel (l at@ + @) ati (_ 'A:tI + at (im_ 'eIt + @) ating (++_ eItIN + &) at (ive @t +// &) ately (_ @tlI2 + ul) at (ory 'eIt + sen) at @t + pl) at (ea at + &) at (eer_ @t + g) at (eau at + fr) at (ern a2t + c) atego atIg@ + c) atego (ric atIg'0 + at (ia eIS + &) atism @tIz@m + st) at (ist @t + w) at (t 0t + athed (_ eIDd + athei eITI2I + @) athy =@TI2 + @) ath (is =@T + _) at (lan a2t + at (omi a2t + _) ato (n a2toU + _) ato (na %eItoU + atron (_ eItr@n + _) at (roc a2t + @) atry (_ =@trI2 + _) att (@ a2t + att (ic at + att (it at + _vers) at @t + bl) at (A eIt + clim) at (e @t + c) at (eC at + c) at (er_ eIt + m) ater (n @t3: + m) at (eri @t + d) ata eIt@ + f) at (al eIt + str) at (eg at + m) at (er at + p) at (ern @t + f) ath (er A:D + b) ath aaT + b) ath (e eID + p) ath aaT + ath (lon aT + n) at (ive eIt + _c) ati (on ataI + at (or_ eIt + @) at (or_ 'eIt + @@) at (or_ eIt + @) at (ra_ 'A:t + at (um 'A:t + d) at (um_ 'eIt + m) at (um_ 'eIt + c) atur @tSU@ + m) atur @tSU@ + l) ature (_ @tS3 .group au - au O: - g) au (s aU - s) au (s 0 - l) au (t_ aU - au (str 0 - au (_ aU - _) auch %O:x - aud (_ 'O:d - augh O: - l) augh aaf - sl) augh O: - dr) augh aaf - augment O:gm'Ent - aul (t 0l - c) au (li 0 - aul (k O: - _) au (nt A: - aur (_ O@ - s) au (rus_ 'O: - @) au (ri 'O: - C) aus (_ aUs - au (t_ aU - n) au (t_ O: - authen %O:TEn - _) auto (@P4 ,O:toU // prefix - auto (ma O:t@ - auto (n %O:t0 + au O: + g) au (s aU + s) au (s 0 + l) au (t_ aU + au (str 0 + au (_ aU + _) auch %O:x + aud (_ 'O:d + augh O: + l) augh aaf + sl) augh O: + dr) augh aaf + augment O:gm'Ent + aul (t 0l + c) au (li 0 + aul (k O: + _) au (nt A: + aur (_ O@ + s) au (rus_ 'O: + @) au (ri 'O: + C) aus (_ aUs + au (t_ aU + n) au (t_ O: + authen %O:TEn + _) auto (@P4 ,O:toU // prefix + auto (ma O:t@ + auto (n %O:t0 .group av - av (ail a2v - avar (ic av@r - av (eng a2v - _) av (erC a2v - av (oA a2v - d) av (id eIv - j) av (a A:v - j) av (el av - l) av (en av - al) av (er 'A:v - sc) av (en av - aver (s av'3: - _) avi (a eIvI - l) av (i av - sl) av (i A:v - r) av (el av - s) av (i eIv - _) av (on eIv - f) av (o eIv - fl) av (o eIv - s) av (o eIv - avow a2vaU + av (ail a2v + avar (ic av@r + av (eng a2v + _) av (erC a2v + av (oA a2v + d) av (id eIv + j) av (a A:v + j) av (el av + l) av (en av + al) av (er 'A:v + sc) av (en av + aver (s av'3: + _) avi (a eIvI + l) av (i av + sl) av (i A:v + r) av (el av + s) av (i eIv + _) av (on eIv + f) av (o eIv + fl) av (o eIv + s) av (o eIv + avow a2vaU .group b - b b - b (b - m) b (_ - _) bally (@ b,alI2 - _) balli (@ b,alI2 - balli (st ba2l'I - _) ba (mb@ b%a - _) book (@@P4 b'Uk - su) bt (l t - de) bt t - _) bug (le bju:g - @) bury (_$4i brI2 - _) by baI + b b + b (b + m) b (_ + _) bally (@ b,alI2 + _) balli (@ b,alI2 + balli (st ba2l'I + _) ba (mb@ b%a + _) book (@@P4 b'Uk + su) bt (l t + de) bt t + _) bug (le bju:g + @) bury (_$4i brI2 + _) by baI .group be - may) be (_ bi: - _) be (CA bI2 - _) be (C% bE - _) be (b bi: - _) be (cl bI2 - _) be (ck bE - _) be (cq bE - _) be (dC bE - _) be (dra bI2 - _) be (gg bE - _) be (lC bE - _) be (lli bI2 - _) be (sC bI2 - _) be (stia bE - _) be (tC bI2 - _) be (v bE - be (gA bI2 - be (gr bI2 - be (lat bI2 - be (lie bI2 - beha (v bI2heI - be (mu bI2 - _) bene bEnI - benevo b@nEv@ - be (qu bI2 - _) ber (s b3 - be (see bI2 - be (sie bI2 - _) be (sto bI2 - _) be (th bE - be (tray bI2 - _) be (w bI2 - h) bed (_ bEd - er) bed (_ bEd - t) bed (_ bEd + may) be (_ bi: + _) be (CA bI2 + _) be (C% bE + _) be (b bi: + _) be (cl bI2 + _) be (ck bE + _) be (cq bE + _) be (dC bE + _) be (dra bI2 + _) be (gg bE + _) be (lC bE + _) be (lli bI2 + _) be (sC bI2 + _) be (stia bE + _) be (tC bI2 + _) be (v bE + be (gA bI2 + be (gr bI2 + be (lat bI2 + be (lie bI2 + beha (v bI2heI + be (mu bI2 + _) bene bEnI + benevo b@nEv@ + be (qu bI2 + _) ber (s b3 + be (see bI2 + be (sie bI2 + _) be (sto bI2 + _) be (th bE + be (tray bI2 + _) be (w bI2 + h) bed (_ bEd + er) bed (_ bEd + t) bed (_ bEd .group bi - _) bi (C@@ %baI - _) bi (_ baI - _) bi (C% bI - bi (bli bI - bi (bu bI - bi (ck bI - bi (cy baI - _) bi (en b%aI - bi (g+ bI - bigh (t baI - bi (ker baI - bi (lb bI - bi (lg bI - bi (lio bI - bi (lk bI - bi (nary baI - bi (nd baI - _) bi (ng bI - bi (nm bI - bi (noc bI2 - bio baIoU - _) bio (@P3 b,aIoU - bi (otic baI - @) bi (osA baI - bi (oC_ bI - bi (ous bI - bio (g baI'0 - bio (log baI'0 - bio (ni baI'0 - bio (ps baI'0 - bir (C b3: -?5 bir (C bIR - bi (ri bI - bi (ry bI - bi (sc bI - bi (sec b%aI - bi (sh bI - bi (sm bI - bi (sq bi: - bi (str bi: - o) bi (tA baI - _) bi (tC bI - bi (tu bI - bi (z+ bI + _) bi (C@@ %baI + _) bi (_ baI + _) bi (C% bI + bi (bli bI + bi (bu bI + bi (ck bI + bi (cy baI + _) bi (en b%aI + bi (g+ bI + bigh (t baI + bi (ker baI + bi (lb bI + bi (lg bI + bi (lio bI + bi (lk bI + bi (nary baI + bi (nd baI + _) bi (ng bI + bi (nm bI + bi (noc bI2 + bio baIoU + _) bio (@P3 b,aIoU + bi (otic baI + @) bi (osA baI + bi (oC_ bI + bi (ous bI + bio (g baI'0 + bio (log baI'0 + bio (ni baI'0 + bio (ps baI'0 + bir (C b3: +?5 bir (C bIR + bi (ri bI + bi (ry bI + bi (sc bI + bi (sec b%aI + bi (sh bI + bi (sm bI + bi (sq bi: + bi (str bi: + o) bi (tA baI + _) bi (tC bI + bi (tu bI + bi (z+ bI .group c - c k - cc k - ck k - c (e s - c (é s - s) c (e - c (E s - c (i s - c (y s - c (q - cc (e ks - so) cc (er k - cc (i ks - co) cc (i_ k - c (aes s - caco (ph ka2k'0 - _) cement sI2mEnt - chara (ct karI - cien S@n - cion S@n - ceous S=@s - cious S=@s - cch k - c (elt k - cial (_ S@L - cial S@l - cian (_ S@n - cian Si@n - cia (lit SIa - cia (b Si@ - ma) c (in k - ciph (er saIf - cism (_ sIz@m - e) cua kwa - czech tSEk + c k + cc k + ck k + c (e s + c (é s + s) c (e + c (E s + c (i s + c (y s + c (q + cc (e ks + so) cc (er k + cc (i ks + co) cc (i_ k + c (aes s + caco (ph ka2k'0 + _) cement sI2mEnt + chara (ct karI + cien S@n + cion S@n + ceous S=@s + cious S=@s + cch k + c (elt k + cial (_ S@L + cial S@l + cian (_ S@n + cian Si@n + cia (lit SIa + cia (b Si@ + ma) c (in k + ciph (er saIf + cism (_ sIz@m + e) cua kwa + czech tSEk .group ch - ch tS - ch (r k - chry (sa krI - @) ch (ia k - ch (io k - chion S@n - ch (io_ S - ch (ae k - _) cha (o keI - chaos keI0s - chap (ero Sap - chario (t tSari@ - cha (ris k@ - ch (asm k - ch (ass S - ch (atea S - chauffeu SoUf@ - chauvi SoUv@ - ch (é+ S - ch (ef S - ch (em k - ch (ev S - chez SeI - Ca) ch (e S - ba) che tS@ - tra) ch k - cre) ch S - e) ch (el S - cli) ch S - fi) ch S - li) ch k - ni) ch S - clo) ch S - _o) ch (e S - ico) ch S - _ar) ch (A k - ar) ch (er tS - _or) ch (es k - me) ch (a k - mi) ch (a k - ch (irA k - a) ch (il k - bra) ch k - te) ch k - ch (isC k - ch (ic_ k - @@Car) ch (_ k - _ar) ch (a k - _ar) chi (@ kI - ar) ch (ive k - or) ch (i k - ch (lor k - chloro kl,O:roU - choir kwaI@ - ch (ol k - choly k@lI2 - ch (ond k - ch (orA k - ch (ore_ tS - ch (ord k - an) ch (or k - o) ch (_ k - oo) ch (_ tS - _ta) ch k - ta) ch tS - sta) ch S - e) ch (o k - bron) ch k - ch (ute S - ch (ure S + ch tS + ch (r k + chry (sa krI + @) ch (ia k + ch (io k + chion S@n + ch (io_ S + ch (ae k + _) cha (o keI + chaos keI0s + chap (ero Sap + chario (t tSari@ + cha (ris k@ + ch (asm k + ch (ass S + ch (atea S + chauffeu SoUf@ + chauvi SoUv@ + ch (é+ S + ch (ef S + ch (em k + ch (ev S + chez SeI + Ca) ch (e S + ba) che tS@ + tra) ch k + cre) ch S + e) ch (el S + cli) ch S + fi) ch S + li) ch k + ni) ch S + clo) ch S + _o) ch (e S + ico) ch S + _ar) ch (A k + ar) ch (er tS + _or) ch (es k + me) ch (a k + mi) ch (a k + ch (irA k + a) ch (il k + bra) ch k + te) ch k + ch (isC k + ch (ic_ k + @@Car) ch (_ k + _ar) ch (a k + _ar) chi (@ kI + ar) ch (ive k + or) ch (i k + ch (lor k + chloro kl,O:roU + choir kwaI@ + ch (ol k + choly k@lI2 + ch (ond k + ch (orA k + ch (ore_ tS + ch (ord k + an) ch (or k + o) ch (_ k + oo) ch (_ tS + _ta) ch k + ta) ch tS + sta) ch S + e) ch (o k + bron) ch k + ch (ute S + ch (ure S .group co - _) co (eCP2 k,oU - _) coe (l si: - co (hab k%oU - co (llab k@ - co (llap k@ - co (llat k%0 - co (llec k@ - co (llis k@ - co (llid k@ - co (llu k@ - co (loss %k0 - _) co (m@ k@ - _) co (ma koU - co (me_ kV - co (mbina k0 - come (b kVm - co (mba k0 - co (medy k0 - come (di k@mi: - _) co (mf kV - comfor (t kVmf3 - _) co (mi k0 - coming kVmI2N - co (mmanda k0 - co (mma_ k0 - co (mmen k0 - co (mmens k@ - co (mmerce k0 - co (mmodor k0 - common k0m@n - commun k0mju:n - co (mmunic++ k@ - co (mmuta k0 - co (mpany kV - comparab k0mp@r@b - co (mpass_ kV - co (mpens k0 - co (mper k0 - compe (tAn k0mpI - co (mpila k0 - co (mplem k0 - co (mplex_ k0 - co (mplica k0 - co (mplim k0 - co (mposit k0 - co (mpost k0 - co (mpou k0 - comprehen k0mprIh'En - co (mprom k0 - co (mpt k0 - co (mputa k,0 - _) co (mr k0 - _) con k%0n - _) conce (ntra k0ns@ - _) co (ncept_ k0 - _) co (ncret k0 - _) conde (sc k,0ndI2 - _) co (ndim k0 - _) co (ndom k0 - _) co (ndor k0 - _) co (nduit k0 - _) co (nferen k0 - _) co (nfid k0 - _) co (nfide k%0 - _) confi (den k0nfI - _) co (nfis k0 - _) co (nflu k0 - _) co (ngress k0 - congru k0ngru: - _) co (ni k0 - _) co (njug k0 - _) co (njur kV - _) co (nnect k@ - _) co (nnex k@ - conniv k@naIv - _) co (nnois k0 - _) co (nque k0 - _) co (nsc k0 - co (nsec k0 - co (nsecu k%0 - _) conse (q k0nsI - conser (v k%0ns3: - conser (vatio k0ns@ - consider k%0nsId@ - co (nson k0 - _) co (nstabl k0 - co (nstan k0 - _) co (nstip k0 - co (nstit k0 - co (nstituA k%0 - _) co (nsole k0 - _) co (nsul k0 - _) co (nsult k%0 - _) co (ntact k0 - _) co (ntempl k0 - _) co (ntext k0 - co (ntine k0 - _) co (ntour k0 - _) co (ntrA k0 - _) contra (C@P6 k,0ntr@ - _) contrast k0ntraast - contrac (t k%0ntrak - contrar k%0ntre@ - _) co (ntrib k0 - _) co (ntro k0 - _) co (ntrol k%0 - conva (l k0nv@ - _) co (nvoy k0 - _) copy k0pI - coro (lla k@r0 - co (rrect k@ - correspo k,0rIsp'0 - co (rro k@ - co (rrup k@ - _) counter (@P7 k'aUnt@ // prefix + _) co (eCP2 k,oU + _) coe (l si: + co (hab k%oU + co (llab k@ + co (llap k@ + co (llat k%0 + co (llec k@ + co (llis k@ + co (llid k@ + co (llu k@ + co (loss %k0 + _) co (m@ k@ + _) co (ma koU + co (me_ kV + co (mbina k0 + come (b kVm + co (mba k0 + co (medy k0 + come (di k@mi: + _) co (mf kV + comfor (t kVmf3 + _) co (mi k0 + coming kVmI2N + co (mmanda k0 + co (mma_ k0 + co (mmen k0 + co (mmens k@ + co (mmerce k0 + co (mmodor k0 + common k0m@n + commun k0mju:n + co (mmunic++ k@ + co (mmuta k0 + co (mpany kV + comparab k0mp@r@b + co (mpass_ kV + co (mpens k0 + co (mper k0 + compe (tAn k0mpI + co (mpila k0 + co (mplem k0 + co (mplex_ k0 + co (mplica k0 + co (mplim k0 + co (mposit k0 + co (mpost k0 + co (mpou k0 + comprehen k0mprIh'En + co (mprom k0 + co (mpt k0 + co (mputa k,0 + _) co (mr k0 + _) con k%0n + _) conce (ntra k0ns@ + _) co (ncept_ k0 + _) co (ncret k0 + _) conde (sc k,0ndI2 + _) co (ndim k0 + _) co (ndom k0 + _) co (ndor k0 + _) co (nduit k0 + _) co (nferen k0 + _) co (nfid k0 + _) co (nfide k%0 + _) confi (den k0nfI + _) co (nfis k0 + _) co (nflu k0 + _) co (ngress k0 + congru k0ngru: + _) co (ni k0 + _) co (njug k0 + _) co (njur kV + _) co (nnect k@ + _) co (nnex k@ + conniv k@naIv + _) co (nnois k0 + _) co (nque k0 + _) co (nsc k0 + co (nsec k0 + co (nsecu k%0 + _) conse (q k0nsI + conser (v k%0ns3: + conser (vatio k0ns@ + consider k%0nsId@ + co (nson k0 + _) co (nstabl k0 + co (nstan k0 + _) co (nstip k0 + co (nstit k0 + co (nstituA k%0 + _) co (nsole k0 + _) co (nsul k0 + _) co (nsult k%0 + _) co (ntact k0 + _) co (ntempl k0 + _) co (ntext k0 + co (ntine k0 + _) co (ntour k0 + _) co (ntrA k0 + _) contra (C@P6 k,0ntr@ + _) contrast k0ntraast + contrac (t k%0ntrak + contrar k%0ntre@ + _) co (ntrib k0 + _) co (ntro k0 + _) co (ntrol k%0 + conva (l k0nv@ + _) co (nvoy k0 + _) copy k0pI + coro (lla k@r0 + co (rrect k@ + correspo k,0rIsp'0 + co (rro k@ + co (rrup k@ + _) counter (@P7 k'aUnt@ // prefix .group d - d d - d (d - _) d' (AP2 d - @@e) d (_$1 d // suffix - ddh d - dj dZ - dg (_ dZ - dg (C dZ - dg (e dZ - dged (_ dZd - dg (i dZ - dg (y dZ - _) dir (_ daI@ - we) dne (sd n - dual (_ dZu:@L - du (cat dZu: - @) dum (_ =d@m - du (pl dZu: - dur (A djU@ - dur (_ djU@ - ce) dure dZ3 - _) dye daI + d d + d (d + _) d' (AP2 d + @@e) d (_$1 d // suffix + ddh d + dj dZ + dg (_ dZ + dg (C dZ + dg (e dZ + dged (_ dZd + dg (i dZ + dg (y dZ + _) dir (_ daI@ + we) dne (sd n + dual (_ dZu:@L + du (cat dZu: + @) dum (_ =d@m + du (pl dZu: + dur (A djU@ + dur (_ djU@ + ce) dure dZ3 + _) dye daI .group de - de (act d%i: - de (arc d%i: - de (bug di: - _) de (ba dI2 - _) de (c@ dI2 - deca (den dEk@ - de (cenc di: - de (cib dE - de (cil dE - de (cim dE - de (ck dE - de (com di: - de (cor dE - deco (ra dEk@ - de (coru dI2 - de (creas di: - de (crem dE - de (du dI2 - _) de (f@ dI2 - de (fect_ di: - de (finit dE - de (flat d%i: - de (feren dE - de (ft dE - _) de (g@ dI2 - _) de (hyd ,di: - _) de (l@ dI2 - de (law dE - de (leg dE - de (lica dE - de (ll dE - de (lph dE - _) de (lt dE - delu (g dElju: - de (lv dE - de (ma dI2 - de (mea dI2 - de (men dI2 - de (mise dI2 - de (mocrac dI2 - dem (oni di:m - de (mor dI2 - de (mot dI2 - de (mur dI2 - deni (tri d%i:naI - _) de (no dI2 - _) de (o d%i: - _) de (p@ dI2 - de (per d%i: - de (pol d%i: - de (pop d%i: - depo (siti dEp@ - depot dEpoU - de (pt dE - de (put dE - _) de (rai dI2 - de (rel dE - de (riC dI2 - de (rog dI2 - de (rACatio dE - _) des (@ dI2s - des (ca dE - des (ec dEs - des (eg d%i:s - dese (l d,i:sI2 - des (en d%i:s - _) des (h dEs - des (ic dEs - _) des (i dI2z - des (igna dEz - des (is dI2s - _) des (k dEs - des (ol dEs - des (pot dEs - _) dess dI2z - desta (b d%i:steI - desti dEstI - des (ul d%i:s - _) de (t@ dI2 - de (tail di: - deter dI2t3: - deter (i dI2ti@ - detest dI2tEst - de (th d%i: - de (ton dE - de (tou di: - de (tox d%i: - de (trai d%i: - de (tri dE - _) de (vA dI2 - de (val d%i: - _) devas dEv@s - de (via di: - de (vil dE - de (vio di: - de (von dE + de (act d%i: + de (arc d%i: + de (bug di: + _) de (ba dI2 + _) de (c@ dI2 + deca (den dEk@ + de (cenc di: + de (cib dE + de (cil dE + de (cim dE + de (ck dE + de (com di: + de (cor dE + deco (ra dEk@ + de (coru dI2 + de (creas di: + de (crem dE + de (du dI2 + _) de (f@ dI2 + de (fect_ di: + de (finit dE + de (flat d%i: + de (feren dE + de (ft dE + _) de (g@ dI2 + _) de (hyd ,di: + _) de (l@ dI2 + de (law dE + de (leg dE + de (lica dE + de (ll dE + de (lph dE + _) de (lt dE + delu (g dElju: + de (lv dE + de (ma dI2 + de (mea dI2 + de (men dI2 + de (mise dI2 + de (mocrac dI2 + dem (oni di:m + de (mor dI2 + de (mot dI2 + de (mur dI2 + deni (tri d%i:naI + _) de (no dI2 + _) de (o d%i: + _) de (p@ dI2 + de (per d%i: + de (pol d%i: + de (pop d%i: + depo (siti dEp@ + depot dEpoU + de (pt dE + de (put dE + _) de (rai dI2 + de (rel dE + de (riC dI2 + de (rog dI2 + de (rACatio dE + _) des (@ dI2s + des (ca dE + des (ec dEs + des (eg d%i:s + dese (l d,i:sI2 + des (en d%i:s + _) des (h dEs + des (ic dEs + _) des (i dI2z + des (igna dEz + des (is dI2s + _) des (k dEs + des (ol dEs + des (pot dEs + _) dess dI2z + desta (b d%i:steI + desti dEstI + des (ul d%i:s + _) de (t@ dI2 + de (tail di: + deter dI2t3: + deter (i dI2ti@ + detest dI2tEst + de (th d%i: + de (ton dE + de (tou di: + de (tox d%i: + de (trai d%i: + de (tri dE + _) de (vA dI2 + de (val d%i: + _) devas dEv@s + de (via di: + de (vil dE + de (vio di: + de (von dE .group di - _) dia daI|@ - _) dia (gon daI'a - _) dia (l daI@ - _) dia (n daI'a - dicho (t daIk'0 - di (chro daI - di (ctat dI2 - di (ffrac dI2 - di (ffus dI2 - dige (st d%aIdZE - di (gres d%aI - dili (g dIlI - _) di (h@ d%aI - dilu (t daIl'u: - di (mens d%aI - di (min dI2 - di (ox d%aI - _) di (s@ dI2 - _) di (sa@ ,dI - _) disa (p ,dIs@ - di (sast dI2 - di (sbe@ ,dI - di (sc_ dI - discipli dIsIplI - di (sco_ dI - di (scon ,dI - di (scord_ dI - di (scot dI - di (scount dI - di (scov dI2 - _) di (se ,dI - di (sh_ dI - di (shC dI - _) dis (hA dI2s - _) di (si ,dI - di (sint dI2 - di (sk dI - di (sol dI - di (sob ,dI - di (sposit dI - di (sposs ,dI - di (sprop ,dI - _) di (sre ,dI - di (srepu dI2 - di (ssect daI - di (ssid dI - di (ssip dI - di (ssolu dI - di (sson dI - di (stan dI - di (stillate dI - di (stri dI - di (sul daI - di (verC d%aI - di (vest d%aI - di (vid dI2 - divi (den dIvI - di (vin dI2 - di (vis dI2 - di (vorc dI2 - di (vul d%aI + _) dia daI|@ + _) dia (gon daI'a + _) dia (l daI@ + _) dia (n daI'a + dicho (t daIk'0 + di (chro daI + di (ctat dI2 + di (ffrac dI2 + di (ffus dI2 + dige (st d%aIdZE + di (gres d%aI + dili (g dIlI + _) di (h@ d%aI + dilu (t daIl'u: + di (mens d%aI + di (min dI2 + di (ox d%aI + _) di (s@ dI2 + _) di (sa@ ,dI + _) disa (p ,dIs@ + di (sast dI2 + di (sbe@ ,dI + di (sc_ dI + discipli dIsIplI + di (sco_ dI + di (scon ,dI + di (scord_ dI + di (scot dI + di (scount dI + di (scov dI2 + _) di (se ,dI + di (sh_ dI + di (shC dI + _) dis (hA dI2s + _) di (si ,dI + di (sint dI2 + di (sk dI + di (sol dI + di (sob ,dI + di (sposit dI + di (sposs ,dI + di (sprop ,dI + _) di (sre ,dI + di (srepu dI2 + di (ssect daI + di (ssid dI + di (ssip dI + di (ssolu dI + di (sson dI + di (stan dI + di (stillate dI + di (stri dI + di (sul daI + di (verC d%aI + di (vest d%aI + di (vid dI2 + divi (den dIvI + di (vin dI2 + di (vis dI2 + di (vorc dI2 + di (vul d%aI .group e - e E - &) e (_ - e (_ =@ - _C) e (_ i: - _CC) e (_ i: - _C) e (Be_ i: - _CC) e (Be_ i: - _CCC) e (Be_ i: - @) e (Cia_ 'i: - e (Bo_ 'i: - e (Boe_ 'i: - acB) e (_ I2 - e (Cic_ E - e (Cical 'E - e (Cium i: - t) ech (_ Ek - m) e (chanic I - @@) eble (_ @b@L - vert) e (b I - cel) e (bra @ - sp) e (cia E - sp) e (cies i: - _) e (cl I2 - @) e (ctive 'E - _) eco (s i:koU - econo (m Ik'0n@ - econo (mic Ek@n'0 - &) ecy (_ @sI2 - ee i: - ee (m 'i: - eer 'i@ - t) ee (n_ 'i: - ees (_ i:z - ch) eese i:z - d) e (fault i: - e (ffec I2 - e (ffic I2 - efier (_ I2faI3 - e (ful - @@) efy (_ I2faI - &) eg (y @dZ - @) e (gic 'i: - l) e (gal i: - r) e (gal i: - l) e (git @ - int) e (ge I - int) e (gra I - n) e (got I2 - l) egion i:dZ@n - egy (pt i:dZI - n) e (gro i: - ei eI - _) ei aI - c) ei i: - _) e (jA I2 - v) ej (_ eI - &) e (m_ @ - @) e (mber 'E - @@) e (ment_ - e (me_ i: - _el) e (men I - e (mail i: - f) e (male i: - e (meou i: - _C) e (mur i: - &) e (n @ - Ah) e (n E - ll) e (nge I - e (o I2 - _) e (phem I2 - cr) e (pe+ E - _) epi EpI - _) epider EpId'3: - _) ep (isC I2p - ep (ox I2p - e (qual i: - _) e (qua i: - e (quat I2 - fr) e (q i: - _s) e (que i: - e (quip I2 - e (quiv I2 - e'er e@ - &f) e's (_$2i s - &k) e's (_$2i s - &p) e's (_$2i s - &t) e's (_$2i s - &c) e's (_$2i Iz - &g) e's (_$2i Iz - &ch) e's (_$2i Iz - &ph) e's (_$2i Iz - &s) e's (_$2i Iz - &sh) e's (_$2i Iz - &th) e's (_$2i z - &r) e's (_$2i z - &x) e's (_$2i Iz - &C) e's (_$2i z - &Cr) e's (_ @z - e (tion i: - discr) e (tion E - eu ju: - d) eu (ts OI - r) eu (d OI - eu (m_ i: - s) eu (m_ 'i@ - eur 3: -?5 eur VR - eur (_ '3: -?5 eur (_ 'VR - &) eus (_ =I2@s - _) euro jU@roU - _) euro (pe jU@r-@ - ew ju: - ew (_ ju: - j) ew (+ u: - j) ewe (l u:@ - l) ew (+ u: - r) ew (+ u: - _s) ew u: - _s) ew (_ oU - e (work - eway (_$3 weI - @) ez (_ =Ez + e E + &) e (_ + XC) e (_N i: + XC) e (Be_ i: + @) e (Cia_ 'i: + e (Bo_ 'i: + e (Boe_ 'i: + acB) e (_ I2 + e (Cic_ E + e (Cical 'E + e (Cium i: + t) ech (_ Ek + m) e (chanic I + @@) eble (_ @b@L + vert) e (b I + cel) e (bra @ + sp) e (cia E + sp) e (cies i: + _) e (cl I2 + @) e (ctive 'E + _) eco (s i:koU + econo (m Ik'0n@ + econo (mic Ek@n'0 + &) ecy (_ @sI2 + ee i: + ee (m 'i: + eer 'i@ + t) ee (n_ 'i: + ees (_ i:z + ch) eese i:z + d) e (fault i: + e (ffec I2 + e (ffic I2 + efier (_ I2faI3 + e (ful + @@) efy (_ I2faI + &) eg (y @dZ + @) e (gic 'i: + l) e (gal i: + r) e (gal i: + l) e (git @ + int) e (ge I + int) e (gra I + n) e (got I2 + l) egion i:dZ@n + egy (pt i:dZI + n) e (gro i: + ei eI + _) ei aI + c) ei i: + _) e (jA I2 + v) ej (_ eI + &) e (m_ @ + @) e (mber 'E + @@) e (ment_ + e (me_ i: + _el) e (men I + e (mail i: + f) e (male i: + e (meou i: + _C) e (mur i: + &) e (n @ + Ah) e (n E + ll) e (nge I + e (o I2 + _) e (phem I2 + cr) e (pe+ E + _) epi EpI + _) epider EpId'3: + _) ep (isC I2p + ep (ox I2p + e (qual i: + _) e (qua i: + e (quat I2 + fr) e (q i: + _s) e (que i: + e (quip I2 + e (quiv I2 + e'er e@ + &f) e's (_$2i s + &k) e's (_$2i s + &p) e's (_$2i s + &t) e's (_$2i s + &c) e's (_$2i Iz + &g) e's (_$2i Iz + &ch) e's (_$2i Iz + &ph) e's (_$2i Iz + &s) e's (_$2i Iz + &sh) e's (_$2i Iz + &th) e's (_$2i z + &r) e's (_$2i z + &x) e's (_$2i Iz + &C) e's (_$2i z + &Cr) e's (_ @z + e (tion i: + discr) e (tion E + eu ju: + d) eu (ts OI + r) eu (d OI + eu (m_ i: + s) eu (m_ 'i@ + eur 3: +?5 eur VR + eur (_ '3: +?5 eur (_ 'VR + &) eus (_ =I2@s + _) euro jU@roU + _) euro (pe jU@r-@ + ew ju: + ew (_ ju: + j) ew (+ u: + j) ewe (l u:@ + l) ew (+ u: + r) ew (+ u: + _s) ew u: + _s) ew (_ oU + e (work + eway (_$3 weI + @) ez (_ =Ez .group ea - ea i: - @) ea (_ i@ - Cs) ea (_ i: - r) ea (_ 'i@ - &) ea (bl @ - &) eably @blI2 - &) ea (bili @ - tr) ea (cher E - d) ea (d E - h) ea (d E - h) ea (dmA@ %E - h) ea (dq %E - _l) eaded EdI2d - l) ea (den E - r) ea (dy E - r) ea (dily E - r) ea (died E - r) eadme i:dmi: - br) ea (d E - dr) ea (d E - tr) ea (d E - spr) ea (d E - thr) ea (d E - st) ea (d E - d) ea (f E - br) ea (k eI - st) ea (k eI - w) eapo Ep@ - eager i:g3 - j) ealou El@ - &) eal (_ i@l - z) ea (lo E - C) ea (lt E - m) ea (lt i: - f) ea (lt i: - eam (t_ Emp - ean (_ i@n - p) ean (_ 'i@n - _l) ea (mi E - b) ea (n i: - _C) ea (n_ i: - _CC) ea (n_ i: - ear i@ - _) ear (l 3: - _) ear (n 3: - ear (th 3: - b) ear e@ - b) ear (d i@ - h) ear (d 3: - h) ear (th A@ - h) ear (k A@ - h) ear (se 3: - reh) ear (s 3: - h) ear (t A@ - l) ear (n 3: - p) ear (l 3: - s) ear (ch 3: - t) ear (A e@ - sw) ear e@ - w) ear e@ - w) ear (y i@ - y) ear (n 3: - eas (an Ez - eas (en Ez - easo (n i:z@ - easur EZ3 - br) ea (s E - ease (@ i:s - @) ea (tive =i@ - d) ea (th E - f) ea (th E - h) ea (ther E - th) ea (t i@ - th) ea (tri i:a - l) ea (th E - br) ea (th E - br) ea (the i: - cr) ea (t i:'eI - gr) ea (t eI - thr) ea (t E - w) eath ED - sw) ea (t E - eau oU - eau (t ju: - eaux oU - h) ea (v i: - _h) ea (vi E - h) ea (vy E - end) ea (v E - C) ea (ven E + ea i: + @) ea (_ i@ + Cs) ea (_ i: + r) ea (_ 'i@ + &) ea (bl @ + &) eably @blI2 + &) ea (bili @ + tr) ea (cher E + d) ea (d E + h) ea (d E + h) ea (dmA@ %E + h) ea (dq %E + _l) eaded EdI2d + l) ea (den E + r) ea (dy E + r) ea (dily E + r) ea (died E + r) eadme i:dmi: + br) ea (d E + dr) ea (d E + tr) ea (d E + spr) ea (d E + thr) ea (d E + st) ea (d E + d) ea (f E + br) ea (k eI + st) ea (k eI + w) eapo Ep@ + eager i:g3 + j) ealou El@ + &) eal (_ i@l + z) ea (lo E + C) ea (lt E + m) ea (lt i: + f) ea (lt i: + eam (t_ Emp + ean (_ i@n + p) ean (_ 'i@n + _l) ea (mi E + b) ea (n i: + XC) ea (n_ i: + ear i@ + _) ear (l 3: + _) ear (n 3: + ear (th 3: + b) ear e@ + b) ear (d i@ + h) ear (d 3: + h) ear (th A@ + h) ear (k A@ + h) ear (se 3: + reh) ear (s 3: + h) ear (t A@ + l) ear (n 3: + p) ear (l 3: + s) ear (ch 3: + t) ear (A e@ + sw) ear e@ + w) ear e@ + w) ear (y i@ + y) ear (n 3: + eas (an Ez + eas (en Ez + easo (n i:z@ + easur EZ3 + br) ea (s E + ease (@ i:s + @) ea (tive =i@ + d) ea (th E + f) ea (th E + h) ea (ther E + th) ea (t i@ + th) ea (tri i:a + l) ea (th E + br) ea (th E + br) ea (the i: + cr) ea (t i:'eI + gr) ea (t eI + thr) ea (t E + w) eath ED + sw) ea (t E + eau oU + eau (t ju: + eaux oU + h) ea (v i: + _h) ea (vi E + h) ea (vy E + end) ea (v E + C) ea (ven E .group ed - @@) ed (_$2dvei d - @C) ed (_$2dvei d - @c) ed (_$2vdei t - @d) ed (_$2dvei I2d - &ch) ed (_$2vei t - &sh) ed (_$2vei t - @Csh) ed (_ Ed - @f) ed (_$2vdei t - @g) ed (_$1vi d - @k) ed (_$2vdei t - &en) ed (_$2v d - cl) ed (_$1v d - @p) ed (_$2vdei t - @@er) ed (_$2v d - @ss) ed (_$2dv t - @t) ed (_$2vdei I2d - @fr) ed (_$2v Id - @x) ed (_$2vei t - y) ed (_$2v d - edly (_ IdlI2 - c) ed (e_ 'i:d - p) ed (e_ i:d - rs) ed (e 'i:d - m) ed (ia i:d - @) ed (ien 'i:d - m) ed (io i:d - m) ed (iu i:d - @m) ediate i:dI2@t - cr) edib EdIb - @dr) ed (_ Id - t) ed (i i:d - sw) ed i:d - h) ed (ral 'i:d - h) ed (ron 'i:d - h) ed (ra 'i:d - @) edur 'i:dZ3 + @@) ed (_$2dvei d + @C) ed (_$2dvei d + @c) ed (_$2vdei t + @d) ed (_$2dvei I2d + &ch) ed (_$2vei t + &sh) ed (_$2vei t + @Csh) ed (_ Ed + @f) ed (_$2vdei t + @g) ed (_$1vi d + @k) ed (_$2vdei t + &en) ed (_$2v d + cl) ed (_$1v d + @p) ed (_$2vdei t + @@er) ed (_$2v d + @ss) ed (_$2dv t + @t) ed (_$2vdei I2d + @fr) ed (_$2v Id + @x) ed (_$2vi t + y) ed (_$2v d + edly (_ IdlI2 + c) ed (e_ 'i:d + p) ed (e_ i:d + rs) ed (e 'i:d + m) ed (ia i:d + @) ed (ien 'i:d + m) ed (io i:d + m) ed (iu i:d + @m) ediate i:dI2@t + cr) edib EdIb + @dr) ed (_ Id + t) ed (i i:d + sw) ed i:d + h) ed (ral 'i:d + h) ed (ron 'i:d + h) ed (ra 'i:d + @) edur 'i:dZ3 .group ei - l) eice (st E - eigh eI - l) eigh i: - sl) eigh eI - k) eigh i:T - h) eigh (t aI - eighth eItT - eig (n eI - n) eil i:@L - @) ei (n_ i: - b) ei (ng i:I - eir e@ - w) eir i@ - l) ei (s E - th) ei (sC i:I - _s) eis (m aIz - f) ei (t_ I - ei (th aI - ei (th_ i: - ei (v i: - ei (z i: + l) eice (st E + eigh eI + l) eigh i: + sl) eigh eI + k) eigh i:T + h) eigh (t aI + eighth eItT + eig (n eI + n) eil i:@L + @) ei (n_ i: + b) ei (ng i:I + eir e@ + w) eir i@ + l) ei (s E + th) ei (sC i:I + _s) eis (m aIz + f) ei (t_ I + ei (th aI + ei (th_ i: + ei (v i: + ei (z i: .group el - _) el (A I2l - _) ele (ctro I2l,E - _) ele (ctron ElE - _) ele (g ElI - _) elem ElIm - _) ele (p ElI - _) ele (va ElI - el (igi 'El - _) elit I2li:t - &) el (_ @L - &) ella (_ 'El@ - &v) eller (_ @l@ - @) elli (_ 'ElI2 - &) ell (ous @l - &) el (s_ @L - cib) el (_ El - xc) el (_ 'El - onn) el (_ 'El - p) el (_ 'El - all) el El - all) el (o 'El - v) elop 'El@p - elo (q El@ - d) el (iv @l - f) el (ix i:l - s) el (ect I2l - _) ell (ip I2l - v) el (oc @l - t) el (p @L - _) else Els + _) el (A I2l + _) ele (ctro I2l,E + _) ele (ctron ElE + _) ele (g ElI + _) elem ElIm + _) ele (p ElI + _) ele (va ElI + el (igi 'El + _) elit I2li:t + &) el (_ @L + &) ella (_ 'El@ + &v) eller (_ @l@ + @) elli (_ 'ElI2 + &) ell (ous @l + &) el (s_ @L + cib) el (_ El + xc) el (_ 'El + onn) el (_ 'El + p) el (_ 'El + all) el El + all) el (o 'El + v) elop 'El@p + elo (q El@ + d) el (iv @l + f) el (ix i:l + s) el (ect I2l + _) ell (ip I2l + v) el (oc @l + t) el (p @L + _) else Els .group em - _) em %Em - _) em (a I2m - em (ana Em - emba (s Emb@ - em (blem Em - em (bry Em - em (eral Em - _) em (e I2m - em (ery Em - em (i Em - em (issi I2m - _) em (it I2m - emm (e Em - emm (an I2m - _) em (o I2m - em (path Em - em (per Em - em (phas Em - em (pres Em - em (pti Em - em (pty Em - em (ul Em - em (uls I2m - h) em (o i:m - h) emorrh Em@r + _) em %Em + _) em (a I2m + em (ana Em + emba (s Emb@ + em (blem Em + em (bry Em + em (eral Em + _) em (e I2m + em (ery Em + em (i Em + em (issi I2m + _) em (it I2m + emm (e Em + emm (an I2m + _) em (o I2m + em (path Em + em (per Em + em (phas Em + em (pres Em + em (pti Em + em (pty Em + em (ul Em + em (uls I2m + h) em (o i:m + h) emorrh Em@r .group en - _) en (@ %En - chick) en In - en (a_ 'i:n - en (al_ i:n - en (ary 'i:n - _) ena (m I2na - &) en (Ance @n - &) en (ch En - encha (n %EntSaa - enclav EnkleIv - en (core 0n - &) ency (_ @nsI2 - ency (cli %EnsI - _) en (d En - _) en (da %En - eg) en (d @n - en (dea %En - en (dous En - _) endo EndoU - endow End'aU - _) endor %Endo@ - _) en (du %En - _) en (e En - t) enem En@m - _) ener En3 - @@th) enes (_ =@ni:z - &) en (ger In - eng (lA INg - eng (in EndZ - eng (_ 'EN // place names - en (ig En - en (igma_ %En - &) enine @ni:n - &) enko (_ 'EnkoU - enli (v %EnlaI - _) en (m En - &) en (ment @n - en (mes %En - _) enn %En - enn (ia 'En - _) en (o I2n - carp) en @n - enrage %EnreIdZ - enrol %EnroUl - @) enous (_ =@n@s - ost) en (s 'En - en (sig En - ensk (_ 'Ensk - enshrine %EnSraIn - m) entary (_ 'Ent@rI2 - en (ter En - en (tert ,En - enthra (l %EnTrO: - &) entice %EntaIs - _) en (ti %En - _c) enti EntI - en (tity En - en (tran En - en (trec 0n - en (trep ,0n - en (tri En - en (tro En - _) en (try En - _) en (u I2n - @) en (tu 'En - @) en (tous 'En - en (viA En - enviro %EnvaIr@ - en (voy En - en (vy En - en (zy En - &) en (_ @n - &) en (ed_ @n - ene (_ i:n - &) en (er_ @n - sc) en (e i:n - g) en (iA i:n - _s) en (i i:n - en (ia 'i:n - mill) en (ia 'En - engin EndZI2n - l) eni (e i:nI - v) eni (e i:nI - &) en (t_ @n - @) en (tal 'En - en (ti En - en (tial 'En - perc) en (t En - desc) en (t En - asc) en (t En - ns) en (t En - ss) en (t 'En - _res) en (t En - epres) en (t 'En - nt) en (t En - xt) en (t En - v) en (t_ En - lv) en (t_ @n - @@v) en (t_ @n - &) en (th_ @n - &) en (ce_ @n - f) en (ce_ En - g) ener (al En@r - _) en (ough I2n + _) en (@ %En + chick) en In + en (a_ 'i:n + en (al_ i:n + en (ary 'i:n + _) ena (m I2na + &) en (Ance @n + &) en (ch En + encha (n %EntSaa + enclav EnkleIv + en (core 0n + &) ency (_ @nsI2 + ency (cli %EnsI + _) en (d En + _) en (da %En + eg) en (d @n + en (dea %En + en (dous En + _) endo EndoU + endow End'aU + _) endor %Endo@ + _) en (du %En + _) en (e En + t) enem En@m + _) ener En3 + @@th) enes (_ =@ni:z + &) en (ger In + eng (lA INg + eng (in EndZ + eng (_ 'EN // place names + en (ig En + en (igma_ %En + &) enine @ni:n + &) enko (_ 'EnkoU + enli (v %EnlaI + _) en (m En + &) en (ment @n + en (mes %En + _) enn %En + enn (ia 'En + _) en (o I2n + carp) en @n + enrage %EnreIdZ + enrol %EnroUl + @) enous (_ =@n@s + ost) en (s 'En + en (sig En + ensk (_ 'Ensk + enshrine %EnSraIn + m) entary (_ 'Ent@rI2 + en (ter En + en (tert ,En + enthra (l %EnTrO: + &) entice %EntaIs + _) en (ti %En + _c) enti EntI + en (tity En + en (tran En + en (trec 0n + en (trep ,0n + en (tri En + en (tro En + _) en (try En + _) en (u I2n + @) en (tu 'En + @) en (tous 'En + en (viA En + enviro %EnvaIr@ + en (voy En + en (vy En + en (zy En + &) en (_ @n + &) en (ed_ @n + ene (_ i:n + &) en (er_ @n + sc) en (e i:n + g) en (iA i:n + _s) en (i i:n + en (ia 'i:n + mill) en (ia 'En + engin EndZI2n + l) eni (e i:nI + v) eni (e i:nI + &) en (t_ @n + @) en (tal 'En + en (ti En + en (tial 'En + perc) en (t En + desc) en (t En + asc) en (t En + ns) en (t En + ss) en (t 'En + _res) en (t En + epres) en (t 'En + nt) en (t En + xt) en (t En + v) en (t_ En + lv) en (t_ @n + @@v) en (t_ @n + &) en (th_ @n + &) en (ce_ @n + f) en (ce_ En + g) ener (al En@r + _) en (ough I2n .group eo - @@) eo (_ 'eIoU - g) eo I20 - eo (d_ aU - g) eo (ff E - g) eon @n - ch) eon @n - j) eo (p E - _l) eo i@ - g) eor (gA O@ - p) eo (pl i: - @) eosis i:'oUsIs - &) eous (_ =i@s - th) eo (@ I2@ - th) eo (r i@ - th) eo (logy I'0 - th) eo (logis I'0 - eover oUv@ - eos (_ I2oUz - eoes (_ I2oUz + @@) eo (_ 'eIoU + g) eo I20 + eo (d_ aU + g) eo (ff E + g) eon @n + ch) eon @n + j) eo (p E + _l) eo i@ + g) eor (gA O@ + p) eo (pl i: + @) eosis i:'oUsIs + &) eous (_ =i@s + th) eo (@ I2@ + th) eo (r i@ + th) eo (logy I'0 + th) eo (logis I'0 + eover oUv@ + eos (_ I2oUz + eoes (_ I2oUz .group er - &) er 3 - @@@) er (_$2de 3 // suffix - %C) er (_$3 3 - ll) er (_$2 3 - %C) ers (_$4 3z - ss) er (_$2 3 - all) er (_ 3 - &) er (_ 3 - mb) er (_ 3 - lin) er (_S1 3 - er 3: - _) er (A I2r - _) er 3: - _) err (A Er - _C) err Er - _CC) err Er - erre 'e@ - erred (_ '3:d - er (_ 3: - er (B_ 3: - &) ere (_ 3 - ere (_ 3: - &) er (s_ 3 - g) eral (d Er@L - er (bial '3: - _d) er (b A@ - &) er (A @r - @) er (o_ 'e@r - eri (A 'i@rI2 - er (iC Er - &) er (ing @r - er (ie_ @r - er (ie @r - eries (_S2i z - &) er (ous =@r - m) er (c 3: - p) er (cen 3 - exp) eri (en i@rI2 - _C) er 3: - _h) er (A Er - _CC) er 3: - _qu) er 3: - c) er (am I2r - &) ere (_ 3 - _C) ere (_ i@ - _CC) ere (_ i@ - sph) ere (_ i@ - c) ere (_ 'i@ - i) ere (_ I2e@ - ev) ere (_ i@ - mp) ere (_ e@ - _h) ere i@ - h) ere (f ErI2 - h) ere (di I2rE - h) ere (s Er@ - h) ere (t I2rE - @) er (ence_ r - er (ent_ r - adh) er (e 'i@ - coh) er (e 'i@ - h) er (ed I2r - c) ere (mon ErI2 - h) er (en i@r - st) ereo ErI2oU - _st) er (A Er - m) er (ge '3: - erging '3:dZI2N - v) er (ge '3: - er (ic_ 'Er - er (ical 'Er - p) er (hap 3 - _p) erio (d i@rI2@ - _p) erio (dic i@rI2'0 - ereal 'i@rI2@L - @) er (ity 'Er - &) erise (_ @raIz - &) erize (_ @raIz - &) eris (a @raIz - &) eriz (a @raIz - p) ermea (b 3:mi@ - _f) erme (nt %3:mE - er (nal_ '3: - &) er (n_ 3 - c) er (n_ 3: - er (se 3: - er (sal '3: - @) er (sial '3: - @) er (sy 3: - er (sib 3: - er (sif 3: - er (sion '3: - er (siv 3: - &) er (t_ 3 - conc) er (t_ 3: - er (tion 3: - h) er (tf A@ - c) er (t 3: - asc) er (t 3 - v) er (t 3: - @v) er (t_ 3: - h) erto (_ @tu: - _) er (ud Er - er (ve 3: - s) er (van 3: - ery (_ @rI2 - ery @rI - _v) ery ErI2 - _ev) ery rI2 - qu) ery i@rI2 - z) er (o i@ - _C) er (o_ i@ - er (rA E - err (_ 3: + &) er 3 + @@@) er (_$2de 3 // suffix + %C) er (_$3 3 + ll) er (_$2 3 + %C) ers (_$4 3z + ss) er (_$2 3 + all) er (_ 3 + &) er (_ 3 + mb) er (_ 3 + lin) er (_S1 3 + er 3: + _) er (A I2r + _) er 3: + _) err (A Er + XC) err Er + erre 'e@ + erred (_ '3:d + er (_ 3: + er (B_ 3: + &) ere (_ 3 + ere (_ 3: + &) er (s_ 3 + g) eral (d Er@L + er (bial '3: + _d) er (b A@ + &) er (A @r + @) er (o_ 'e@r + eri (A 'i@rI2 + er (iC Er + &) er (ing @r + er (ie_ @r + er (ie @r + eries (_S2i z + &) er (ous =@r + m) er (c 3: + p) er (cen 3 + exp) eri (en i@rI2 + XC) er 3: + _h) er (A Er + _CC) er (A Er + _qu) er 3: + c) er (am I2r + &) ere (_ 3 + XC) ere (_ i@ + sph) ere (_ i@ + c) ere (_ 'i@ + i) ere (_ I2e@ + ev) ere (_ i@ + mp) ere (_ e@ + _h) ere i@ + h) ere (f ErI2 + h) ere (di I2rE + h) ere (s Er@ + h) ere (t I2rE + @) er (ence_ r + er (ent_ r + adh) er (e 'i@ + coh) er (e 'i@ + h) er (ed I2r + c) ere (mon ErI2 + h) er (en i@r + st) ereo ErI2oU + m) er (ge '3: + erging '3:dZI2N + v) er (ge '3: + er (ic_ 'Er + er (ical 'Er + p) er (hap 3 + _p) erio (d i@rI2@ + _p) erio (dic i@rI2'0 + ereal 'i@rI2@L + @) er (ity 'Er + &) erise (_ @raIz + &) erize (_ @raIz + &) eris (a @raIz + &) eriz (a @raIz + p) ermea (b 3:mi@ + _f) erme (nt %3:mE + er (nal_ '3: + &) er (n_ 3 + c) er (n_ 3: + er (se 3: + er (sal '3: + @) er (sial '3: + @) er (sy 3: + er (sib 3: + er (sif 3: + er (sion '3: + er (siv 3: + &) er (t_ 3 + conc) er (t_ 3: + er (tion 3: + h) er (tf A@ + c) er (t 3: + asc) er (t 3 + v) er (t 3: + @v) er (t_ 3: + h) erto (_ @tu: + _) er (ud Er + er (ve 3: + s) er (van 3: + ery (_ @rI2 + ery @rI + _v) ery ErI2 + _ev) ery rI2 + qu) ery i@rI2 + z) er (o i@ + _C) er (o_ i@ + er (rA E + err (_ 3: .group es - &) es (_$1i z - ese (_ i:z - @n) ese (_ 'i:z - &f) es (_$1 s - &k) es (_$1 s - &p) es (_$1 s - &t) es (_$1 s - &c) es (_$1 I2z - &g) es (_$1 I2z - &ch) es (_$1 I2z - &ph) es (_$1 I2z - neri) es (_$2i z - &s) es (_$1 I2z - &us) es (_$2e I2z - &rus) es (_$2 I2z - &tus) es (_$2 I2z - &ss) es (_$2 I2z - sh) es (_$2 I2z - &th) es (_$1 z - &r) es (_$1 z - &qu) es (_$1 s - &x) es (_$2 I2z - &z) es (_$2 I2z - &C) es (_$1i z - es (carp I2s - es (cape %Es - es (capi %Es - _) es (p@ %Es - es (peci I2s - _) es (pl Es - _) es (tab I2s - es (tate I2s - @) esc (enC 'Es - pr) es (ent Ez - magn) es (i 'i:z - es (ic 'i:z - r) esis (_ 'i:sIs - es (ive 'i:s - h) esion 'i:Z@n - nec) essa (ry @s@ - _ax) es i:z - esopha Is'0f@ - er) ess (_ @s - &tr) ess (_ @s - dist) ess (_ Es - &) es (y_ @s - &) es (t_ @s - Cr) es (t Es - v) es (t+ Es - harv) es (t Is - v) es (ty @s + &) es (_$1i z + ese (_ i:z + @n) ese (_ 'i:z + &f) es (_$1 s + &k) es (_$1 s + &p) es (_$1 s + &t) es (_$1 s + &c) es (_$1 I2z + &g) es (_$1 I2z + &ch) es (_$1 I2z + &ph) es (_$1 I2z + neri) es (_$2i z + &s) es (_$1 I2z + &us) es (_$2e I2z + &rus) es (_$2 I2z + &tus) es (_$2 I2z + &ss) es (_$2 I2z + sh) es (_$2 I2z + &th) es (_$1 z + &r) es (_$1 z + &qu) es (_$1 s + &x) es (_$2 I2z + &z) es (_$2 I2z + &C) es (_$1i z + es (carp I2s + es (cape %Es + es (capi %Es + _) es (p@ %Es + es (peci I2s + _) es (pl Es + _) es (tab I2s + es (tate I2s + @) esc (enC 'Es + pr) es (ent Ez + magn) es (i 'i:z + es (ic 'i:z + r) esis (_ 'i:sIs + es (ive 'i:s + h) esion 'i:Z@n + nec) essa (ry @s@ + _ax) es i:z + esopha Is'0f@ + er) ess (_ @s + &tr) ess (_ @s + dist) ess (_ Es + &) es (y_ @s + &) es (t_ @s + Cr) es (t Es + v) es (t+ Es + harv) es (t Is + v) es (ty @s .group et - _) et (on i:t - @) et (ate It - @) et (ation It - ete (_ i:t - _) et (ern I2t - _) eth (A i:T - eth (ane i:T - _) eth (a ET - eth (ic ET - eth (y i:T - @C) eth (_$3e @T - etta (_ 'Et@ - ette (_ 'Et - pal) ett (e @t - eted (_ I2tId - l) eted (_ 'i:tId - cr) eted (_ 'i:tId - eting (_ I2tIN - l) eting (_ 'i:tIN - m) eter (_ i:t3 - _m) et (ic @t - @) et (_ It - rk) et It - ll) et (_ It - &l) et (_ @t - j) et (_ Et - s) et (_ Et - t) et (_ Et - An) et (_ Et - phab) et (_ Et - ber) et (_ eI - gr) et (+ Et - f) et (a i: - _m) et (e i:t - _p) et (e i:t - et (itor 'Et - m) etre i:t3 - m) etry =@trI2 + _) et (on i:t + @) et (ate It + @) et (ation It + ete (_ i:t + _) et (ern I2t + _) eth (A i:T + eth (ane i:T + _) eth (a ET + eth (ic ET + eth (y i:T + @C) eth (_$3e @T + etta (_ 'Et@ + ette (_ 'Et + pal) ett (e @t + eted (_ I2tId + l) eted (_ 'i:tId + cr) eted (_ 'i:tId + eting (_ I2tIN + l) eting (_ 'i:tIN + m) eter (_ i:t3 + _m) et (ic @t + @) et (_ It + rk) et It + ll) et (_ It + &l) et (_ @t + j) et (_ Et + s) et (_ Et + t) et (_ Et + An) et (_ Et + phab) et (_ Et + ber) et (_ eI + gr) et (+ Et + f) et (a i: + _m) et (e i:t + _p) et (e i:t + et (itor 'Et + m) etre i:t3 + m) etry =@trI2 .group ev - _) ev I2v - _) eve i:v - _) even i:v@n - _) eve (nt I2vE - st) ev (e i:v - ever (_ Ev3 - ever (c ,Ev3 - ever (g Ev3 - ever (l ,Ev3 - ever (m ,Ev3 - f) ever (+ i:v3 - _l) ever i:v3 - cl) ever Ev3 - cl) eve (l i:v - every EvrI2 - l) ev (el Ev - _) ev (i Ev - _) ev (ict I2v - ev (il i:v - _) ev (is I2v - abbr) ev i:v - all) ev i:v + _) ev I2v + _) eve i:v + _) even i:v@n + _) eve (nt I2vE + st) ev (e i:v + ever (_ Ev3 + ever (c ,Ev3 + ever (g Ev3 + ever (l ,Ev3 + ever (m ,Ev3 + f) ever (+ i:v3 + _l) ever i:v3 + cl) ever Ev3 + cl) eve (l i:v + every EvrI2 + l) ev (el Ev + _) ev (i Ev + _) ev (ict I2v + ev (il i:v + _) ev (is I2v + abbr) ev i:v + all) ev i:v .group ex - _) ex %Eks - excav Eksk@v - _) exc (e %Eks - exc (i %Eks - exc (elle Eks - exe (cutio EksI - ex (erc Eks - _) ex (A %Egz - _) exh %Egz - _) ex (it Egz - exor (c Eks3 - exped (it Eksp@d - ex (pert Eks - experim %EkspErIm - @) ex (ia 'Eks - ss) ex (_ Iks - exter (C Ekst'3: - extra (pol Ekstr'a - extra Ekstr@ - extra (n EkstreI - extra (or %Ekstr - extra (ct Ekstra - extrava (g %Ekstrav@ + _) ex %Eks + excav Eksk@v + _) exc (e %Eks + exc (i %Eks + exc (elle Eks + exe (cutio EksI + ex (erc Eks + _) ex (A %Egz + _) exh %Egz + _) ex (it Egz + exor (c Eks3 + exped (it Eksp@d + ex (pert Eks + experim %EkspErIm + @) ex (ia 'Eks + ss) ex (_ Iks + exter (C Ekst'3: + extra (pol Ekstr'a + extra Ekstr@ + extra (n EkstreI + extra (or %Ekstr + extra (ct Ekstra + extrava (g %Ekstrav@ .group ey - &) ey (_ I2 - @) ey (C@ I - Cv) ey (_ eI - _C) ey eI - _CC) ey eI - _ab) ey eI - _k) ey (+ i: - ey aI - ey (an eI - _) eye aI - eye eI - @m) eyer (_ aI3 - eyor (_ 'eI3 + &) ey (_ I2 + @) ey (C@ I + Cv) ey (_ eI + XC) ey eI + _ab) ey eI + _k) ey (+ i: + ey aI + ey (an eI + _) eye aI + eye eI + @m) eyer (_ aI3 + eyor (_ 'eI3 .group f - f f - f (f - fa (ciA feI - fa (miliar f@ - er) fed (_ fEd - _) fi (tz@ fI2 - for (bid f@ - for (bad f@ - for (see f%O@ - ft (en f + f f + f (f + fa (ciA feI + fa (miliar f@ + er) fed (_ fEd + _) fi (tz@ fI2 + for (bid f@ + for (bad f@ + for (see f%O@ + ft (en f .group g - g g - gg g - g (e dZ - _) gaol dZeIl - g) ged (_ gId - g (eek g - geous dZ=@s - g (E dZ - g (i dZ - gi (_ gI2 - _) g (il g - l) ging dZI2N - g (y dZ - _) g (n - exa) gg (er dZ - ght t - _) gh g - gh (_ g - C) gh (A g - gh (C g - gm (_ m - gn (_ n - _) gnu g@nu: - hun) g g - g (ear g - g (et g - g (ette_ dZ - ve) g (et dZ - o) g (et dZ - er) g (et dZ - for) ge (t gE - &) gia (_ dZ@ - &) gia (C_ dZ@ - &) giu (m dZ@ - _) g (id g - _) g (im g - _) giga gIg@ - g (igg g - g (ilt g - r) ging dZI2N - g (ift g - g (ird g - g (irl g - g (irt g - g (ive g - @) guay (_ gwaI - gue (_ g - _) gue gE - _) guer (n g3: - ar) gue gju: + g g + gg g + g (e dZ + _) gaol dZeIl + g) ged (_ gId + g (eek g + geous dZ=@s + g (E dZ + g (i dZ + gi (_ gI2 + _) g (il g + l) ging dZI2N + g (y dZ + _) g (n + exa) gg (er dZ + ght t + _) gh g + gh (_ g + C) gh (A g + gh (C g + gm (_ m + gn (_ n + _) gnu g@nu: + hun) g g + g (ear g + g (et g + g (ette_ dZ + ve) g (et dZ + o) g (et dZ + er) g (et dZ + for) ge (t gE + &) gia (_ dZ@ + &) gia (C_ dZ@ + &) giu (m dZ@ + _) g (id g + _) g (im g + _) giga gIg@ + g (igg g + g (ilt g + r) ging dZI2N + g (ift g + g (ird g + g (irl g + g (irt g + g (ive g + @) guay (_ gwaI + gue (_ g + _) gue gE + _) guer (n g3: + ar) gue gju: .group h - h h - h (h - h (_ - _B) h - &) ham (_ @m - @) hammed h'amId - A) han (_ h'an // places - ha (st heI - _) he' %hi: - @) head (_$4 hEd - heir e@ - _) hetero hEtroU - K) hl L - &) hold (_$4 hoUld - holme hoUm - _) h (our - _) h (ono - hone (st 0nI - _) horri h0rI - _) horse hO@s - _) house (@ haUs - house (_$5 haUs - houses (_$6 haUzI2z + h h + h (h + h (_ + _B) h + &) ham (_ @m + @) hammed h'amId + A) han (_ h'an // places + ha (st heI + _) he' %hi: + @) head (_$4 hEd + heir e@ + _) hetero hEtroU + K) hl L + &) hold (_$4 hoUld + holme hoUm + _) h (our + _) h (ono + hone (st 0nI + _) horri h0rI + _) horse hO@s + _) house (@ haUs + house (_$5 haUs + houses (_$6 haUzI2z .group i - i I - _) i' %aI - _C) i (_ aI - _CC) i (_ aI - b) i (_ aI - c) i (_ aI - c) is (_ Is - @@h) i (_ =I2 - h) i (_ =aI - &sk) i (_ =I2 - i (CCi_ 'I - _C) i (Ca_ i: - i (Be# aI - i (Bee I - i (Bel_ I - i (Bet_ I - @) i (Cer I - _C) i (Cer_ aI - _CC) i (Cer_ aI - i (ani_ I - i (ber_ aI - i (der+_ aI - @) i (Cing aI - &) i (Cent I - &) i (Cenc I - _) i (Cy_ aI - _C) i (Cy_ aI - _p) i (ty_ I - _CC) i (Cy_ aI - ntell) i I - @) ing (_+$3dve I2N - @) ings (_$4dve I2Nz - @) ingly (_$5dve I2Ng-lI - @) ingment (_$7dve I2Ng-m@nt - logu) ing (_$4v I2N - @@om) ing (_$3dv I2N - en) ing (_$3v I2N - en) ings (_$4v I2Nz - en) ingly (_$5vf I2Ng-lI - er) ing (_$3v I2N - er) ings (_$4v I2Nz - er) ingly (_$5vf I2Ng-lI - er) ingment (_$7v I2Ng-m@nt - Br) ing (_ IN - _) i (a aI - _) i (b aI - _) i (c aI - _) i (d aI - i (deo I - _) i (di I - C) i (ler aI - _) i (o aI - &) ial (_ =I2@l - @) ibab aIb@b - @) ible (_$4ev @b@L - @) ibly (_$4efv @blI2 - i (bilit I - l) i (bel aI - b) i (ble_ aI - i (bo_ i: - v) i (br aI - f) i (bre aI - _l) i (br aI - _l) i (bre i: - l) i (ber I - scr) i (ber aI - @) i (butive 'I - @) i (butor 'I - &) i (c_ =I - &) i (ca_ =I - &) i (cal =I - i (cial 'I - ician 'IS@n - @) i (ce_ I - @) i (ced_ I - @) i (cence I - pr) i (ce aI - ent) i (ce aI - adv) i (ce aI - dev) i (ce aI - _) ich Ik - @) i (cip 'I - i (cus_ =I - _) id (_ aIdi: - idea aId'i@ - acc) i (d I - c) i (dal 'aI - fr) i (day aI - _) i (dle aI - br) i (dl aI - f) i (del I2 - br) i (dA aI - br) i (dg I - ybr) i (d I - _s) i (der aI - i (der_+ aI - @) i (do_ 'i: - ifier (_ IfaI@ - man) ife (s IfE - &) ify (_ =I2faI - if (icAnC 'If - r) i (fl aI - st) i (fl aI - n) ihi aI|@ - ii (_ IaI - f) i (j i: - h) i (j aI - @) illa (_ 'Il@ - @) ila (_ 'Il@ - _) il (l I2 - _) ill (_ Il - _) il (ln I - _) il (lust I - _C) i (lage aI - ch) i (ld aI - ch) i (ldr I - _m) i (ld aI - _w) i (ld aI - w) i (lderC I - i (leA I - &) ile (ge @lI - sacr) ile IlI - @) i (less I - s) i (len aI - _C) i (lo aI - _k) i (lo I - _l) i (Cy_ I - &) ily (_ I2lI2 - l) i (m@ I - cl) i (m aI - l) ime aIm - l) i (mer I - d) ime (ns aImE - im (ent+ Im - ime (ter_ Imi: - ime (tre Imi: - @) i (metr I - s) imile 'ImI2lI2 - _pr) i (ma aI - sh) i (ma_ 'i: - i (mum I - @) i (ness I - io (_ =I2oU -?7 io (_ =i:oU - b) io aIoU - b) io (logy aI0 - v) io aI0 - i (o I2 -?7 i (o i: - io (li_ I2'oU - &) ion (_ =i@n - n) ion =i@n - v) io (l aI@ - g) io (n @ - m) io (n I20 - sh) io (n @ - _) io (n aI0 - _l) io (n aI@ - z) io (n aI@ - r) ior (_ I3 - &) ior (+ i@ - &) ior (_ j3 - iority I'0rItI2 - iou (rA j@ - iour (K j3 - @) ious (_ =I2@s - _r) io (t aI@ - io (t_ I|@ - ipede Ipi:d - _s) i (ph aI - i (que_ 'i: - i (qu_ i: - mun) ique IkeI - iquette I2kEt - @) i (scenC 'I - &) i (zabl aI - &) i (sabl aI - @) is (co_ 'Is - _) is (lan aI - _) is (le aI - _) is (o aIs - is (o_ aIz - ise (_ aIz - iser (_ aIz3 - @) ism (_$3de Iz@m - an) ism (_$3d Iz@m - @iB) ism (_$3d Iz@m - is (er+_ aIz - iz (er_ aIz - prAm) is Is - @Cs) is (_ =Is - ize (_ aIz - ise (d_ aIz - ize (d_ aIz - isa (tion aIzeI - iza (tion aIzeI - _d) i (se I2 - &) ish (_ I2S - i (sive aI - is (land aI - is (le_ aI - @) iste (_ 'i:st - @) is (tic 'Is - chr) i (st_ aI - adv) is aIz - v) is (coun aI - is (or_ aIz - issimo (_ 'IsImoU - @) istan (_ =Istan - @) istani (_ Ist'A:nI2 - r) is (y_ =@s - ithe (_ aID - i (tion 'I - &) ius I2@s - &) iu (m =i@ - i (wo 'i: - C) i (x++ I - s) i (zA aI - p) izz (a i:t|s + i I + _) i' %aI + XC) i (_ aI + b) i (_ aI + c) i (_ aI + c) is (_ Is + @@h) i (_ =I2 + h) i (_ =aI + &sk) i (_ =I2 + i (CCi_ 'I + XC) i (Ca_ i: + XC) i (Co_ i: + i (Be# aI + i (Bee I + i (Bel_ I + i (Bet_ I + @) i (Cer I + XC) i (Cer_ aI + i (ani_ I + i (ber_ aI + i (der+_ aI + @) i (Cing aI + &) i (Cent I + &) i (Cenc I + _) i (Cy_ aI + XC) i (Cy_ aI + _p) i (ty_ I + ntell) i I + _) i (a aI + _) i (b aI + _) i (c aI + _) i (d aI + i (deo I + _) i (di I + C) i (ler aI + _) i (o aI + &) ial (_ =I2@l + @) ibab aIb@b + @) ible (_$4ev @b@L + @) ibly (_$4efv @blI2 + i (bilit I + l) i (bel aI + b) i (ble_ aI + i (bo_ i: + v) i (br aI + f) i (bre aI + _l) i (br aI + _l) i (bre i: + l) i (ber I + scr) i (ber aI + @) i (butive 'I + @) i (butor 'I + &) i (c_ =I + &) i (ca_ =I + &) i (cal =I + i (cial 'I + ician 'IS@n + @) i (ce_ I + @) i (ced_ I + @) i (cence I + pr) i (ce aI + ent) i (ce aI + adv) i (ce aI + dev) i (ce aI + _) ich Ik + @) i (cip 'I + i (cus_ =I + _) id (_ aIdi: + idea aId'i@ + acc) i (d I + c) i (dal 'aI + fr) i (day aI + _) i (dle aI + br) i (dl aI + f) i (del I2 + br) i (dA aI + br) i (dg I + ybr) i (d I + _s) i (der aI + i (der_+ aI + @) i (do_ 'i: + ifier (_ IfaI@ + man) ife (s IfE + &) ify (_ =I2faI + if (icAnC 'If + r) i (fl aI + st) i (fl aI + n) ihi aI|@ + ii (_ IaI + f) i (j i: + h) i (j aI + @) illa (_ 'Il@ + @) ila (_ 'Il@ + _) il (l I2 + _) ill (_ Il + _) il (ln I + _) il (lust I + _C) i (lage aI + ch) i (ld aI + ch) i (ldr I + _m) i (ld aI + _w) i (ld aI + w) i (lderC I + i (leA I + &) ile (ge @lI + sacr) ile IlI + @) i (less I + s) i (len aI + _C) i (lo aI + _k) i (lo I + _l) i (Cy_ I + &) ily (_ I2lI2 + l) i (m@ I + cl) i (m aI + l) ime aIm + l) i (mer I + d) ime (ns aImE + im (ent+ Im + ime (ter_ Imi: + ime (tre Imi: + @) i (metr I + s) imile 'ImI2lI2 + _pr) i (ma aI + sh) i (ma_ 'i: + i (mum I + @) i (ness I + io (_ =I2oU +?7 io (_ =i:oU + b) io aIoU + b) io (logy aI0 + v) io aI0 + i (o I2 +?7 i (o i: + io (li_ I2'oU + &) ion (_ =i@n + n) ion =i@n + v) io (l aI@ + g) io (n @ + m) io (n I20 + sh) io (n @ + _) io (n aI0 + _l) io (n aI@ + z) io (n aI@ + r) ior (_ I3 + &) ior (+ i@ + &) ior (_ j3 + iority I'0rItI2 + iou (rA j@ + iour (K j3 + @) ious (_ =I2@s + _r) io (t aI@ + io (t_ I|@ + ipede Ipi:d + _s) i (ph aI + i (que_ 'i: + i (qu_ i: + mun) ique IkeI + iquette I2kEt + @) i (scenC 'I + &) i (zabl aI + &) i (sabl aI + @) is (co_ 'Is + _) is (lan aI + _) is (le aI + _) is (o aIs + is (o_ aIz + ise (_ aIz + iser (_ aIz3 + @) ism (_$3de Iz@m + an) ism (_$3d Iz@m + @iB) ism (_$3d Iz@m + is (er+_ aIz + iz (er_ aIz + prAm) is Is + @Cs) is (_ =Is + ize (_ aIz + ise (d_ aIz + ize (d_ aIz + isa (tion aIzeI + iza (tion aIzeI + _d) i (se I2 + &) ish (_ I2S + i (sive aI + is (land aI + is (le_ aI + @) iste (_ 'i:st + @) is (tic 'Is + chr) i (st_ aI + adv) is aIz + v) is (coun aI + is (or_ aIz + issimo (_ 'IsImoU + @) istan (_ =Istan + @) istani (_ Ist'A:nI2 + r) is (y_ =@s + ithe (_ aID + i (tion 'I + &) ius I2@s + &) iu (m =i@ + i (wo 'i: + C) i (x++ I + s) i (zA aI + p) izz (a i:t|s .group ia - _C) ia aI|@ - _CC) ia aI|@ - &) iac (_ =Iak - C) iar aI@ - iar (iC Iar - &) iary =j@rI2 - &l) iary =i@rI2 - _) ian i@n - @) ia (_ =i:@ - @@) ia (_ =i@ - @) ian (cy I|@n - l) iais I2|eIz - p) ia (no Ia - f) ia (b aI@ - r) ia (b I2@ - t) ia (b I2@ - &) iage (_ IdZ - iah (_ 'aI@ - ia (m I2@ - &) ia (n i@ - &) ia (n@ I'a - ia (ng_ ja - _f) ia (nc I'0 - _f) iance I'0nseI - ef) ia (nce 'aI@ - l) ia (nce 'aI@ - ill) ia (nce I2@ - f) ia (nt 'aI@ - pl) ia (nt 'aI@ - ill) ia (nt I2@ - al) ia (nt I2@ - _p) ia (nA i@ - iar aI@ - @l) iar (_ i@ - iara (_ I'A:r@ - iarch I2A@k - iard (_ I23d - iai I2aI - @) iate (_ =I2eIt - opr) iate (_ I|@t - iath 'aI@T - @) ia (tive =i@ + XC) ia aI|@ + &) iac (_ =Iak + C) iar aI@ + iar (iC Iar + &) iary =j@rI2 + &l) iary =i@rI2 + _) ian i@n + @) ia (_ =i:@ + @@) ia (_ =i@ + @) ian (cy I|@n + l) iais I2|eIz + p) ia (no Ia + f) ia (b aI@ + r) ia (b I2@ + t) ia (b I2@ + &) iage (_ IdZ + iah (_ 'aI@ + ia (m I2@ + &) ia (n i@ + &) ia (n@ I'a + ia (ng_ ja + _f) ia (nc I'0 + _f) iance I'0nseI + ef) ia (nce 'aI@ + l) ia (nce 'aI@ + ill) ia (nce I2@ + f) ia (nt 'aI@ + pl) ia (nt 'aI@ + ill) ia (nt I2@ + al) ia (nt I2@ + _p) ia (nA i@ + iar aI@ + @l) iar (_ i@ + iara (_ I'A:r@ + iarch I2A@k + iard (_ I23d + iai I2aI + @) iate (_ =I2eIt + opr) iate (_ I|@t + iath 'aI@T + @) ia (tive =i@ .group ie - ie I - ie (_ I2 - _) ie (_ aIi: - ied (_$2i d // suffix - ie (c aI - ie (ce i: - _C) ie (_ aI - _r) ie i: - iedly IdlI2 - _z) ie i: - p) ie (_ aI - pp) ie (_ I2 - ie (f i: - iege i:dZ - ie (go I'eI - ieh (C i: - iei (_ i:aI - iej i:'eI - ie (k i: - ie (l i: - ie (llA I2'E - n) iel (_ I2@L - &r) iel (_ =i:@L - ie (n i@ - ie (ntal I'E - g) ie (n i: - _sc) ie (n aI@ - ie (nCiA I2'E - fr) ie (nd E - f) ie (nd i: - @) ienne (_ I'En - cl) ie (nt aI@ - &) ier (y I2@r - ier i@ - ier (_ i@ - _h) ie (r aI@ - pl) ier (_ aI@ - _Cr) ier aI@ - ier (c i@ - ierre (_ I2e@ - ie (t aI@ - @) ie (th i@ - iesta i:'Est@ - iette I2'Et - @) iety 'aI@tI2 - l) ieu u: - l) ieu (te %Ef - med) ie (val I2i: - ie (v i: - iew (_ ju: - iew ju: - ies (_$2i z - spec) ies (_ i:z - ser) ies (_ i:z - _ar) ies (_ i:z - iesc I2Es - &) ie (st_ I2@ - pr) ie (st i: - _v) ie (t %i@ - ie (ve i: - s) ie (ve I - ie (z i: + ie I + ie (_ I2 + _) ie (_ aIi: + ied (_$2i d // suffix + ie (c aI + ie (ce i: + ie (_ aI + &) ie (_ I2 + _r) ie i: + iedly IdlI2 + _z) ie i: + p) ie (_ aI + pp) ie (_ I2 + ie (f i: + iege i:dZ + ie (go I'eI + ieh (C i: + iei (_ i:aI + iej i:'eI + ie (k i: + ie (l i: + ie (llA I2'E + n) iel (_ I2@L + &r) iel (_ =i:@L + ie (n i@ + ie (ntal I'E + g) ie (n i: + _sc) ie (n aI@ + ie (nCiA I2'E + fr) ie (nd E + f) ie (nd i: + @) ienne (_ I'En + cl) ie (nt aI@ + &) ier (y I2@r + ier i@ + &) ier (_NS2i @ + _h) ie (r aI@ + pl) ier (_ aI@ + _Cr) ier aI@ + ier (c i@ + ierre (_ I2e@ + ie (t aI@ + @) ie (th i@ + iesta i:'Est@ + iette I2'Et + @) iety 'aI@tI2 + l) ieu u: + l) ieu (te %Ef + med) ie (val I2i: + ie (v i: + iew (_ ju: + iew ju: + ies (_$2i z + spec) ies (_ i:z + ser) ies (_ i:z + _ar) ies (_ i:z + iesc I2Es + &) iest (_S3i @st + pr) ie (st i: + _v) ie (t %i@ + ie (ve i: + s) ie (ve I + ie (z i: .group ig - am) ig (a_ i:g - t) ig (e+ aIg - t) ig (r aIg - igh (t aI - h) igh aI - n) igh aI - s) igh aI - &) igib IdZ@b - igm (_ aIm - ign (_ aIn - ign (C aIn - n) igan (_ =Ig@n - @) ig (ne aI - @) ig (n_ aI - d) ig (nA Ig - _) ig (ni I2g - ig (no I2g - ig (noran Ig - ig (na Ig - _m) ig (ra aIg - _m) ig (rat %aIg - igu (e 'i:g - igu (_ 'i:g + am) ig (a_ i:g + t) ig (e+ aIg + t) ig (r aIg + igh (t aI + h) igh aI + n) igh aI + s) igh aI + &) igib IdZ@b + igm (_ aIm + ign (_ aIn + ign (C aIn + n) igan (_ =Ig@n + @) ig (ne aI + @) ig (n_ aI + d) ig (nA Ig + _) ig (ni I2g + ig (no I2g + ig (noran Ig + ig (na Ig + _m) ig (ra aIg + _m) ig (rat %aIg + igu (e 'i:g + igu (_ 'i:g .group im - _) im (@ I2m - im (age Im - im (it Im - _) imm (@ I2m - imm (at ,Im - imm (em ,Im - imm (ig Im - imm (in Im - imm (unis Im - @) imous (_ =Im@s - im (pac Im - im (pecu ,Im - imper (C@ I2mp3: - im (petus Im - im (plant_ Im - im (ple Im - im (plica Im - impo (ten Imp@ - im (portu ,Im - im (pregna ,Im - im (presa ,Im - im (provis Im - im (pulse_ Im + _) im (@ I2m + im (age Im + im (it Im + _) imm (@ I2m + imm (at ,Im + imm (em ,Im + imm (ig Im + imm (in Im + imm (unis Im + @) imous (_ =Im@s + im (pac Im + im (pecu ,Im + imper (C@ I2mp3: + im (petus Im + im (plant_ Im + im (ple Im + im (plica Im + impo (ten Imp@ + im (portu ,Im + im (pregna ,Im + im (presa ,Im + im (provis Im + im (pulse_ Im .group in -?7 &) in (_ @n - _) in (@P2 I2n - _) in (b In - _) in (can In - _) in (cens In - _) in (ch In - inci (de InsI - _) in (comA In - _) in (corp I2n - _) in (cre In - _) in (cred I2n - increm InkrIm - _) in (cub In - _) in (cul In - _) in (deP2 ,In - _) ind (efin I2nd - in (dex In - in (dia In - _) in (dic In - _) indi (ge ,IndI2 - _) in (digo In - _) in (dir In - _) in (disP2 ,In - _) in (divP2 ,In - _) in (dol In - in (exP2 ,In - _) inex (or In'Eks - _) infa (l I2nfa - _) in (fam In - _) infan Inf@n - _) in (fid In - _) in (fil In - in (finite In - _) in (flo In - _) in (flu In - _) in (fo_ In - _) infra (P5 ,Infr@ - _) infra (c I2nfrak - in (got IN - _) in (gro IN - _) in (jur In - _) in (k IN - _) in (l In - _) in (m In - _) inno (ce In@ - _) inno (v In@ - _) inn (um I2n - _) in (of In - _) in (org In - _) in (p In - _) in (que In - _) in (quis In - _) in (r In - in (sect In - _) in (secP2 ,In - _) in (set In - _) in (sh In - _) in (sigh In - _) in (signifP2 ,In - _) in (sincP2 ,In - _) in (sof In - _) in (sola In - _) in (sole In - _) in (somu In - _) in (spir In - _) in (stan In - _) in (sti In - _) in (stil I2n - _) in (strum In - _) in (sub In - _) in (sul In - _) in (tak In - _) in (teg In - _) in (tegri I2n - inte (llec Int@ - _) inter (@P5 ,Int3 // prefix - _) inter (AP5 ,Int@r - inter (est Int@r - interfer Int@f'i@ - _) int (erio+ I2nt - _) inter (n_ I2nt3: - _) inter (nal I2nt3: - _) inter (pr I2nt3: - _) inter (pol@ I2nt3: - interpre (t I2nt3:prI - _) inter (rog I2ntE - inter (view Int3 - _) in (tima In - intrigu Intr'i:g - intrica IntrIk@ - _) in (tona In - _) intro (@ ,Intr@ - _) intro (v Intr@ - _) in (un In - _) in (voi In - _) in (wa In - @) inous (_ =In@s - _m) ini InI - adm) ini InI - m) iniatur InItS3 - m) inera (l In@r@ - &m) inal (_ =In@L - f) in (a aIn - g) in (a_ aIn - ch) in (a aIn - k) in (a_ 'i:n - l) in (a_ 'i:n - r) in (a_ 'i:n - t) in (a_ 'i:n - @) in (ate =In - @) in (cial 'In - b) in (d aIn - f) in (d aIn - h) in (d_ aIn - @) inda (_ 'Ind@ - h) in (dB aIn - sh) in (i aIn - @f) ini (te In@ - beh) in (d aIn - k) in (d aIn - k) in (dl In - k) in (dr In - k) in (derg In - bl) in (d aIn - m) in (d aIn - _r) in (d aIn - gr) in (d aIn - w) in (der_ aIn - w) in (ding aIn - rew) in (d aIn - unw) in (d aIn - v) in (eg In - in (ea In - in (ee In - c) in (e In - inc) in (e In - bas) in (_ @n - @c) ine (_ i:n - &d) ine (_ i:n - Ach) ine (_ i:n - ph) ine (_ i:n - nal) ine (_ In - il) ine (_ i:n - ol) ine (_ i:n - ul) ine (_ In - p) ine (_ aIn - erm) ine (_ In - @r) ine (_ i:n - cr) ine (_ aIn - @t) ine (_ i:n - @@ent) ine (_ aIn - z) ine (_ i:n - xam) in (e In - nfr) ing IndZ - @) ini (_ 'i:nI - tr) in (i In - &) inin (_ =@nIn - &) in (enC In - inism (_ InIz@m - infor (matio Inf3 - ino (_ 'i:noU - _m) in (us aIn - _) intra Intr@ - _) intra (CC I2ntra + @) ing (_+$3dve I2N + @) ings (_$4dve I2Nz + @) ingly (_$5dve I2Ng-lI + @) ingment (_$7dve I2Ng-m@nt + logu) ing (_$4v I2N + x) ing (_+$3v I2N + @@om) ing (_$3dv I2N + en) ing (_$3v I2N + en) ings (_$4v I2Nz + en) ingly (_$5vf I2Ng-lI + er) ing (_$3v I2N + er) ings (_$4v I2Nz + er) ingly (_$5vf I2Ng-lI + er) ingment (_$7v I2Ng-m@nt + Br) ing (_ IN + +?7 &) in (_ @n + _) in (@P2 I2n + _) in (b In + _) in (can In + _) in (cens In + _) in (ch In + inci (de InsI + _) in (comA In + _) in (corp I2n + _) in (cre In + _) in (cred I2n + increm InkrIm + _) in (cub In + _) in (cul In + _) in (deP2 ,In + _) ind (efin I2nd + in (dex In + in (dia In + _) in (dic In + _) indi (ge ,IndI2 + _) in (digo In + _) in (dir In + _) in (disP2 ,In + _) in (divP2 ,In + _) in (dol In + in (exP2 ,In + _) inex (or In'Eks + _) infa (l I2nfa + _) in (fam In + _) infan Inf@n + _) in (fid In + _) in (fil In + in (finite In + _) in (flo In + _) in (flu In + _) in (fo_ In + _) infra (P5 ,Infr@ + _) infra (c I2nfrak + in (got IN + _) in (gro IN + _) in (jur In + _) in (k IN + _) in (l In + _) in (m In + _) inno (ce In@ + _) inno (v In@ + _) inn (um I2n + _) in (of In + _) in (org In + _) in (p In + _) in (que In + _) in (quis In + _) in (r In + in (sect In + _) in (secP2 ,In + _) in (set In + _) in (sh In + _) in (sigh In + _) in (signifP2 ,In + _) in (sincP2 ,In + _) in (sof In + _) in (sola In + _) in (sole In + _) in (somu In + _) in (spir In + _) in (stan In + _) in (sti In + _) in (stil I2n + _) in (strum In + _) in (sub In + _) in (sul In + _) in (tak In + _) in (teg In + _) in (tegri I2n + inte (llec Int@ + _) inter (@P5 ,Int3 // prefix + _) inter (AP5 ,Int@r + inter (est Int@r + interfer Int@f'i@ + _) int (erio+ I2nt + _) inter (n_ I2nt3: + _) inter (nal I2nt3: + _) inter (pr I2nt3: + _) inter (pol@ I2nt3: + interpre (t I2nt3:prI + _) inter (rog I2ntE + inter (view Int3 + _) in (tima In + intrigu Intr'i:g + intrica IntrIk@ + _) in (tona In + _) intro (@ ,Intr@ + _) intro (v Intr@ + _) in (un In + _) in (voi In + _) in (wa In + @) inous (_ =In@s + _m) ini InI + adm) ini InI + m) iniatur InItS3 + m) inera (l In@r@ + &m) inal (_ =In@L + f) in (a aIn + g) in (a_ aIn + ch) in (a aIn + k) in (a_ 'i:n + l) in (a_ 'i:n + r) in (a_ 'i:n + t) in (a_ 'i:n + @) in (ate =In + @) in (cial 'In + b) in (d aIn + f) in (d aIn + h) in (d_ aIn + @) inda (_ 'Ind@ + h) in (dB aIn + sh) in (i aIn + @f) ini (te In@ + beh) in (d aIn + k) in (d aIn + k) in (dl In + k) in (dr In + k) in (derg In + bl) in (d aIn + m) in (d aIn + _r) in (d aIn + gr) in (d aIn + w) in (der_ aIn + w) in (ding aIn + rew) in (d aIn + unw) in (d aIn + v) in (eg In + in (ea In + in (ee In + c) in (e In + inc) in (e In + bas) in (_ @n + @c) ine (_ i:n + &d) ine (_ i:n + Ach) ine (_ i:n + ph) ine (_ i:n + nal) ine (_ In + il) ine (_ i:n + ol) ine (_ i:n + ul) ine (_ In + p) ine (_ aIn + erm) ine (_ In + @r) ine (_ i:n + cr) ine (_ aIn + @t) ine (_ i:n + @@ent) ine (_ aIn + z) ine (_ i:n + xam) in (e In + nfr) ing IndZ + @) ini (_ 'i:nI + tr) in (i In + &) inin (_ =@nIn + &) in (enC In + inism (_ InIz@m + infor (matio Inf3 + ino (_ 'i:noU + _m) in (us aIn + _) intra Intr@ + _) intra (CC I2ntra .group ir - _) ir (a I2r - ir (a_ 'i@r - ir (able 'aI@ - m) ir (ac Ir - sp) ir (al aI@r - @) ir (ation Ir - ir (at %aIr - ire aI@ - s) ir (en aI@ - c) ire (n aIr@ - ir (ect %aIr - ir (ety aIr - irer (_ aI@r@ - ir 3: -?5 ir IR - @C) ir (_ i@ - st) ir (_ 3: -?5 st) ir (_ IR - ir (i Ir - ir (i_ 'i@r - asp) ir (i r - _) ir (ish aIr - ir (o I2r - g) ir (o aIr - _C) ir (o_ aIr - @) ir (o_ 'i@ - _) iron aI@n - iron (A aIr'0n - v) iro (n aIr@ - p) ir Ir - _p) ira (c aI@ - p) ire aI@ - des) ir aI@ - _) irre (C ,IrI - irr (econ I2r - _) irr (egu I2r - _) irr (ele I2r - irr (eso I2r - irr (evere I2r - irr (evoc I2r - _) ir (rA I - ir (ro I - ir (ru I - iry (_ aI@rI2 + _) ir (a I2r + ir (a_ 'i@r + ir (able 'aI@ + m) ir (ac Ir + sp) ir (al aI@r + @) ir (ation Ir + ir (at %aIr + ire aI@ + s) ir (en aI@ + c) ire (n aIr@ + ir (ect %aIr + ir (ety aIr + irer (_ aI@r@ + ir 3: +?5 ir IR + @C) ir (_ i@ + st) ir (_ 3: +?5 st) ir (_ IR + ir (i Ir + ir (i_ 'i@r + asp) ir (i r + _) ir (ish aIr + ir (o I2r + g) ir (o aIr + _C) ir (o_ aIr + @) ir (o_ 'i@ + _) iron aI@n + iron (A aIr'0n + v) iro (n aIr@ + p) ir Ir + _p) ira (c aI@ + p) ire aI@ + des) ir aI@ + _) irre (C ,IrI + irr (econ I2r + _) irr (egu I2r + _) irr (ele I2r + irr (eso I2r + irr (evere I2r + irr (evoc I2r + _) ir (rA I + ir (ro I + ir (ru I + iry (_ aI@rI2 .group it - _) it' I2t - _m) it (o aIt - it (o_ 'i:t - _C) ity (_ ItI2 - _ed) it It - cred) it It - v) it (al aIt - t) it (l aIt - &) ity (_ =ItI2 - orb) it It - @@) it (an_ =It - gran) it (e It - nfin) it (e It - ur) it (e It - pos) it (e It - quis) it (e It - &) it (e_ It - &) it (e_N aIt - &) ites (_ aIts - pos) ites (_ Its - c) it (e_ aIt - c) it (er_ aIt - v) it (er_ aIt - am) it (e aIt - un) it (e aIt - _sp) it (e aIt - _s) it (e aIt - x) ite (_ aIt - it (erat It - l) it (er It - wr) it (er aIt - ithe_ aID - l) ithe aID - _sl) ith ID - it (i_ 'i:t - itius (_ 'IS@s - itis (_ 'aItIs - &) itous =It@s - l) itre i:t3 - n) it (rA aIt - n) itro aItroU - n) itro (ge aItr@ - it (um aIt + _) it' I2t + _m) it (o aIt + it (o_ 'i:t + _C) ity (_ ItI2 + _ed) it It + cred) it It + v) it (al aIt + t) it (l aIt + &) ity (_ =ItI2 + orb) it It + @@) it (an_ =It + gran) it (e It + nfin) it (e It + ur) it (e It + pos) it (e It + quis) it (e It + &) it (e_ It + &) it (e_N aIt + &) ites (_ aIts + pos) ites (_ Its + c) it (e_ aIt + c) it (er_ aIt + v) it (er_ aIt + am) it (e aIt + un) it (e aIt + _sp) it (e aIt + _s) it (e aIt + x) ite (_ aIt + it (erat It + l) it (er It + wr) it (er aIt + ithe_ aID + l) ithe aID + _sl) ith ID + it (i_ 'i:t + itius (_ 'IS@s + itis (_ 'aItIs + &) itous =It@s + l) itre i:t3 + n) it (rA aIt + n) itro aItroU + n) itro (ge aItr@ + it (um aIt .group iv - @) iva (_ 'aIv@ - @) iv (e Iv - iv (e# aIv - h) iv (e_ aIv - l) ive (l aIv - l) iv (en aIv - r) ival aIv@L - ct) iv (al 'aIv - v) iv (al 'aIv - ive (ness Iv - _al) iv (e aIv - _arr) iv (e aIv - dr) iv (e_ aIv - contr) iv (e 'aIv - depr) iv (e aIv - der) iv (e aIv - _r) iv (er_ Iv - r) iv (el Iv - r) iv (en Iv - r) iv (et Iv - _l) iv (el aIv - _C) iv (el Iv - _CC) iv (el Iv - _g) iv (e Iv - _l) iv (e Iv - r) iv (er Iv - dr) iv (er aIv - sh) iv (er Iv - v) iv (e aIv - _CC) iv (en Iv - _CCC) iv (en Iv - iv (or_ aIv + @) iva (_ 'aIv@ + @) iv (e Iv + iv (e# aIv + h) iv (e_ aIv + l) ive (l aIv + l) iv (en aIv + r) ival aIv@L + ct) iv (al 'aIv + v) iv (al 'aIv + ive (ness Iv + _al) iv (e aIv + _arr) iv (e aIv + dr) iv (e_ aIv + contr) iv (e 'aIv + depr) iv (e aIv + der) iv (e aIv + _r) iv (er_ Iv + r) iv (el Iv + r) iv (en Iv + r) iv (et Iv + _l) iv (el aIv + XC) iv (el Iv + _g) iv (e Iv + _l) iv (e Iv + r) iv (er Iv + dr) iv (er aIv + sh) iv (er Iv + v) iv (e aIv + XCC) iv (en Iv + iv (or_ aIv .group j - j dZ - j (j - _) jere (C dZEr@ - _) jes (ui dZEz - _) joa (n@ dZoU'a - j (ü j + j dZ + j (j + _) jere (C dZEr@ + _) jes (ui dZEz + _) joa (n@ dZoU'a + j (ü j .group k - k k - k (k - _) kn n - kn (if n - kn (iv n - kn (it n - kn (ob n - kn (ow n - - kha kA: - khar kA@ - _) ki (lC@ kI2 - _) ki (ll@ kI - kuan kwan - ku (ch ku: - kuwait ku:w'eIt + k k + k (k + _) kn n + kn (if n + kn (iv n + kn (it n + kn (ob n + kn (ow n + + kha kA: + khar kA@ + _) ki (lC@ kI2 + _) ki (ll@ kI + kuan kwan + ku (ch ku: + kuwait ku:w'eIt .group l - l l - l (l - l (_ l - A') ll l - A) ll l - A) l (ly_ l - y) ll l - A) ll (A l - l (C l - ll (C l - _) llan L%an - l (E l - lle (_ l - @@o) lled (_$3v d - @@) lled (_$3v d - B) l (_ @L - w) l (_ l - r) l (_ l - Al) l (_ - &) la (nd_ la2 - over) la (nd la - &) lim (ent lIm - &t) ling (_ _lI2N - &B) ling (_ lI2N - linux lInVks - listen lIs@n - lu (na lu: - @) ly (_$2if lI2 - @l) ly (_$2f I2 - f) ly (_ laI - ief) ly (_$2f lI2 - ff) ly (_$2f lI2 - of) ly (_$2f lI2 - multip) ly laI - &p) ly (_$2f lI2 - p) ly (_ laI - _) ly (d lI + l l + l (l + l (_ l + A') ll l + A) ll l + A) l (ly_ l + y) ll l + A) ll (A l + l (C l + ll (C l + _) llan L%an + l (E l + lle (_ l + @@o) lled (_$3v d + @@) lled (_$3v d + B) l (_ @L + w) l (_ l + r) l (_ l + Al) l (_ + &) la (nd_ la2 + over) la (nd la + &) lim (ent lIm + &t) ling (_ _lI2N + &B) ling (_ lI2N + linux lInVks + listen lIs@n + @) lo (gous =l@ + lu (na lu: + @) ly (_$2if lI2 + @l) ly (_$2f I2 + f) ly (_ laI + ief) ly (_$2f lI2 + ff) ly (_$2f lI2 + of) ly (_$2f lI2 + multip) ly laI + &p) ly (_$2f lI2 + p) ly (_ laI + _) ly (d lI .group le - &) le (_ l - &C) le (_ @L - &r) le (_ l - legged lEgId - Ab) le @L - C) le (ton_ @L - Ab) ler (_ l@ - Ab) le (C_ l@ - Ab) led (_ @Ld - &) lem (ent @Lm - &p) lem (ent lIm - %C) le (B@ @L - %C) le (Bia l'i: - @b) le (C@ @L - @b) ler (C@ l3 - @d) le (B@ @L - @t) le (B@ @L - tt) le (@ @-l - &C) le (ss l@ - @) less (_$4i l@s - @) lessly (_$6i l@slI2 - @) lessness (_$8i l@sn@s + &) le (_ l + &C) le (_ @L + &r) le (_ l + legged lEgId + Ab) le @L + C) le (ton_ @L + Ab) ler (_ l@ + Ab) le (C_ l@ + Ab) led (_ @Ld + &) lem (ent @Lm + &p) lem (ent lIm + %C) le (B@ @L + %C) le (Bia l'i: + @b) le (C@ @L + @b) ler (C@ l3 + @d) le (B@ @L + @t) le (B@ @L + tt) le (@ @-l + &C) le (ss l@ + @) less (_$4i l@s + @) lessly (_$6i l@slI2 + @) lessness (_$8i l@sn@s .group m - m m - mm m - h) m (_ @m - B) m (_ @m - l) m (_ m - _) mac (adP3 m@k - _) mac (bP3 m@k - _) mac (dP3 m@k - _) mac (lP3 m@k - _) mac (mP3 m@k - _) mal (fP3 m,al - _) mal (i m@l - _) mal (ev m@l - _) mal (nP3 m,al - _) mal (pP3 m,al - _) mal (trP3 m,al - _) ma (m ma - mayor me@ - mb (_ m - mbly mblI2 - li) mb (e m - o) mb (e m - du) mb (e m - _) m (c m@ - mn (_ m - _) mn n - &B) me (_ mI2 - @) men (_ mEn - &) ment (_$4 m@nt - &) ments (_$5 m@nt|s - mEnt (_ m@nt - tor) me (nt m'E - C) mented m'EntId - mEntary (_ m'Ent@rI2 - _) meta mEt@ - metabo mEt'ab0 - _) meta (llu m%Eta - millen mI2lEn - _) mobile moUbaIl - im) mobile moUbaIl - mobile m@bi:l - mono (ga m@n'0 - mo (noto m@ - _) mono m0noU - mon (opol m@n - mon (ox m0n - @) most(_$4 moUst - &) mouth (_ m@T - _) multi mVltI + m m + mm m + h) m (_ @m + B) m (_ @m + l) m (_ m + _) mac (adP3 m@k + _) mac (bP3 m@k + _) mac (dP3 m@k + _) mac (lP3 m@k + _) mac (mP3 m@k + _) mal (fP3 m,al + _) mal (i m@l + _) mal (ev m@l + _) mal (nP3 m,al + _) mal (pP3 m,al + _) mal (trP3 m,al + _) ma (m ma + mayor me@ + mb (_ m + mbly mblI2 + li) mb (e m + o) mb (e m + du) mb (e m + _) m (c m@ + mn (_ m + _) mn n + &B) me (_ mI2 + @) men (_ mEn + &) ment (_$4 m@nt + &) ments (_$5 m@nt|s + mEnt (_ m@nt + tor) me (nt m'E + C) mented m'EntId + mEntary (_ m'Ent@rI2 + _) meta mEt@ + metabo mEt'ab0 + _) meta (llu m%Eta + _) mobile moUbaIl + im) mobile moUbaIl + mobile m@bi:l + mono (ga m@n'0 + mo (noto m@ + _) mono m0noU + mon (opol m@n + mon (ox m0n + @) most(_$4 moUst + &) mouth (_ m@T + _) multi mVltI .group mi - _) milli (C mIlI - _) mis (@P3 mI2s // prefix - mis (chie mIs - mis (ci mIs - mis (dem mIs - mis (er maIz - miserab mIz@r@b - mis (fi mIs - mis (hap mIs - _) mis (in m,Is - mish (ma mIS - miss mIs - mi (ssi mI - _) mis (ti mIs - _) mis (tim m%Is - _) mis (tit m%Is - mis (ty mIs - mistle mIs@L - mis (tral mIs - mis (tres mIs - mi (sta mI2 - micr (o maIkr - micro (CC@ maIkr@ - micro (CA@ maIkroU - _) mi (nAr maI - mi (nera mI + millen mI2lEn + _) milli (C mIlI + _) mis (@P3 mI2s // prefix + mis (chie mIs + mis (ci mIs + mis (dem mIs + mis (er maIz + miserab mIz@r@b + mis (fi mIs + mis (hap mIs + _) mis (in m,Is + mish (ma mIS + miss mIs + mi (ssi mI + _) mis (ti mIs + _) mis (tim m%Is + _) mis (tit m%Is + mis (ty mIs + mistle mIs@L + mis (tral mIs + mis (tres mIs + mi (sta mI2 + micr (o maIkr + micro (CC@ maIkr@ + micro (CA@ maIkroU + _) mi (nAr maI + _) mi (nera mI .group n - n n - n) n - &ia) n (_$1 n - &ia) ns (_$2 nz - @) name (_ neIm - _) nano (P4 n,anoU - necessit n@sEsIt - &) ness (_$4i n@s - @) n (cC N - @) n (ch n - n (c_ N - 2_) nd (_ - &B) ne (_ nI2 - &n) ne (_ - _) neo ni:oU - _) news (P4 n'ju:z - ng N - n (x N - nging (_ NI2N - nk Nk -?7 nk nk // ?? Scottish - n (kn n - n't nt - E) n (_ @n - B) n (_ @n - g) n (ing+ n - n) n (_ - g) n (_ n - l) n (_ n - ninth naInT - n (Co_ =n - _) non (@P3 n,0n + n n + n) n + &ia) n (_$1 n + &ia) ns (_$2 nz + @) name (_ neIm + _) nano (P4 n,anoU + necessit n@sEsIt + &) ness (_$4i n@s + @) n (cC N + @) n (ch n + n (c_ N + 2_) nd (_ + &B) ne (_ nI2 + &n) ne (_ + _) neo ni:oU + _) news (P4 n'ju:z + ng N + n (x N + nging (_ NI2N + nk Nk +?7 nk nk // ?? Scottish + n (kn n + n't nt + E) n (_ @n + B) n (_ @n + g) n (ing+ n + n) n (_ + g) n (_ n + l) n (_ n + ninth naInT + n (Co_ =n + _) non (@P3 n,0n .group ng - ng (l Ng - ng (r Ng - ng (A Ng - ng (iti ndZ - ng (e ndZ - nged ndZd - o) nged Nd - spo) nged ndZd - _a) ng (er Ng - ba) ng (er Ng - cla) ng (er Ng - ta) ngi ndZI - i) ng (er Ng - gi) ng (er ndZ - o) ng (er Ng - you) ng (er Ng - ng (est Ng - co) nge (st ndZE - ngue N + ng (l Ng + ng (r Ng + ng (A Ng + ng (ie_ ndZ + ng (iti ndZ + ng (e ndZ + nged ndZd + o) nged Nd + spo) nged ndZd + _a) ng (er Ng + ba) ng (er Ng + cla) ng (er Ng + ta) ngi ndZI + i) ng (er Ng + gi) ng (er ndZ + o) ng (er Ng + you) ng (er Ng + ng (est Ng + co) nge (st ndZE + ngue N .group o - o 0 - _) o'(P2 %oU // prefix - o (Be# oU - o (BenC oU - o (BeCo_ 0 - o (Bing oU - o (BiA 'oU - _) o (Bal oU - _C) o (Bal oU - _CC) o (Bal oU - o (_ oU - @@C) o (_ =oU - ig) o (_ oU - o (Ba_ 'oU - o (Beon 'oU - _C) o (Bus_ oU - _CC) o (Bus_ oU - @) o (Ci_ 'oU - o (Co_ 'oU - @) o (lo_ 0 - o (Cic_ '0 - o (Cical '0 - o (Cemic 0 - of (fen @ - oa (_ 'oU@ - oa oU - oar (_ o@ - oar o@ - o (atia oU - br) oa (d O: - o (ba oU - t) o (bacc @ - o (bed oU - _) o (bes %oU - o (bic_ 'oU - n) o (bil oU - n) o (bl oU - _m) o (bil oU - o (bje %0 - _) o (bl %0 - o (bliga 0 - o (bligato %0 - o (blo 0 - r) o (bot oU - _) o (bs %0 - _) obs (er %0bz - obso (l 0bs@ - o (bstin 0 - o (bt %0 - o (bu %0 - f) o (cA oU - ff) o (cA @ - _l) o (cA oU - l) o (cat %oU - o (cclu @ - tr) och oUk - _v) o (cA oU - &%C) ock (_ @k - l) o (com ,oU - o (cre_ 'oU - cr) o (cu oU - _h) o (cu oU - o (ccasi @ - d) o (cil oU - occur @k3: - occurr @k3: -?5 occur @kVR -?5 occurr @kVR - meth) o (d_ @ - peri) o (d_ @ - cust) o (d @ - cust) o (di 'oU - o (da_ oU - k) o (dA oU - d) o (dec %oU - m) o (del 0 - m) o (der 0 - m) o (dest 0 - odo (rA oUd@ - mm) o (dor @ - odor oUd3 - odour oUd3 - oe oU - o'er o@ - oea (_ i@ - oer oU@ - oe (soph I2 - sh) oe u: - f) oe (tA i: - p) oe (m oUI - p) oe (t oUI - p) oe (ti oUE - oe (ve ,oU'E - o (ffici @ - o (gan_ oU - &) o (gen_ @ - hom) o (gen '0 - ogeni (c oUdZ'EnI - r) o (ger 0 - l) o (gy @ - l) o (gies @ - r) ogue oUg - v) ogue oUg - @@) ogue 0g - @) oged 0gd - oh oU - o (hA oU - j) oh (n 0 - oi OI - oia OI@ - oi (c_ oUI2 - oi(na_ 'OI - o (ing oU - d) o (ing u: - c) o (inci %oU - oire wA@ - oir wA@ - @) ois (_ wA: - o (ism oU - @) o (ist oU - oix (_ wa - o (ky_ oU - &c) on (_ @n - &) oped (_ @pd - _) o (per 0 - _) ope (n oUp@ - un) ope (n oUp@ - @) opol '0p@L - opolitan @p'0lIt@n - oppor (t 0p3 - opp (res @p - pr) o (pe 0 - appr) o (p oU - bish) o (p @ - &) o (p_ @ - sh) o (p_ 0 - fl) o (p_ 0 - p) o (p_ 0 - r) o (p_ 0 - t) o (p_ 0 - &) ophe (_ =@fI2 - s) o (phistic @ - &) o (pher =@ - o (pini @ - o (se_ oU - gg) ot (_ @t - rr) ot (_ @t - n) o (ta oU - n) o (tor oU - r) o (ta oU - t) o (ta oU - piv) o (t @ - o (tat oU - _C) o (ti oU - m) o (tiv oU - c) o (tan oU - p) o (tenti @ - n) otic (A oUtI2s - o (tion oU - o (ther V - b) o (th oU - b) o (ther 0 - cl) othe oUD - tr) othe oUD - l) oth (ian oUD - _r) o (ther 0 - ph) oto oUtoU - ph) o (ton oU - ph) otocop oUt@k0p - ph) oto (grapher @t0 - ph) oto (graphy @t0 - pr) oto oUtoU - pr) oto (n oUt0 - m) otor oUt@ - otro (py '0tr@ - m) o (x @ - o (x++ 0 - ox (ide '0ks - oxy 0ksI - oy OI - d) o (zen V - _) o (zo oU - o (zy_ oU + o 0 + _) o'(P2 %oU // prefix + o (Be# oU + o (BenC oU + o (BeCo_ 0 + o (Bing oU + o (BiA 'oU + _) o (Bal oU + XC) o (Bal oU + o (_ oU + @@C) o (_ =oU + ig) o (_ oU + o (Ba_ 'oU + o (Beon 'oU + XC) o (Bus_ oU + @) o (Ci_ 'oU + o (Co_ 'oU + @) o (lo_ 0 + o (Cic_ '0 + o (Cical '0 + o (Cemic 0 + of (fen @ + oa (_ 'oU@ + oa oU + oar (_ o@ + oar o@ + o (atia oU + br) oa (d O: + o (ba oU + t) o (bacc @ + o (bed oU + _) o (bes %oU + o (bic_ 'oU + n) o (bil oU + n) o (bl oU + _m) o (bil oU + o (bje %0 + _) o (bl %0 + o (bliga 0 + o (bligato %0 + o (blo 0 + r) o (bot oU + _) o (bs %0 + _) obs (er %0bz + obso (l 0bs@ + o (bstin 0 + o (bt %0 + o (bu %0 + f) o (cA oU + ff) o (cA @ + _l) o (cA oU + l) o (cat %oU + o (cclu @ + tr) och oUk + _v) o (cA oU + &%C) ock (_ @k + l) o (com ,oU + o (cre_ 'oU + cr) o (cu oU + _h) o (cu oU + o (ccasi @ + d) o (cil oU + occur @k3: + occurr @k3: +?5 occur @kVR +?5 occurr @kVR + meth) o (d_ @ + peri) o (d_ @ + cust) o (d @ + cust) o (di 'oU + o (da_ oU + k) o (dA oU + d) o (dec %oU + m) o (del 0 + m) o (der 0 + m) o (dest 0 + odo (rA oUd@ + mm) o (dor @ + odor oUd3 + odour oUd3 + oe oU + o'er o@ + oea (_ i@ + oer oU@ + oe (soph I2 + sh) oe u: + f) oe (tA i: + p) oe (m oUI + p) oe (t oUI + p) oe (ti oUE + oe (ve ,oU'E + o (ffici @ + o (gan_ oU + &) o (gen_ @ + hom) o (gen '0 + ogeni (c oUdZ'EnI + r) o (ger 0 + l) o (gy @ + l) o (gies @ + r) ogue oUg + v) ogue oUg + @@) ogue 0g + @) oged 0gd + oh oU + o (hA oU + j) oh (n 0 + oi OI + oia OI@ + oi (c_ oUI2 + oi(na_ 'OI + o (ing oU + d) o (ing u: + c) o (inci %oU + oire wA@ + oir wA@ + @) ois (_ wA: + o (ism oU + @) o (ist oU + oix (_ wa + o (ky_ oU + &c) on (_ @n + &) oped (_ @pd + _) o (per 0 + _) ope (n oUp@ + un) ope (n oUp@ + @) opol '0p@L + opolitan @p'0lIt@n + oppor (t 0p3 + opp (res @p + pr) o (pe 0 + appr) o (p oU + bish) o (p @ + &) o (p_ @ + sh) o (p_ 0 + fl) o (p_ 0 + p) o (p_ 0 + r) o (p_ 0 + t) o (p_ 0 + &) ophe (_ =@fI2 + s) o (phistic @ + &) o (pher =@ + o (pini @ + o (se_ oU + gg) ot (_ @t + rr) ot (_ @t + n) o (ta oU + n) o (tor oU + r) o (ta oU + t) o (ta oU + piv) o (t @ + o (tat oU + _C) o (ti oU + m) o (tiv oU + c) o (tan oU + p) o (tenti @ + n) otic (A oUtI2s + o (tion oU + o (ther V + b) o (th oU + b) o (ther 0 + cl) othe oUD + tr) othe oUD + l) oth (ian oUD + _r) o (ther 0 + ph) oto oUtoU + ph) o (ton oU + ph) otocop oUt@k0p + ph) oto (grapher @t0 + ph) oto (graphy @t0 + pr) oto oUtoU + pr) oto (n oUt0 + m) otor oUt@ + otro (py '0tr@ + m) o (x @ + o (x++ 0 + ox (ide '0ks + oxy 0ksI + oy OI + d) o (zen V + _) o (zo oU + o (zy_ oU .group ol - &st) ol (_ @L - ol (ar oUl - @@) ol (ar 'oUl - h) ol (ar 0l - m) ole (st @lE - b) ol (t oUl - c) ol (our Vl - @@) ol (us 'oUl - patr) ol oUl - contr) ol oUl - ext) ol oUl - _id) ol @L - _id) ol (a 0l - petr) ol (_ @L - s) ol (em 0l - s) ol (ic @l - s) ol (il @l - t) ol (er 0l - m) ol (ec @l - m) ol (ecule 0l - old oUld - w) olf Ulf - p) olice @li:s - &p) olis =@lIs - p) ol (ite @l - s) ol (idi @l - f) ol (k oU - y) ol (k oU - p) oll (u @l - r) oll oUl - car) oll @l - br) oll 0l - t) oll oUl - at) oll 0l - w) oll oUl - olm (_ oUm - olo (gy '0l@ - olo (gi '0l@ - olo (gic @l'0 - v) olt oUlt - w) olv Ulv - _p) oly ,0lI + &st) ol (_ @L + ol (ar oUl + @@) ol (ar 'oUl + h) ol (ar 0l + m) ole (st @lE + b) ol (t oUl + c) ol (our Vl + @@) ol (us 'oUl + patr) ol oUl + contr) ol oUl + ext) ol oUl + _id) ol @L + _id) ol (a 0l + petr) ol (_ @L + s) ol (em 0l + s) ol (ic @l + s) ol (il @l + t) ol (er 0l + m) ol (ec @l + m) ol (ecule 0l + old oUld + w) olf Ulf + p) olice @li:s + &p) olis =@lIs + p) ol (ite @l + s) ol (idi @l + f) ol (k oU + y) ol (k oU + p) oll (u @l + r) oll oUl + car) oll @l + br) oll 0l + t) oll oUl + at) oll 0l + w) oll oUl + olm (_ oUm + olo (gy '0l@ + olo (gi '0l@ + olo (gic @l'0 + v) olt oUlt + w) olv Ulv + _p) oly ,0lI .group om - &) om (_ @m - c) om (_ 0m - c) om (pan Vm - r) om (_ 0m - n) om (ad oUm - t) oma (to @mA: - c) omb (_ oUm - t) om (b u:m - w) omb (_ u:m - c) ombe (_ u:m - c) om (e Vm - c) omm (e Vm - _d) om (a @m - d) om (est @m - d) om (ini @m - @@in) ome (_ 'oUmeI - ome (ter '0mI - @) ome (tre '0mI - @) ome (try '0m@ - gl) om (er 0m - _p) om (e 0m - _s) ome Vm - s) om (e_ Vm - st) omach Vm@k - r) om (an oUm - r) oman (ti oUm'an - chr) om oUm - w) oma (n Um@ - w) ome (n ImI - _) om (iC %oUm - omin (o '0mIn - &) om (ise_ =@m - &) om (ize_ =@m - @) om (ist_ =@m - &) omy (_ =@mI2 + &) om (_ @m + c) om (